/usr/share/perl5/Boulder/Blast/WU.pm is in libboulder-perl 1.30-5.
This file is owned by root:root, with mode 0o644.
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 | package Boulder::Blast::WU;
# WUBLAST file format parsing
=head1 NAME
Boulder::Blast::WU - Parse and read WU-BLAST files
=head1 SYNOPSIS
Not for direct use. Use Boulder::Blast instead.
=head1 DESCRIPTION
Specialized parser for WUBLAST format BLAST output. Loaded
automatically by Boulder::Blast.
=head1 SEE ALSO
L<Boulder>, L<Boulder::GenBank>, L<Boulder::Blast>
=head1 AUTHOR
Lincoln Stein <lstein@cshl.org>.
Copyright (c) 1998 Cold Spring Harbor Laboratory
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. See DISCLAIMER.txt for
disclaimers of warranty.
=cut
use strict;
use Stone;
use Boulder::Stream;
use Carp;
use vars qw($VERSION @ISA);
@ISA = 'Boulder::Blast';
$VERSION = 1.00;
sub _read_record {
my $self = shift;
my $fh = shift;
my $stone = shift;
# we don't find out about the name of the database or the parameters until we
# get to the bottom of the file. Too bad.
# loop until we find the query name
my $line;
do {
$line = <$fh>;
} until $line=~/^Query=\s+(\S+)/;
croak "Couldn't find query line!" unless $1;
$stone->insert(Blast_query => $1);
do {
$line = <$fh>;
} until $line=~/([\d,]+) letters/;
croak "Couldn't find query length!" unless $1;
(my $len = $1) =~ s/,//g;
$stone->insert(Blast_query_length => $len);
# Read down to the first hit, if any. If we hit /^Parameters/, then we had no
# hits.
while (<$fh> ) {
last if /^(>|Parameters)/;
}
if (/^>/) { # we found some hits
my $hits = $self->parse_hits($_);
$stone->insert(Blast_hits => $hits);
}
# At this point, one way or another, we're pointing at the Parameters
# line. We create a parameter stone to hold the results
my $parms = new Stone;
while (<$fh>) {
chomp;
last if /^Statistics/;
$parms->insert(Ctxfactor => $1) if /ctxfactor=(\S+)/;
$parms->insert(Gapall=>'yes') if /gapall/;
$parms->insert(Hspmax=>$1) if /hspmax=(\S+)/;
$parms->insert(Expectation=>$1) if /E=(\S+)/;
$parms->insert(Matrix=>$1) if /^\s+\+[0-3]\s+0\s+(\S+)/ && !$parms->get('Matrix'); # borscht
}
$stone->insert(Blast_parms => $parms);
# Now we should be pointing at statistics
while (<$fh>) {
$stone->insert(Blast_db => $1) if /Database: (.*)/;
$stone->insert(Blast_db_title => $1) if /Title: (.*)/;
$stone->insert(Blast_db_date => $1) if /Posted date:\s+(.*)/;
last if /End:/;
}
# finally done!
$stone;
}
# parse the hits and HSPs
sub parse_hits {
my $self = shift;
$_ = shift;
my $fh = $self->_fh;
my (@hits,@hsps,$accession,$orientation,$hit,$hsp);
my ($qstart,$qend,$tstart,$tend);
my ($query,$match,$target,$done,$new_hit,$new_hsp);
my $signif = 9999;
my $expect = 9999;
my $ident = 0;
while (!$done) {
chomp;
next unless length($_);
$done = /^Parameters/; # here's how we get out of the loop
$new_hit = /^>(\S+)/;
$new_hsp = $accession && /Score = (\d+) \((\S+) bits\)/;
# hit a new HSP section
if ( $done || $new_hit || $new_hsp ) {
if ($hsp) {
croak "base alignment is out of whack"
unless length($query) == length($target);
$hsp->insert(Query => $query,
Subject => $target,
Alignment => substr($match,0,length($query)),
);
$hsp->insert(Query_start => $qstart,
Query_end => $qend,
Subject_start => $tstart,
Subject_end => $tend,
Length => 1 + $qend - $qstart,
Orientation => $tend > $tstart ? 'plus' : 'minus',
);
push(@hsps,$hsp);
undef $hsp;
}
if ($new_hsp) {
$hsp = new Stone;
$hsp->insert(Score => $1, Bits => $2);
($qstart,$qend,$tstart,$tend) = (undef,undef,undef,undef); # undef all
($query,$match,$target) = (undef,undef,undef); # these too
}
}
# hit a new subject section
if ( $done || $new_hit ) {
$accession = $1;
if ($hit) {
$hit->insert(Hsps => \@hsps,
Signif => $signif,
Identity => $ident,
Expect => $expect,
) if @hsps;
undef @hsps;
push(@hits,$hit);
($signif,$expect,$ident) = (9999,9999,0); # reset max values
}
if ($new_hit) {
$hit = new Stone;
$hit->insert(Name => $accession);
next;
}
}
# hit the length = line
if (/Length\s*=\s*([\d,]+)/) {
(my $len = $1) =~ s/,//g;
$hit->insert(Length => $len);
next;
}
# hit the Plus|Minus Strand line
if (/(Plus|Minus) Strand HSPs/) {
$orientation = lc $1;
next;
}
# None of the following is relevant unless $hsp is defined
next unless $hsp;
if (/Expect = ([+e\d\.-]+)/) {
$hsp->insert(Expect => $1);
$expect = $1 < $expect ? $1 : $expect;
}
if (/P(?:\(\d+\))? = (\S+)/) {
$hsp->insert(Signif => $1);
$signif = $1 < $signif ? $1 : $signif;
}
if (/Identities = \S+ \((\d+%?)\)/) {
my $idn = $1;
$hsp->insert(Identity => $idn);
$ident = $idn > $ident ? $idn : $ident;
}
$hsp->insert(Positives => $1) if /Positives = \S+ \((\S+)\)/;
$hsp->insert(Strand => $1) if /Strand =\s+([^,]+)/;
$hsp->insert(Frame => $1) if /Frame =\s+([^,]+)/;
# process the query sequence
if (/^Query:\s+(\d+)\s+(\S+)\s+(\d+)/) {
$qstart ||= $1;
$qend = $3;
$query .= $2;
next;
}
# process the target sequence
if (/^Sbjct:\s+(\d+)\s+(\S+)\s+(\d+)/) {
$tstart ||= $1;
$tend = $3;
$target .= $2;
next;
}
# anything else is going to be the match string
# this is REALLY UGLY because we have to extract absolute
# positions
$match .= substr($_,13,60) if $query;
} continue {
$_ = <$fh>;
}
return \@hits;
}
1;
|