forked from vikas0633/perl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatch_bl2seq.pl
695 lines (515 loc) · 18.8 KB
/
batch_bl2seq.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
#!/usr/bin/perl -w
#-----------------------------------------------------------+
# |
# batch_bl2seq.pl - Batch bl2seq to compare assemblies |
# |
#-----------------------------------------------------------+
# |
# AUTHOR: James C. Estill |
# CONTACT: JamesEstill_@_gmail.com |
# STARTED: 10/04/2008 |
# UPDATED: 10/06/2008 |
# |
# DESCRIPTION: |
# Given a directory of fasta files, do an bl2seq for all |
# unique pairs of sequences, report sequences above a |
# threshold value as well list the similarities for all |
# sequences in the input directory. This reports both |
# the tiled bitscore as well as the ratio of the bitscore |
# of the pair of sequences divided by smaller bitscore |
# of either sequence blasted against itself. |
# |
# USAGE: |
# batch_bl2seq.pl -i indir -o summary_file.txt |
# |
# VERSION: $Rev: 948 $ |
# |
# |
# LICENSE: |
# GNU General Public License, Version 3 |
# http://www.gnu.org/licenses/gpl.html |
# |
#-----------------------------------------------------------+
# Notes:
# - the index for the matrix holding the results of the of
# pairwise blast starts at 1. This leaves the [i,0] and
# [0,j] to serve as labels.
# - This currently does the blast for softmasked sequences
# by default.
package DAWGPAWS;
#-----------------------------+
# INCLUDES |
#-----------------------------+
use strict;
use Getopt::Long;
# The following needed for printing help
use Pod::Select; # Print subsections of POD documentation
use Pod::Text; # Print POD doc as formatted text file
use IO::Scalar; # For print_help subfunction
use IO::Pipe; # Pipe for STDIN, STDOUT for POD docs
use File::Spec; # Convert a relative path to an abosolute path
#use Bio::Tools;
use Bio::SearchIO;
#-----------------------------+
# PROGRAM VARIABLES |
#-----------------------------+
my ($VERSION) = q$Rev: 948 $ =~ /(\d+)/;
# VARS WITH GLOBAL SCOPE
my $indir; # Dir holding the fasta files to blast
my $outfile; # File path to the report file
my @bitscore_matrix; # Two dim array to hold bitscore values
my @ratio_matrix; # Two dim array to hold normalize values
# BOOLEANS
my $quiet = 0;
my $verbose = 0;
my $show_help = 0;
my $show_usage = 0;
my $show_man = 0;
my $show_version = 0;
my $do_test = 0; # Run the program in test mode
my $do_clean = 0; # Remove the bln output files
# VARS WITH DEFAULT VALS
my $thresh_val = 0.8; # The threshold ratio value to report
#-----------------------------+
# COMMAND LINE OPTIONS |
#-----------------------------+
my $ok = GetOptions(# REQUIRED OPTIONS
"i|indir=s" => \$indir,
# ADDITIONAL OPTIONS
"o|outfile=s" => \$outfile,
"q|quiet" => \$quiet,
"verbose" => \$verbose,
"clean" => \$do_clean,
"thresh=s" => \$thresh_val,
# ADDITIONAL INFORMATION
"usage" => \$show_usage,
"test" => \$do_test,
"version" => \$show_version,
"man" => \$show_man,
"h|help" => \$show_help,);
#-----------------------------+
# SHOW REQUESTED HELP |
#-----------------------------+
if ( ($show_usage) ) {
# print_help ("usage", File::Spec->rel2abs($0) );
print_help ("usage", $0 );
}
if ( ($show_help) || (!$ok) ) {
# print_help ("help", File::Spec->rel2abs($0) );
print_help ("help", $0 );
}
if ($show_man) {
# User perldoc to generate the man documentation.
system ("perldoc $0");
exit($ok ? 0 : 2);
}
if ($show_version) {
print "\nbatch_mask.pl:\n".
"Version: $VERSION\n\n";
exit;
}
#-----------------------------+
# CHECK REQUIRED ARGS |
#-----------------------------+
# Output file is not required, will print to STDERR if not specified
if ( (!$indir) ) {
print "\a";
print STDERR "\n";
print STDERR "ERROR: An input directory was not specified at the".
" command line\n" if (!$indir);
# print STDERR "ERROR: An output file bust be specified at the".
# " command line\n" if (!$outfile);
print_help ("usage", $0 );
}
#-----------------------------+
# CHECK FOR SLASH IN DIR |
# VARIABLES |
#-----------------------------+
unless ($indir =~ /\/$/ ) {
$indir = $indir."/";
}
# Print to outfile if one specified, otherwise to STDOUT
# This is a report output file
if ($outfile) {
open (REPOUT, ">$outfile");
}
else {
open (REPOUT, ">&STDOUT");
}
#-----------------------------+
# Get the FASTA files from the|
# directory provided by the |
# var $indir |
#-----------------------------+
opendir( DIR, $indir ) ||
die "Can't open directory:\n$indir";
my @fasta_files = grep /\.fasta$|\.fa$/, readdir DIR ;
closedir( DIR );
my $count_files = @fasta_files;
#-----------------------------+
# SHOW ERROR IF NO FILES |
# WERE FOUND IN THE INPUT DIR |
#-----------------------------+
if ($count_files == 0) {
print STDERR "\a";
print STDERR "\nERROR: No fasta files were found in the input directory\n".
"$indir\n".
"Fasta files must have the fasta or fa extension.\n\n";
exit;
}
print STDERR "NUMBER OF FILES TO PROCESS: $count_files\n" if $verbose;
my $num_square = $count_files * $count_files;
#my $total_proc = ($num_square - $count_files)/2;
my $total_proc = (($num_square - $count_files)/2) + $count_files;
print STDERR "TOTAL BL2SEQ: $total_proc\n" if $verbose;
#-----------------------------------------------------------+
# MAIN PROGRAM BODY |
#-----------------------------------------------------------+
# Does all by all bl2seq for j<j
# Therefore this does not do the self blast or the reciprocals
#-----------------------------+
# RUN THE BLAST 2 SEQ |
#-----------------------------+
# I will include self hits to put i/j in perspective
my $i_num = 0;
my $proc_num;
# Get all i less then j
# fill the matrix of bitscore with the diagonals
for my $file_i (@fasta_files) {
$i_num++;
my $j_num = 0;
for my $file_j (@fasta_files) {
$j_num++;
if ($i_num <= $j_num) {
$proc_num++;
my $bln_outfile = $file_i."_".$file_j.".bln";
# The following command includes lowercase filtering
my $bl_cmd = "bl2seq -p blastn -U".
" -i ".$indir.$file_i.
" -j ".$indir.$file_j.
" -o $bln_outfile";
print STDERR "Proc $proc_num of $total_proc -- $i_num : $j_num\n"
if $verbose;
# # Only print the following for dbug of blast cmd line
# #print STDERR "\t$bl_cmd\n" if $verbose;
# Run the BLAST
# with Bio:SearchIO
system ($bl_cmd);
# Parse the results of the bl2seqoutput
if (-e $bln_outfile) {
my $score_val = &blseq2score ($bln_outfile,
$file_i,
$file_j,
$outfile, 1 );
# Print the output to STDERR
print STDERR "$file_i\t$file_j\t$score_val\n" if $verbose;
# Load the result to the score matrix
# Use zero if theree is not a score value
if ($score_val =~ "NULL" ) {
$bitscore_matrix[$i_num][$j_num] = 0;
}
else {
$bitscore_matrix[$i_num][$j_num] = int($score_val);
}
# TEMP REMOVE THE DO CLEAN OPTIONS, seq_id not currently defined
# Remove the blast output file
# if ($do_clean) {
# unlink $bln_outfile;
# } $out_file_path = $outdir.$seq_id.".fasta";
} # End of process the bl2seq output
}
}
}
#-----------------------------+
# LOAD NORMAILZED BITSCORE |
# RATIO TO THE RAIO MATRIX |
#-----------------------------+
# Determine a normailized bitscore ratio
# using the max (self_i self_j) as the denominator
# with i compared to j as the numerator
#
# This will also take the time to print the values
# above the threshold value
print REPOUT "#-----------------------------------------------------------\n";
print REPOUT " VALS ABOVE THRESHOLD\n";
print REPOUT "#-----------------------------------------------------------\n";
my $i = 0;
my $thresh_count = 0;
for my $file_i (@fasta_files) {
$i++;
my $j = 0;
for my $file_j (@fasta_files) {
$j++;
if ($i < $j) {
my $i_self = $bitscore_matrix[$i][$i];
my $j_self = $bitscore_matrix[$j][$j];
if ( $i_self > $j_self ) {
$ratio_matrix[$i][$j] = $bitscore_matrix[$i][$j]/$i_self;
}
else {
$ratio_matrix[$i][$j] = $bitscore_matrix[$i][$j]/$j_self;
}
# REPORT VALUES ABOVE THRESHOLD
if ($ratio_matrix[$i][$j] > $thresh_val) {
$thresh_count++;
print REPOUT "$file_i\t$file_j\t".
$ratio_matrix[$i][$j]."\t".
$bitscore_matrix[$i][$j]."\n";
}
} # End of if i < j
} # End of for file_j
} # End of for file_i
# Print spacer after values above threshold
if ($thresh_count == 0) {
print REPOUT "No values are above the threshold value of $thresh_val\n";
print REPOUT "\n";
}
else {
print REPOUT "$thresh_count values are above the threshold value of ".
"$thresh_val";
print REPOUT "\n";
}
#-----------------------------+
# PRINT RATIO MATRIX TO THE |
# REPORT OUTPUT FILE |
#-----------------------------+
# This is as a three column output file
print REPOUT "#-----------------------------------------------------------\n";
print REPOUT "# FULL RATIO DATA MATRIX\n";
print REPOUT "#-----------------------------------------------------------\n";
$i = 0;
for my $file_i (@fasta_files) {
$i++;
my $j = 0;
for my $file_j (@fasta_files) {
$j++;
if ($i < $j) {
my $round_val = sprintf( "%.4f", $ratio_matrix[$i][$j] );
print REPOUT "$file_i\t$file_j\t$round_val\t".
$bitscore_matrix[$i][$j]."\n";
} # End of if i < j
} # End of for file_j
} # End of for file_i
#-----------------------------+
# CLOSE OUT PROGRAM |
#-----------------------------+
# Close the file handle
close REPOUT;
exit 0;
#-----------------------------------------------------------+
# SUBFUNCTIONS |
#-----------------------------------------------------------+
sub print_help {
my ($help_msg, $podfile) = @_;
# help_msg is the type of help msg to use (ie. help vs. usage)
print "\n";
#-----------------------------+
# PIPE WITHIN PERL |
#-----------------------------+
# This code made possible by:
# http://www.perlmonks.org/index.pl?node_id=76409
# Tie info developed on:
# http://www.perlmonks.org/index.pl?node=perltie
#
#my $podfile = $0;
my $scalar = '';
tie *STDOUT, 'IO::Scalar', \$scalar;
if ($help_msg =~ "usage") {
podselect({-sections => ["SYNOPSIS|MORE"]}, $0);
}
else {
podselect({-sections => ["SYNOPSIS|ARGUMENTS|OPTIONS|MORE"]}, $0);
}
untie *STDOUT;
# now $scalar contains the pod from $podfile you can see this below
#print $scalar;
my $pipe = IO::Pipe->new()
or die "failed to create pipe: $!";
my ($pid,$fd);
if ( $pid = fork() ) { #parent
open(TMPSTDIN, "<&STDIN")
or die "failed to dup stdin to tmp: $!";
$pipe->reader();
$fd = $pipe->fileno;
open(STDIN, "<&=$fd")
or die "failed to dup \$fd to STDIN: $!";
my $pod_txt = Pod::Text->new (sentence => 0, width => 78);
$pod_txt->parse_from_filehandle;
# END AT WORK HERE
open(STDIN, "<&TMPSTDIN")
or die "failed to restore dup'ed stdin: $!";
}
else { #child
$pipe->writer();
$pipe->print($scalar);
$pipe->close();
exit 0;
}
$pipe->close();
close TMPSTDIN;
print "\n";
exit 0;
}
sub blseq2score {
#-----------------------------+
# The purpose of this is to |
# return the tiled bitscore |
# for the bl2seq result |
#-----------------------------+
# blastin - path to the blast input file
# seq_1 - First sequence in the comparision
# seq_2 - Second sequence in the comparision
# tabout - path to the gff output file
# append - boolean append data to existing tab text filetab out
my ($blastin, $seq_1, $seq_2, $tabout, $append ) = @_;
my $bitscore;
my $blast_report = new Bio::SearchIO ( '-format' => 'blast',
'-file' => $blastin)
|| die "Could not open BLAST input file:\n$blastin.\n";
while (my $blast_result = $blast_report->next_result()) {
while (my $blast_hit = $blast_result->next_hit()) {
$bitscore = $blast_hit->bits;
}
}
return $bitscore || "0";
}
1;
__END__
=head1 NAME
batch_bl2seq.pl - Batch bl2seq to compare assemblies
=head1 VERSION
This documentation refers to program version $Rev: 948 $
=head1 SYNOPSIS
USAGE:
batch_bl2seq.pl -i InDir -o outfile
--indir # Dir containing the fasta files
--outfile # Output reoport file file
=head1 DESCRIPTION
The purpose of this script is to try to find clones that are
replicates of one another.
Given a directory of fasta files, do an bl2seq for all
unique pairs of sequences, report sequences above a
threshold value as well list the similarities for all
sequences in the input directory. This reports both
the tiled bitscore as well as the ratio of the bitscore
of the pair of sequences divided by smaller bitscore
of either sequence blasted against itself. If an output
file is not specified at the command line, the output will
be printed to STDOUT.
=head1 REQUIRED ARGUMENTS
=over 2
=item -i,--indir
Path of the directory containing the sequences to process.
It is expected that these will be single fasta files that
represent ordered contig assemblies.
=back
=head1 OPTIONS
=over 2
=item -o,--outfile
The report file that is generated. The first section of this
file reports the sequence pairs that are above the threshold value, the
remainder of this report will be all the remainder sequence pairs.
=item --thresh
This is the threshold ratio value to report at the header of the
output file. This should be a value between zero and one. The default
value is 0.80. Thus with the default value, all sequences which have
a bitscore ratio above 80% of the shorter of the two squences will be
reported.
=item --clean
Specifying clean at the command line will remove the bl2seq reports from
the working directory. By default the bl2seq output files will be left
in the directory.
=item --usage
Short overview of how to use program from command line.
=item --help
Show program usage with summary of options.
=item --version
Show program version.
=item --man
Show the full program manual. This uses the perldoc command to print the
POD documentation for the program.
=item --verbose
Run the program with maximum output.
=item -q,--quiet
Run the program with minimal output.
=item --test
Run the program without doing the system commands. This will
test for the existence of input files.
=back
=head1 DIAGNOSTICS
Error messages generated by this program and possible solutions are listed
below.
=over 2
=item ERROR: No fasta files were found in the input directory
The input directory does not contain fasta files in the expected format.
This could happen because you gave an incorrect path or because your sequence
files do not have the expected *.fasta extension in the file name.
=back
=head1 CONFIGURATION AND ENVIRONMENT
=head2 Configuration File
This program does not make use of a configuration file. All options
are specified at the command line.
=head2 Environment
This program does not make use of variables in the user environment.
=head1 DEPENDENCIES
=head2 Required Software
=over
=item * bl2seq
The bl2seq command line program is part of the NCBI stand alone blast package.
If you typle bl2seq at the command line, you should see the options for running
the bl2seq program.
The executables for stand alone blast are available at
ftp://ftp.ncbi.nih.gov/blast/executables/LATEST
=back
=head2 Required Perl Modules
=over BioPerl
This program relies on the BioPerl package of programs. Information on
downloading and installing bioperl is available at
http://www.bioperl.org/wiki/Getting_BioPerl.
=over
=item * Getopt::Long
This module is required to accept options at the command line.
=back
=head1 BUGS AND LIMITATIONS
Any known bugs and limitations will be listed here.
=head2 Bugs
=over 2
=item * No bugs currently known
If you find a bug with this software, file a bug report on the DAWG-PAWS
Sourceforge website: http://sourceforge.net/tracker/?group_id=204962
=back
=head2 Limitations
=over
=item * Not tested on OS other then Linux.
Although this program should run on either Windows or Mac OSX, it has only
been tested on the linux OS.
=back
=head1 SEE ALSO
The program is part of the DAWG-PAWS package of genome
annotation programs. See the DAWG-PAWS web page
( http://dawgpaws.sourceforge.net/ )
or the Sourceforge project page
( http://sourceforge.net/projects/dawgpaws )
for additional information about this package.
=head1 LICENSE
GNU General Public License, Version 3
L<http://www.gnu.org/licenses/gpl.html>
THIS SOFTWARE COMES AS IS, WITHOUT ANY EXPRESS OR IMPLIED
WARRANTY. USE AT YOUR OWN RISK.
=head1 AUTHOR
James C. Estill E<lt>JamesEstill at gmail.comE<gt>
=head1 HISTORY
STARTED: 10/04/2008
UPDATED: 10/06/2008
VERSION: $Rev: 948 $
=cut
#-----------------------------------------------------------+
# HISTORY |
#-----------------------------------------------------------+
#
# 10/04/2008
# - Program started
# - Wrote blseq2score subfunction
#
# 10/06/2008
# - Added POD documentation