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
|
package Bio::Tools::Run::SCLBlastLocal;
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# OVERVIEW
# PSORT-B is described in Gardy, J.L. et al (2003). PSORT-B:
# improving protein subcellular localization prediction for
# Gram-negative bacteria. Nuc Acids Res 31(13):3613-17. Please
# cite this publication if you use PSORT-B in your research.
# The standalone version of PSORT-B is distributed under the GNU
# General Public Licence (Gnu GPL) (see the LICENSE file included
# in the download) by the Brinkman Laboratory, Simon Fraser
# University, Burnaby, B.C., Canada.
# This standalone version of PSORT-B has initially been developed
# for the Linux environment.
# This document describes the installation of the PSORT-B version
# 1.1.4 command line program and the PSORT-B server packages. For
# most purposes, following the installation instructions for the
# command line version will be sufficient.
# For further information, please contact psort-mail@sfu.ca.
use Bio::Tools::Run::SCLBlast::Report;
use Bio::Tools::Run::SCLBlast::Hit;
use Bio::SearchIO;
use Bio::Search::HSP::BlastHSP;
use Bio::Root::Root;
use File::Temp qw/ tempfile /;
use strict;
our @ISA = qw(Bio::Root::Root);
our $VERSION = '0.02';
our %ENV;
sub new {
my ($class, %args) = @_;
my $self = bless {
exact => $args{-exact} || 0,
-database => $args{-database} || '',
-blastdir => $args{-blastdir} || '',
blastbin => $args{-blastbin} || '',
}, $class;
$self->throw("Failed to initialize SCLBlastLocal, $self->{blastbin} not executable")
if($self->{blastbin} && (! -x $self->{blastbin}));
$self->{parser} = sub {
my $line = shift;
# Extract the localization/description strings.
# $line =~ /^.*\[(.*)\]\s+(.*)$/;
# $line =~ /^\s*\[(\S+)\]\s+(.*)$/;
$line =~ /^\s*\[(\S+)\]\s*(\[\S+\])?\s+(.*)$/;
my ($loc, $sec, $dsc) = ($1, $2, $3);
# Check to see if we have multiple localizations.
$loc = [split(/\s+|\,/, $loc)] if($loc =~ /\,/);
# Check to see if we have secondary localizations
my $secloc = [];
if($sec) {
$sec =~ /\[(\S+)\]/;
$secloc = $1;
$secloc = [split(/\s+|\,/, $secloc)] if($secloc =~ /\,/);
}
return ($loc, $secloc, $dsc);
};
return $self;
}
sub parser {
my ($self, $parser) = @_;
$self->throw("Not a CODE reference") if(ref($parser) ne "CODE");
$self->{parser} = $parser;
}
sub blast {
my ($self, $seq) = @_;
my ($blast, $brep);
my $qper;
my $hper;
my $fracID;
my $expect;
# Ensure we received a Bio::Seq object.
$self->throw("Not a Bio::Seq object")
if((! ref($seq)) || (! $seq->isa('Bio::Seq')));
# Get temp file for blast report
my ($repfh, $repfile) = tempfile();
open(BLAST, "|$self->{blastbin} -p blastp -d $self->{-database} -F F -e 1e-02 -o $repfile");
print BLAST $seq->seq;
close BLAST;
my $brep = new Bio::SearchIO(-format => 'blast', -file => "$repfile");
# Blast the sequence.
# $brep = $self->{blast}->blastall($seq);
# $self->{blast}->cleanup;
return () if(! $brep);
my $bres = $brep->next_result();
# Create a list of the hits on the sequence.
my @hits = ();
while(my $hit = $bres->next_hit()) {
my @hsps;
while(my $hsp = $hit->next_hsp) {
$qper = $hsp->length('hit')/$hsp->length('query') * 100;
$expect = $hsp->evalue();
# Check the evalue to make sure it's in range (stupid Blast bug)
next if($expect > 1e-9);
# If we're in exact match mode, skip those not within 1 basepairs
# in similar length
next if($self->{exact} && (abs($hit->length() - $seq->length()) > 1));
# Add the HSP to the list if it meets our length criteria.
push(@hsps, $hsp) if(($qper > 80) && ($qper < 120));
$fracID = $hsp->frac_identical('total')*100;
}
if(@hsps) {
my ($loc, $secloc, $desc) = $self->{parser}->($hit->description);
if(!(($self->{exact}) && !( $qper == 100 && $fracID == 100))) {
my $hit = new Bio::Tools::Run::SCLBlast::Hit(
'-localization' => $loc,
'-secondloc' => $secloc,
'-description' => ($self->{exact}?'100% ':'') . $hit->name . ": " . $desc,
'-algorithm' => 'blastp',
'-name' => 'sclblast',
'-length' => $hit->length,
'-hsps' => \@hsps);
push(@hits, $hit);
}
}
}
# Explicitly close and unlink the temp file to make sure it gets erased
close $repfh;
unlink $repfile;
return new Bio::Tools::Run::SCLBlast::Report(-hits => \@hits);
}
1;
|