/usr/bin/bp_find-blast-matches is in bioperl 1.7.1-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/env perl
use strict;
use warnings;
=head1 NAME
bp_find-blast-matches.pl - extract DNA sequences based on BLAST hits
=head1 SYNOPSIS
bp_find-blast-matches.pl [-h -e -p -5 -n -o -3 -header] -blast <BLAST_FILE> -fasta <FASTA_FILE>
=head1 OPTIONS
=head2 Mandatory:
=over
=item B<-blast>
BLAST output file to read from. The alignment should use the file specified by
'-fasta' option ideally
=item B<-fasta>
FASTA file to read from. This is where the sequence will be extracted from
=back
=head2 Optional:
=over
=item B<-h>
Displays this help message
=item B<-e>
Maximum e-value for matches (0.01 by default)
=item B<-p>
Number of base pairs of 5' region to be included with the sequence
=item B<-5>
Number of base pairs of 5' region only, excluding the regular sequence
=item B<-3>
Number of base pairs of 3' region only, excluding the regular sequence
=item B<-n>
Number of top hits to display, starting with the best hit
=item B<-o>
Exact match to display (this option can't be used in conjunction with '-n'
=item B<-header>
The FASTA header to display instead of the default
=back
=head1 DESCRIPTION
This script takes a BLAST output file and a FASTA file as arguments,
given after the '-blast' and '-fasta' options respectively. The BLAST output
file should have been generated with your sequence of interest and the
FASTA file supplied as an argument.
Example: find-blast-matches.pl -blast BLAST_FILE -fasta FASTA_FILE
It parses through the BLAST file to check for high quality matches,
which are then searched for in the FASTA file. The sequence may vary
from you candidate sequence, hence the BLAST search prior.
The sequence from the FASTA file is then displayed to STDOUT.
Optional arguments can be used, such as to extract the 5' or 3' region.
=head1 AUTHOR
Gabriel Abud - E<lt>gabriel.jabud-at-gmail.comE<gt>
=head1 FEEDBACK
=head2 Mailing Lists
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list. Your participation is much appreciated
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
=head2 Reporting Bugs
Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
email or the web:
https://github.com/bioperl/bioperl-live/issues
=head1 EDIT HISTORY
2014-08-04 - Gabriel Abud
First features added
=head1 DEPENDANCIES
Getopt::long, Pod::Usage, Bio::SearchIO, Bio::Seq, Bio::SeqIO, Bio::Perl,
File::Basename
=cut
# Modules
use Bio::SearchIO qw(new);
use Bio::Seq qw(new);
use Bio::SeqIO qw(new);
use Bio::Perl qw(revcom_as_string);
use File::Basename qw(basename);
use Getopt::Long qw(GetOptions);
use Pod::Usage;
# Variables
my $baseProg = basename($0); # Program name
my $line;
my @scaffolds;
my $inputFile;
my $blastFile;
my $scaffoldFind;
my $baseList;
my @start;
my @end;
my @strand;
my @arrayBases;
my $query_name;
my @query_names;
my @accessions;
my $accession;
my $baseFile;
my $total_size;
my $title;
my $default_header;
my $in;
my $out;
# Command line options
my $exact_match; # Undef by default
my $e_value = 0.01; # Default e-value
my $matches = 1; # Default number of matches
my $promoter; # Undef by default
my $three_prime; # Undef by default
my $promoter_only; # Undef by default
my $opt_help; # Undef by default
my $header; # Undef by default
# Functions for proper command line usage
sub syntax {
print STDERR
"Usage: $baseProg -blast 'BLAST_file' -fasta 'FASTA_file' [OPTIONS]\n";
print STDERR "Try '$baseProg --help' for more information.\n";
exit;
}
sub help {
print STDERR
"\nNAME:\n",
"\t$baseProg - extract a DNA sequence based on BLAST hits\n\n",
"SYNTAX:\n",
"\t$baseProg -blast 'BLAST_file' -fasta 'FASTA__file' [OPTIONS]\n\n",
"OPTIONS:\n",
"\t(All options require an additional number argument [ie: -e 0.01])\n\n",
"\t-e, maximum e-value for matches (0.01 by default)\n\n",
"\t-p, number of base pairs of 5' region to be included with the\n",
"\t sequence of interest\n\n",
"\t-5, number of base pairs of 5' region, excluding the sequence\n",
"\t of interest (unlike '-p')\n\n",
"\t-n, number of top hits to display, starting with the highest hit\n",
"\t(1 by default)\n\n",
"\t-o, exact match to display (this option can't be used in conjuction\n",
"\t with '-n')\n\n",
"\t-3, number of base pairs of 3' region to display\n\n",
"\t-header, the fasta header to display instead of the default\n\n";
exit;
}
# Get command line options
GetOptions(
'e=f' => \$e_value,
'p=i' => \$promoter,
'n=i' => \$matches,
'o=i' => \$exact_match,
'5=i' => \$promoter_only,
'3=i' => \$three_prime,
'help|h' => \$opt_help,
'header|head=s' => \$header,
'blast|b=s' => \$blastFile,
'fasta|f=s' => \$inputFile
) or pod2usage(-exitstatus => 0, -verbose => 1);
# Help screen
pod2usage(-exitstatus => 0, -verbose => 2) if $opt_help;
#help() if defined $opt_help;
# Checks for required arguments
pod2usage(-exitstatus => 0, -verbose => 1,
-msg => "You must specify the FASTA and BLAST files to read from!\n")
if (!defined $blastFile || !defined $inputFile);
#syntax() if ( !defined $blastFile || !defined $inputFile );
# Checks for any negative numbers
#syntax()
pod2usage(-exitstatus => 0, -verbose => 1,
-msg => "You must use positive numbers as values to options!")
if ( (defined $e_value && $e_value < 0)
|| (defined $promoter && $promoter < 0)
|| (defined $matches && $matches < 0)
|| (defined $exact_match && $exact_match < 0)
|| (defined $promoter_only && $promoter_only < 0)
|| (defined $three_prime && $three_prime < 0 ) );
if ( $matches > 1 && defined $exact_match ) {
print STDERR "Cannot use both options '-n' and '-o' at the same time\n";
print STDERR "(Type '$baseProg --help' for more information\n)";
exit;
}
if ( defined $promoter && defined $promoter_only ) {
print STDERR "Cannot use both options '-p' and '-5' at the same time\n";
print STDERR "(Type '$baseProg --help' for more information)\n";
exit;
}
if ( defined $three_prime && ( defined $promoter || defined $promoter_only ) ) {
print STDERR "Cannot use both '-3' with '-p' or '-5' at the same time\n";
print STDERR "(Type $baseProg --help' for more information)\n";
exit;
}
# Class used to search through the blast file
eval { $in = Bio::SearchIO->new( -file => $blastFile, -format => "blast" ); };
if ($@) {
die "'$blastFile' does not appear to be a BLAST output file! Exiting...\n";
}
$out = Bio::SeqIO->new( -fh => \*STDOUT, -format => "fasta" );
# Creates arrays of all the scaffold names and the coordinates of where those scaffolds are found
my $n = 0;
OUTERLOOP: while ( my $result = $in->next_result ) {
LOOP: while ( my $hit = $result->next_hit ) {
while ( my $hsp = $hit->next_hsp ) {
# Finds all matches with an evalue <= $e_value (or 0.01 by default)
if ( $hsp->evalue <= $e_value ) {
( $start[$n], $end[$n] ) = $hsp->range('hit');
$scaffolds[$n] = $hit->name, $strand[$n] = $hsp->strand('hit');
$n += 1;
}
# If an exact_match option is given
if ( defined($exact_match) && $exact_match == $n ) {
( $start[0], $end[0] ) = $hsp->range('hit');
$scaffolds[0] = $hit->name, $strand[0] = $hsp->strand('hit');
last OUTERLOOP;
}
elsif ( !defined($exact_match) && $n >= $matches )
{ # Exits after the correct amount of matches have been found (1 by default)
last LOOP;
}
}
}
}
$baseFile = basename $inputFile;
open INFILE, "<$inputFile"
or die "Couldn't open the input file '$inputFile'! Exiting...\n";
$scaffoldFind = 0;
my %scaffoldList;
my %baseList;
# Extracts only the scaffolds of interest, avoiding duplicates
if ( defined $exact_match ) {
$scaffoldList{ $scaffolds[0] } = 1;
}
else {
foreach my $num ( 0 .. $#scaffolds ) {
if ( !defined $scaffoldList{ $scaffolds[$num] } ) {
$scaffoldList{ $scaffolds[$num] } = 1;
}
}
}
my $remaining_scaffolds = my $unique_scaffolds = keys(%scaffoldList);
local $/ = "\n>";
# Reads the FASTA file here, storing FASTA headers where the sequence is found
while ( $line = <INFILE> ) {
chomp($line);
next if ( $line =~ m/^\s*?$/ );
foreach my $scaffold ( sort keys %scaffoldList ) {
if ( $line =~ /^[ \t]{0,5}$scaffold/ )
{ # True if FASTA segment contains the scaffold
$line =~ s/^.*?\n//;
$line =~ s/\s//g;
$baseList{$scaffold} = $line;
$scaffoldFind++;
$remaining_scaffolds--;
}
}
last unless ($remaining_scaffolds);
}
if ( $scaffoldFind != $unique_scaffolds ) {
print STDERR "The scaffold specified in the BLAST file was not found.\n";
print STDERR "Make sure you are using the correct FASTA file.\n";
exit;
}
for my $m ( 0 .. $#scaffolds )
{ # Runs a loop as many times as there are scaffolds
$baseList = $baseList{ $scaffolds[$m] };
# Print title line for each scaffold
$accession = $baseFile;
$default_header = "(BLAST hit:$scaffolds[$m]|";
my $real_start = $start[$m];
my $real_end = $end[$m];
# For "normal", positive strands (+/+)
if ( $strand[$m] == 1 ) {
# If the -p flag was used
if ( defined $promoter ) { # 5' region specified with -p flag
# If 5' region is too large for sequence, don't include the 5' region
if ( $promoter >= $start[$m] ) {
print STDERR "ERROR: 5' region is too big!! (max promoter = ",
$start[$m] - 1, " )\n",
"Showing sequence without 5' region...\n";
$baseList = substr $baseList, $start[$m], $end[$m] - $start[$m];
}
else {
my $real_start = $start[$m] - $promoter;
$baseList = substr $baseList, $start[$m] - $promoter - 1,
$promoter + $end[$m] - $start[$m] + 1;
}
}
# If the -3 flag was used
elsif ( defined $three_prime ) {
$total_size = length($baseList);
if ( ( $three_prime + $end[$m] ) > $total_size ) {
die "ERROR: 3' region is too big!! ",
"(max 3' region = ", $total_size - $end[$m], ")\n",
;
}
else {
$real_start = $end[$m] + 1;
$real_end = $end[$m] + $three_prime;
$baseList = substr $baseList, $end[$m], $three_prime;
}
}
# If the -5 flag was used
elsif ( defined $promoter_only )
{ # 5' region was specified with -5 flag
# If 5' region is too large for sequence, don't include the 5' region
if ( $promoter_only >= $start[$m] ) {
die "ERROR: 5' region is too big!! (max promoter = ",
$start[$m] - 1, " )\n",
;
}
else {
$real_start = $start[$m] - $promoter_only;
$real_end = $start[$m] - 1;
$baseList = substr $baseList, $start[$m] - $promoter_only - 1,
$promoter_only;
}
}
else { # Default: just the BLAST hit (no 5' or 3')
$baseList = substr $baseList, $start[$m] - 1,
$end[$m] - $start[$m] + 1;
}
}
# Checks to see if the hit sequence is the reverse compliment
elsif ( $strand[$m] == -1 ) {
# If -p flag was used:
if ( defined $promoter ) {
$total_size = length($baseList);
if ( ( $promoter + $end[$m] ) > $total_size ) {
print STDERR "ERROR: 5' region is too big!! ",
"(max 5' region = ", $total_size - $end[$m], ")\n",
"Showing sequence without 5' region...\n";
$baseList = substr $baseList, $start[$m], $end[$m] - $start[$m];
}
else {
$real_start = $start[$m] + 1;
$real_end = $end[$m] + $promoter;
$baseList = substr $baseList, $start[$m] - 1,
$end[$m] - $start[$m] + $promoter + 1;
}
}
# If -3 flag was used
elsif ( defined $three_prime ) {
if ( $three_prime >= $start[$m] ) {
die "ERROR: 3' region is too big!! (max = ", $start[$m] - 1,
" )\n";
}
else {
$real_start = $start[$m] - $three_prime;
$real_end = $start[$m] - 1;
$baseList = substr $baseList, $start[$m] - $three_prime - 1,
$three_prime;
}
}
# If -5 flag was used
elsif ( defined $promoter_only ) {
$total_size = length($baseList);
if ( ( $promoter_only + $end[$m] ) > $total_size ) {
die "ERROR: 5' region is too big!! ",
"(max promoter = ", $total_size - $end[$m], ")\n",
;
}
else {
$real_start = $end[$m] + 1;
$real_end = $end[$m] + $promoter_only;
$baseList = substr $baseList, $end[$m], $promoter_only;
}
}
else { # If 5' region wasn't specified at all
$baseList = substr $baseList, $start[$m] - 1,
$end[$m] - $start[$m] + 1;
}
$baseList = revcom_as_string($baseList);
}
$default_header .= "$real_start-$real_end)";
$default_header .= " showing 5' region ($promoter_only bp) only"
if defined($promoter_only);
$default_header .= " showing 3' region ($three_prime bp)"
if defined($three_prime);
$default_header .= " with 5' region ($promoter bp)" if defined($promoter);
my $seq_obj = Bio::Seq->new( -seq => "$baseList", -alphabet => 'dna' );
if ( defined $header ) {
$header =~ s/^\s*//;
$header =~ s/\s*$//;
$header =~ s/^>//;
$header =~ s/^([^\s]+)//;
my $default_name = $1;
$seq_obj->display_id($default_name);
$seq_obj->desc($header);
}
else {
$seq_obj->desc($default_header);
$seq_obj->display_id($accession);
}
# Prints the sequence to STDOUT
$out->write_seq($seq_obj);
print "\n";
# If 'exact_match' option is specified, exit after first (and only) iteration
if ( defined($exact_match) ) {
close INFILE;
exit;
}
close INFILE;
} # End of major for loop
__END__
|