-
Notifications
You must be signed in to change notification settings - Fork 5
/
batch_blast.pl
1416 lines (1133 loc) · 40.1 KB
/
batch_blast.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
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/perl -w
#-----------------------------------------------------------+
# |
# batch_blast.pl - Run blast on a set of fasta files. |
# |
#-----------------------------------------------------------+
# |
# AUTHOR: James C. Estill |
# CONTACT: JamesEstill_at_gmail.com |
# STARTED: 07/23/2007 |
# UPDATED: 03/03/2010 |
# |
# DESCRIPTION: |
# Given a directory of softmasked fasta files, this will |
# BLAST the files against a standard set of BLAST |
# databases used for wheat genome annotation. |
# |
# LICENSE: |
# GNU General Public License, Version 3 |
# http://www.gnu.org/licenses/gpl.html |
# |
#-----------------------------------------------------------+
#
# TO DO: use of --feature at command line overrides the
# match_part feature type
package DAWGPAWS;
#-----------------------------+
# INCLUDES |
#-----------------------------+
use strict;
use File::Copy;
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::SearchIO; # Parse BLAST output
#-----------------------------+
# PROGRAM VARIABLES |
#-----------------------------+
my ($VERSION) = q$Rev: 948 $ =~ /(\d+)/;
# Get GFF version from environment, GFF2 is DEFAULT
my $gff_ver = uc($ENV{DP_GFF}) || "GFF2";
#-----------------------------+
# VARIABLE SCOPE |
#-----------------------------+
# BOOLEANS
my $show_help = 0; # Show program help
my $show_version = 0; # Show program version
my $show_man = 0; # Show program manual page using peldoc
my $show_usage = 0; # Show program usage command
my $quiet = 0; # Boolean for reduced output to STOUT
my $test = 0; # Run the program in test mode
my $verbose = 0; # Run the program in verbose mode
my $do_gff = 1; # Try to convert the blast results to gff
# PACKAGE LEVEL SCOPE
#Counters
my $i; # Number of blast files
my $count_db; # Number of databases to process
my $count_files; # Number of files to process
my $count_proc; # Number of processes
my $proc_num; # Number of the current process
my $file_num = 0; # Number of the current file
# Files
my $file_config; # Path to the Batch blast config file
my $file_to_blast; # Path to the file to BLAST, the qry file
my $file_blast_out; # Path to BLAST output file
my $logfile; # Path to a logfile to log error info
# Path to the NCBI blastall binary
my $blast_path = $ENV{DP_BLAST_BIN} || "blastall";
my $dir_blast_db = $ENV{DP_BLAST_DIR} || 0;
#my $blast_path = "blastall"; # Path to the NCBI blastall binary
# # by default will assume blastall works
# # without providing full path
# Directories
my $dir_gff_out; # Dir to hold the GFF output
my $dir_blast_out; # Dir to hold the BLAST output for qry file
my $indir; # Directory containing the seq files to process
my $outdir; # Directory to hold the output
my $bac_out_dir; # Dir for each sequnce being masked
my $msg; # Message printed to the log file
my $search_name; # Name searched for in grep command
my $name_root; # Root name to be used for output etc
# ARRAYS
my @dbs; # Information for databases
# 2d Array filled from the config file
# Options added 03/03/2010
my $feature_type = "exon";
# The following not currently used - 03/03/2010
# but available for future implementation
my $max_e;
my $min_len;
#-----------------------------+
# COMMAND LINE OPTIONS |
#-----------------------------+
my $ok = GetOptions(
# REQUIRED
"i|indir=s" => \$indir,
"o|outdir=s" => \$outdir,
"d|db-dir=s" => \$dir_blast_db,
"c|config=s" => \$file_config,
# OPTIONS
# "p|program=s" => \$blast_program,
# "d|database=s" => \$param,
"f|feature=s" => \$feature_type,
"gff-ver=s" => \$gff_ver,
"blast-path=s" => \$blast_path,
"logfile=s" => \$logfile,
# Booleans
"verbose" => \$verbose,
"test" => \$test,
"usage" => \$show_usage,
"version" => \$show_version,
"man" => \$show_man,
"h|help" => \$show_help,
"q|quiet" => \$quiet,);
my $bac_parent_dir = $outdir;
my ( $ind_lib , $RepMaskCmd, $MakeGffDbCmd, $MakeGffElCmd );
my ( @RepLibs );
#//////////////////////
my $proc_num_max = 5;
#\\\\\\\\\\\\\\\\\\\\\\
#-----------------------------+
# 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;
}
#-----------------------------+
# STANDARDIZE GFF VERSION |
#-----------------------------+
unless ($gff_ver =~ "GFF3" ||
$gff_ver =~ "GFF2") {
# Attempt to standardize GFF format names
if ($gff_ver =~ "3") {
$gff_ver = "GFF3";
}
elsif ($gff_ver =~ "2") {
$gff_ver = "GFF2";
}
else {
print "\a";
die "The gff-version \'$gff_ver\' is not recognized\n".
"The options GFF2 or GFF3 are supported\n";
}
}
#-----------------------------+
# CHECK REQUIRED ARGS |
#-----------------------------+
if ( (!$indir) || (!$outdir) || (!$file_config) || (!$dir_blast_db) ) {
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 directory was specified at the".
" command line\n" if (!$outdir);
print STDERR "ERROR: A configuration file was not specified at the".
" command line\n" if (!$file_config);
print STDERR "ERROR: The Blast DB directory must be specified".
" at the command line to by using the DP_BLAST_DIR variable".
" in the user environment." if (!$dir_blast_db);
print_help ("usage", $0 );
}
#-----------------------------+
# OPEN THE LOG FILE |
#-----------------------------+
if ($logfile) {
# Open file for appending
open ( LOG, ">>$logfile" ) ||
die "Can not open logfile:\n$logfile\n";
my $time_now = time;
print LOG "==================================\n";
print LOG " batch_blast.pl\n";
print LOG " JOB: $time_now\n";
print LOG "==================================\n";
}
#-----------------------------+
# CHECK FOR SLASH IN DIR |
# VARIABLES |
#-----------------------------+
# If the indir does not end in a slash then append one
# TO DO: Allow for backslash
unless ($indir =~ /\/$/ ) {
$indir = $indir."/";
}
unless ($outdir =~ /\/$/ ) {
$outdir = $outdir."/";
}
unless ($dir_blast_db =~ /\/$/ ) {
$dir_blast_db = $dir_blast_db."/";
}
#-----------------------------+
# 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 );
$count_files = @fasta_files;
#-----------------------------+
# SHOW ERROR IF NO FILES |
# WERE FOUND IN THE INPUT DIR |
#-----------------------------+
if ($count_files == 0) {
print "\a";
print "\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 "NUMBER OF FILES TO PROCESS: $count_files\n";
#-----------------------------+
# GET INFO FROM CONFIG FILE |
#-----------------------------+
# Load to the 2d dbs array
open (CONFIG, $file_config) ||
die "Can't open the config file:\n$file_config";
$i = 0;
my $line_num = 0;
while (<CONFIG>) {
$line_num ++;
unless (m/^\#/) {
chomp;
my @tmpary = split (/\t/);
my $count_tmp = @tmpary;
#print "COUNT: $count_tmp\n";
#print "$_\n";
#print "\t".$tmpary[0]."\n";
if ($count_tmp == 6) {
#-----------------------------+
# TEST THE ENTRY |
#-----------------------------+
#test_blast_db ($prog, $db, $line, $dbdir)
test_blast_db( $tmpary[0],
$tmpary[4],
$line_num,
$dir_blast_db );
$dbs[$i][0] = $tmpary[0]; # Blast Prog
$dbs[$i][1] = $tmpary[1]; # Outfile extension
$dbs[$i][2] = $tmpary[2]; # Alignment output
$dbs[$i][3] = $tmpary[3]; # E Value threshold
$dbs[$i][4] = $tmpary[4]; # DBNAME
$dbs[$i][5] = $tmpary[5]; # CMD SUFFIX
$i++;
} # End of if count_tmp = 6
else {
print "ERROR: Config file line number $line_num\n";
print " Only $line_num variables were found\n"
}
} # End of unless this is a comment line
} # End of while CONFIG
#-----------------------------+
# CHECK SANITY OF CONFIG FILE |
#-----------------------------+
# This will check for existence of blast database etc
print "Checking config file ...\n" unless $quiet;
for my $ind_db (@dbs) {
# print "PROG:".$ind_db->[0]."\n";
# print " EXT:".$ind_db->[1]."\n";
# print "ALIG:".$ind_db->[2]."\n";
# print "EVAL:".$ind_db->[3]."\n";
# print " DB:".$ind_db->[4]."\n";
# print "SUFF:".$ind_db->[5]."\n";
# print "\n\n";
}
$count_db = @dbs;
print "NUMBER OF DATABASES: $count_db\n";
$count_proc = $count_db * $count_files;
print "NUMBER OF PROCESSES: $count_proc\n";
#-----------------------------+
# CREATE THE OUT DIR |
# IF IT DOES NOT EXIST |
#-----------------------------+
unless (-e $outdir) {
print "Creating output dir ...\n" unless $quiet;
mkdir $outdir ||
die "ERROR: Could not create the output directory:\n$outdir";
}
#-----------------------------+
# RUN BLAST FOR EACH FILE |
#-----------------------------+
for my $ind_file (@fasta_files)
{
$file_num++;
#-----------------------------+
# Get the root name of the |
# file to mask |
#-----------------------------+
if ($ind_file =~ m/(.*)\.masked\.fasta$/) {
# file ends in .masked.fasta
$name_root = "$1";
}
elsif ($ind_file =~ m/(.*)\.fasta$/ ) {
# file ends in .fasta
$name_root = "$1";
}
elsif ($ind_file =~ m/(.*)\.fa$/ ) {
# file ends in .fa
$name_root = "$1";
}
else {
$name_root = $ind_file;
}
#-----------------------------+
# Create parent dir if it |
# does not already exist |
#-----------------------------+
my $dir_parent = $outdir.$name_root."/";
unless (-e $dir_parent) {
print "creating dir: $dir_parent\n";
mkdir $dir_parent ||
die "Could not creat the output dir:\n$dir_parent\n";
}
#-----------------------------+
# Create the dir to hold the |
# BLAST output |
#-----------------------------+
$dir_blast_out = $outdir.$name_root."/blast/";
unless (-e $dir_blast_out ) {
print STDERR "Creating output dir\n: $dir_blast_out\n"
if $verbose;
mkdir $dir_blast_out ||
die "Could not create the output directory:\n$dir_blast_out";
}
$file_to_blast = $indir.$ind_file;
#-----------------------------+
# CREATE THE DIR TO HOLD |
# THE GFF OUTPUT |
#-----------------------------+
if ($do_gff) {
$dir_gff_out = $outdir.$name_root."/gff/";
unless (-e $dir_gff_out) {
print STDERR "Creating output dir\n:$dir_gff_out"
if $verbose;
mkdir $dir_gff_out ||
die "Could not create the gff output directory:\n$dir_gff_out";
}
}
#-----------------------------+
# FOR EACH DB IN THE CONFIG |
# FILE |
#-----------------------------+
my $gff_count=0; # Count of the number of gff files
for my $ind_db (@dbs) {
$proc_num++;
# Temp exit for debug
#if ($proc_num > $proc_num_max) { exit; }
print "\n" unless $quiet;
print "+-----------------------------------------------------------+\n"
if $verbose;
print "| BLAST PROCESS: $proc_num of $count_proc \n" unless $quiet;
print "+-----------------------------------------------------------+\n"
if $verbose;
my $file_blast_out = $dir_blast_out.$name_root."_".$ind_db->[4]."."
.$ind_db->[1];
my $blast_cmd = "$blast_path".
" -p ".$ind_db->[0].
" -i ".$file_to_blast.
" -d ".$dir_blast_db.$ind_db->[4].
" -e ".$ind_db->[3].
" -o ".$file_blast_out.
" -m ".$ind_db->[2].
" ".$ind_db->[5];
# PRINT VERBOSE OUTPUT
if ($verbose) {
print "\tFILE: $name_root\n";
print "\t DB: ".$ind_db->[4]."\n";
print "\t CMD: $blast_cmd\n";
}
unless ($test) {
system ($blast_cmd);
}
# Convert the result to gff
my $gff_out_file = $dir_gff_out.$name_root."_blast.gff";
if ($do_gff) {
$gff_count++;
my $append_gff;
if ($gff_count == 1) {
$append_gff = 0;
}
else {
$append_gff = 1;
}
# CONVERT BLAST TO GFF
blast2gff ( $file_blast_out,
$gff_out_file,
$append_gff,
$name_root,
$ind_db->[2],
$feature_type);
}
} # End of for each ind_db
} # End of for each file in the input folder
close LOG if $logfile;
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 test_blast_db {
# Check for the existence of a BLAST database
# prog ----- blast program to use
# $db ------ blast database name
# $line ---- line number from the config file
# $dbdir --- path to the blast database directory
# $db_path - path to the expected blast database
my ($prog, $db, $line, $dbdir) = @_;
my $db_path;
#-----------------------------+
# Nucleotide BLAST |
#-----------------------------+
if ( ($prog =~ "blastn") || ($prog =~ "megblast") ||
($prog =~ "tblastx") || ($prog =~ "tblastn") ) {
$db_path = $dbdir.$db.".nin";
}
#-----------------------------+
# Protein BLAST |
#-----------------------------+
elsif ( ($prog =~ "blastx") || ($prog =~ "blastp") ||
($prog =~ "psi-blast") || ($prog =~ "phi-blast") ) {
# Protein BLAST
$db_path = $dbdir.$db.".pin";
}
#-----------------------------+
# Unrecognized BLAST |
#-----------------------------+
else {
print "\a";
print "ERROR: Config file line $line\n";
print "The blast program $prog is not recognized by batch_blast.pl\n";
exit;
}
#-----------------------------+
# CHECK FOR DB FILE EXISTNECE |
#-----------------------------+
unless (-e $db_path) {
print "\a";
print "ERROR: Config file line $line\n";
print "The database file for $db could not be found at:\n".
"$db_path\n";
} else {
print "The db file is okay at: $db_path\n" if $verbose;
}
}
sub blast2gff {
# CONVERT BLAST TO GFF
# seqname - ID to use in the seqname field
# blastin - path to the blast input file
# gffout - path to the gff output file
# append - boolean append data to existing file at gff out
# align - the alignment type of the blast output
# suffix - the suffix to add to type of blast
# prog - blast program (blastn, blastx, wublast etc)
# gff second column is built as progparam
# chaning option order to allow $feature to be easily passed
my ($blastin, $gffout, $append, $seqname, $align, $feature, $suffix,
$prog) = @_;
my $blastprog; # Name of the blast program used (blastn, blastx)
my $dbname; # Name of the database blasted
my $hitname; # Name of the hit
my $start; # Start of the feature
my $end; # End of the feature
my $strand; # Strand of the hit
# Recode from number for tab delimited blast
if ($align == 8 || $align ==9) {
$align = "tab";
}
#-----------------------------+
# BLAST INTPUT OBJECT |
#-----------------------------+
# This allows for input from NCBI-BLAST, and WUBLAST in either
# default or tab delimited output as well as
# INPUT FROM FILE PATH
my $blast_report;
if ($blastin) {
# TAB ALIGNED BLAST OUTPUT
if ($align =~ "tab" ) {
$blast_report = new Bio::SearchIO::blasttable (
'-format' => 'blasttable',
'-file' => $blastin )
|| die "Could not open BLAST input file:\n$blastin.\n";
}
else {
$blast_report = new Bio::SearchIO ( '-format' => 'blast',
'-file' => $blastin,
'-signif' => $max_e,
'-min_query_len' => $min_len)
|| die "Could not open BLAST input file:\n$blastin.\n";
} # Default to default blast alignment
}
# INPUT FROM STDIN
else {
if ($align =~ "tab") {
$blast_report = new Bio::SearchIO::blasttable (
'-format' => 'blasttable',
'-fh' => \*STDIN )
|| die "Could not open STDIN for blast table input\n";
}
else {
print STDERR "Expecting input from STDIN\n";
$blast_report = new Bio::SearchIO ( '-format' => 'blast',
'-fh' => \*STDIN,
'-signif' => $max_e,
'-min_query_len' => $min_len)
|| die "Could not open STDIN for blast input\n";
}
}
#-----------------------------+
# FILEHANDLE FOR OUTPUT |
#-----------------------------+
if ($gffout) {
if ($append) {
open (GFFOUT, ">>$gffout")
|| die "Can not open file:\n $gffout\n";
}
else {
open (GFFOUT, ">$gffout")
|| die "Can not open file:\n $gffout\n";
# only print the header if this is the first line of the file
if ($gff_ver =~ "GFF3") {
print GFFOUT "##gff-version 3\n";
}
}
}
else {
open (GFFOUT, ">&STDOUT") ||
die "Can not print to STDOUT\n";
if ($gff_ver =~ "GFF3") {
print GFFOUT "##gff-version 3\n";
}
}
while (my $blast_result = $blast_report->next_result())
{
# Not using the following for the moment
# 01/30/2009
$blastprog = $blast_result->algorithm;
#$dbname = $blast_result->database_name();
#-----------------------------+
# GET SEQNAME IF NOT PROVIDED |
#-----------------------------+
# First attempt to extract from blast report
# otherwise use 'seq' as the indentifier.
# For multiple query sequence, this will use
# the same identifier for all
unless ($seqname) {
if ($blast_result->query_name) {
$seqname = $blast_result->query_name();
}
else {
$seqname = "seq";
}
}
# Remove prohibited characters
if ($gff_ver =~ "GFF3") {
$seqname = seqid_encode($seqname);
}
#-----------------------------+
# GET ALGORITHM IF UNKNOWN |
#-----------------------------+
# This attempts to get the algorithm from the
# blast report, otherwise the generic 'blast' is used
unless ($prog) {
if ($blast_result->algorithm) {
$prog = $blast_result->algorithm;
}
else {
$prog = "blast";
}
}
# Sanitize program name
if ($gff_ver =~ "GFF3") {
$prog = gff3_encode($prog);
}
#-----------------------------+
# APPEND DB IDENTIFIER |
#-----------------------------+
# Providing a suffix at the command line will override
# the name provided in the blast report
my $source = $prog;
my $blast_db;
if ($suffix) {
if ($gff_ver =~ "GFF3") {
$suffix = gff3_encode($suffix);
}
$source = $source.":".$suffix;
}
elsif ($blast_result->database_name()) {
# Remove trailing white space from db name
$blast_db = $blast_result->database_name();
# Trim trailing white space
$blast_db =~ s/\s+$//;
if ($gff_ver =~ "GFF3") {
$blast_db = gff3_encode($blast_db);
}
$source = $source.":".$blast_db;
}
while (my $blast_hit = $blast_result->next_hit())
{
my $hitname = $blast_hit->name();
if ($gff_ver =~ "GFF3") {
$hitname = gff3_encode($hitname);
}
my $hsp_num = 0;
while (my $blast_hsp = $blast_hit->next_hsp())
{
$hsp_num++;
my $hsp_id = sprintf("%04d", $hsp_num);
#-----------------------------+
# GET STRAND |
#-----------------------------+
# NOTE: This defaults to positive strand!!
$strand = $blast_hsp->strand('query');
if ($strand =~ "-1") {
$strand = "-";
}
elsif ($strand =~ "1") {
$strand = "+";
}
else {
$strand = "+";
}
#-----------------------------+
# GET QRY START AND END |
#-----------------------------+
# Make certain that start coordinate is
# less then the end coordinate
if ( $blast_hsp->start() < $blast_hsp->end() ) {
$start = $blast_hsp->start();
$end = $blast_hsp->end();
}
else {
$start = $blast_hsp->end();
$end = $blast_hsp->start();
}
#-----------------------------+
# GET HIT START AND END |
#-----------------------------+
my $hit_start;
my $hit_end;
if ( $blast_hsp->start('hit') < $blast_hsp->end('hit') ) {
$hit_start = $blast_hsp->start('hit');
$hit_end = $blast_hsp->end('hit');
}
else {
$hit_start = $blast_hsp->end('hit');
$hit_end = $blast_hsp->start('hit');
}
#-----------------------------+
# Set attribute |
#-----------------------------+
my $attribute;
if ($gff_ver =~ "GFF3") {
$feature = "match_part";
$attribute = "ID=".$source."_".$hitname.
";".
"Name=".$hitname.";".
"Target=".$hitname." ".
$hit_start." ".$hit_end;
}
else {
$attribute = $hitname;
}
#-----------------------------+
# PRINT OUTPUT TO GFF FILE |
#-----------------------------+
print GFFOUT "$seqname\t". # Seqname
"$source\t". # Source
"$feature\t". # Feature type name
"$start\t". # Start
"$end\t". # End
$blast_hsp->score()."\t". # Score
"$strand\t". # Strand
".\t". # Frame
$attribute. # Attribute
"\n"; # newline
} # End of while next hsp
} # End of while next hit
} # End of while next result
close GFFOUT;
}
sub seqid_encode {
# Following conventions for GFF3 v given at http://gmod.org/wiki/GFF3
# Modified from code for urlencode in the perl cookbook
# Ids must not contain unescaped white space, so spaces are not allowed
my ($value) = @_;
$value =~ s/([^[a-zA-Z0-9.:^*$@!+_?-|])/"%" . uc(sprintf "%lx" , unpack("C", $1))/eg;
return ($value);
}
sub gff3_encode {
# spaces are allowed in attribute, but tabs must be escaped
my ($value) = @_;
$value =~ s/([^[a-zA-Z0-9.:^*$@!+_?-| ])/"%" . uc(sprintf "%lx" , unpack("C", $1))/eg;
return ($value);
}
1;
__END__
# THE ORIGINAL CONVERSION FUNCTION IS BELOW AS USED
sub blast2gff_old {
# CONVERT BLAST TO GFF
# seqname - ID to use in the seqname field
# blastin - path to the blast input file
# gffout - path to the gff output file
# append - boolean append data to existing file at gff out
# bopt - The type of blast report to parse (0,8,9)
my ($blastin, $gffout, $append, $seqname, $bopt ) = @_;
my $blastprog; # Name of the blast program used (blastn, blastx)
my $dbname; # Name of the database blasted
my $hitname; # Name of the hit
my $start; # Start of the feature
my $end; # End of the feature
my $strand; # Strand of the hit
my $blast_report; # The handle for the blast report
my $blast_score; # The score for the blast hit
my $seq_name_len = length($seqname);
#-----------------------------+
# GET BLAST REPORT |
#-----------------------------+
if ($bopt == 8 || $bopt == 9) {
# PARSE m8 or m9 ALIGNMENTS
$blast_report = new Bio::SearchIO ( '-format' => 'blasttable',
'-file' => $blastin)
|| die "Could not open BLAST input file:\n$blastin.\n";
}
else {
# PARSE DEFAULT ALIGNMNETS (m0)
$blast_report = new Bio::SearchIO ( '-format' => 'blast',
'-file' => $blastin)
|| die "Could not open BLAST input file:\n$blastin.\n";
}
# Open file handle to the gff outfile
if ($append) {
open (GFFOUT, ">>$gffout")
|| die "Can not open file:\n $gffout\n";
}
else {
open (GFFOUT, ">$gffout")
|| die "Can not open file:\n $gffout\n";
}
while (my $blast_result = $blast_report->next_result())
{
$blastprog = $blast_result->algorithm;
# FOR m8 output the database name does not work
# so I will use the file name as given by blastin
if ($bopt == 8 || $bopt == 9) {
$dbname = $blastin;
# Since DAWG-PAWS uses a specific naming stragety, I will
# try to extract the database name from the file name
# Basic pattern is 'path_root/file name'_'database name'
# can get the
if ($dbname =~ m/(.*)\/(.*)\.bln$/ ) {
$dbname = $2;
$dbname = substr($dbname, $seq_name_len+1 );
}
elsif ($dbname =~ m/(.*)\/(.*)\.blx$/ ) {
$dbname = $2;
$dbname = substr($dbname, $seq_name_len+1);
}
}
else {
$dbname = $blast_result->database_name();
}
while (my $blast_hit = $blast_result->next_hit())
{
while (my $blast_hsp = $blast_hit->next_hsp())
{
my $hitname = $blast_hit->name();
$strand = $blast_hsp->strand('query');
if ($strand =~ "-1") {
$strand = "-";
}
elsif ($strand =~ "1") {
$strand = "+";
}
else {
die "Error parsing strand\n";
}
# Make certain that start coordinate is
# less then the end coordinate
if ( $blast_hsp->start() < $blast_hsp->end() ) {
$start = $blast_hsp->start(); # Start
$end = $blast_hsp->end();
#$strand = "+";
}