-
Notifications
You must be signed in to change notification settings - Fork 7
/
extractBESTMACH.pl
executable file
·261 lines (204 loc) · 6.59 KB
/
extractBESTMACH.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
#!/usr/bin/perl
#
# INGLÊS/ENGLISH
# 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.
# http://www.gnu.org/copyleft/gpl.html
#
#
# PORTUGUÊS/PORTUGUESE
# Este programa é distribuído na expectativa de ser útil aos seus
# usuários, porém NÃO TEM NENHUMA GARANTIA, EXPLÍCITAS OU IMPLÍCITAS,
# COMERCIAIS OU DE ATENDIMENTO A UMA DETERMINADA FINALIDADE. Consulte
# a Licença Pública Geral GNU para maiores detalhes.
# http://www.gnu.org/copyleft/gpl.html
#
# Copyright (C) 2012 Universidade de São Paulo
#
# Universidade de São Paulo
# Laboratório de Biologia do Desenvolvimento de Abelhas
# Núcleo de Bioinformática (LBDA-BioInfo)
#
# Daniel Guariz Pinheiro
# http://zulu.fmrp.usp.br/bioinfo
#
# $Id$
=head1 NAME
=head1 SYNOPSIS
=head1 ABSTRACT
=head1 DESCRIPTION
Arguments:
-h/--help Help
-l/--level Log level [Default: FATAL]
OFF
FATAL
ERROR
WARN
INFO
DEBUG
TRACE
ALL
=head1 AUTHOR
Daniel Guariz Pinheiro E<lt>[email protected]<gt>
Copyright (c) 2012 Universidade de São Paulo
=head1 LICENSE
GNU General Public License
http://www.gnu.org/copyleft/gpl.html
=cut
use strict;
use warnings;
use Readonly;
use Getopt::Long;
use vars qw/$LOGGER/;
INIT {
use Log::Log4perl qw/:easy/;
Log::Log4perl->easy_init($FATAL);
$LOGGER = Log::Log4perl->get_logger($0);
}
my ($level, $input, $reffiles, $threshold, $opt, $sbhfile, $auxfile);
Usage("Too few arguments") if $#ARGV < 0;
GetOptions( "h|?|help" => sub { &Usage(); },
"l|level=s"=> \$level,
"i|input=s"=>\$input,
"r|ref=s"=>\$reffiles,
"t|threshold=f"=>\$threshold,
"o|opt=s"=>\$opt,
"b|sbh=s"=>\$sbhfile,
"a|aux=s"=>\$auxfile
) or &Usage();
if ($level) {
my %LEVEL = (
'OFF' =>$OFF,
'FATAL' =>$FATAL,
'ERROR' =>$ERROR,
'WARN' =>$WARN,
'INFO' =>$INFO,
'DEBUG' =>$DEBUG,
'TRACE' =>$TRACE,
'ALL' =>$ALL);
$LOGGER->logdie("Wrong log level ($level). Choose one of: ".join(', ', keys %LEVEL)) unless (exists $LEVEL{$level});
Log::Log4perl->easy_init($LEVEL{$level});
}
$LOGGER->logdie("Missing reference file (subject)") unless ($reffiles);
$LOGGER->logdie("Wrong reference file (subject)") unless (-e $reffiles);
$LOGGER->logdie("Missing input file") unless ($input);
$LOGGER->logdie("Wrong input file") unless (-e $input);
my %conversor;
if ($auxfile) {
open(AUX, "<", $auxfile) or $LOGGER->logdie($!);
while(<AUX>) {
chomp;
my ($to, $from) = split(/\t/, $_);
$conversor{$from} = $to;
}
close(AUX);
}
my %sbh;
if ($sbhfile) {
open(SBH, "<", $sbhfile) or $LOGGER->logdie($!);
while(<SBH>) {
chomp;
if ($_=~/Query=(\S+) Hit=(\S+) Score=(\S+) /) {
my ($q, $h, $s) = ($1, $2, $3);
$sbh{$q}->{ ((exists $conversor{$h}) ? $conversor{$h} : $h) } = $s;
}
}
close(SBH);
}
my %refscores;
open(REF, "<", $reffiles) or $LOGGER->logdie($!);
while(<REF>) {
chomp;
if ($_=~/Query=(\S+) Hit=(\S+) Score=(\S+) /) {
my ($q, $h, $s) = ($1, $2, $3);
if ($q ne $h) {
$LOGGER->logdie("Wrong association found $_");
}
$refscores{$q} = $s;
}
}
close(REF);
use File::Basename;
my ($b1, $b2) = split('_X_', basename($input, '.bls'));
#print $b1,"\t",$b2,"\n";
$threshold||=0.9;
use Bio::SearchIO;
my $in = new Bio::SearchIO(-format => 'blast',
-file => $input);
while ( my $result = $in->next_result ) {
## $result is a Bio::Search::Result::ResultI compliant object
my $best_hit_score;
my @allhits;
while ( my $hit = $result->next_hit ) {
$best_hit_score ||= $hit->bits();
if ($hit->bits() > $best_hit_score) {
$best_hit_score = $hit->bits();
}
push(@allhits, $hit);
}
if ($opt eq 'query') {
$LOGGER->logdie( "Not found refscoreq for " . $result->query_name() ) unless ( $refscores{ $result->query_name() } );
}
foreach my $hit (@allhits) {
my $refval=0;
if ($opt eq 'hit') {
$LOGGER->logdie( "Not found refscoreq for " . $hit->name() ) unless ( $refscores{ $hit->name() } );
$refval = $refscores{$hit->name()}
}
elsif ($opt eq 'query') {
$refval = $refscores{$result->query_name()};
}
else {
$refval = 'NA';
}
if ( abs( $hit->bits() / $best_hit_score ) >= $threshold ) {
print
"Query=", $result->query_name,
" Hit=", $hit->name,
" Score=", $hit->bits,
" Evalue=", $hit->significance,
" Threshold=", $threshold,
" Ratio=", sprintf( "%.2f", abs( $hit->bits() / $best_hit_score )),
" Reference(s) ($opt) =", $refval,
((exists $sbh{$hit->name()}->{$result->query_name()}) ? "\t***RBH*** (Subject Best Hit Score=".$sbh{$hit->name()}->{$result->query_name()}.")" : ''),
"\n";
}
else {
print STDERR "INSUFFICIENT", "\t",
"Query=", $result->query_name,
" Hit=", $hit->name,
" Score=", $hit->bits,
" Evalue=", $hit->significance,
" Threshold=", $threshold,
" Ratio=", sprintf( "%.2f", abs( $hit->bits() / $best_hit_score )),
" Reference(s) ($opt) =", $refval,
"\n";
}
}
}
# Subroutines
sub Usage {
my ($msg) = @_;
Readonly my $USAGE => <<"END_USAGE";
Daniel Guariz Pinheiro (dgpinheiro\@gmail.com)
(c)2012 Universidade de São Paulo
Usage
$0 [-h/--help] [-l/--level <LEVEL>]
Argument(s)
-h --help Help
-l --level Log level [Default: FATAL]
-i --input Input
-r --ref Reference score file
-t --threshold Threshold [Default: 0.9]
-o --opt opt [Default: query]
-b --sbh subject best hit
-a --aux Aux
END_USAGE
print STDERR "\nERR: $msg\n\n" if $msg;
print STDERR qq[$0 ] . q[$Revision$] . qq[\n];
print STDERR $USAGE;
exit(1);
}