-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgetKEGGModuleSteps.pl
executable file
·262 lines (205 loc) · 6.31 KB
/
getKEGGModuleSteps.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
#!/usr/bin/env 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) 2019 Universidade Estadual Paulista "Júlio de Mesquita Filho"
#
# Universidade Estadual Paulista "Júlio de Mesquita Filho" (UNESP)
# Faculdade de Ciências Agrárias e Veterinárias (FCAV)
# Laboratório de Bioinformática (LB)
#
# Daniel Guariz Pinheiro
# http://www.fcav.unesp.br
#
# $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) 2019 Universidade Estadual Paulista "Júlio de Mesquita Filho"
=head1 LICENSE
GNU General Public License
http://www.gnu.org/copyleft/gpl.html
=cut
use strict;
use warnings;
use Readonly;
use Getopt::Long;
use Storable;
use File::Basename;
use vars qw/$LOGGER/;
INIT {
use Log::Log4perl qw/:easy/;
Log::Log4perl->easy_init($FATAL);
$LOGGER = Log::Log4perl->get_logger($0);
}
my ($level);
my ($modfile,$dumpdir,$keggmod,$keggolist);
Usage("Too few arguments") if $#ARGV < 0;
GetOptions( "h|?|help" => sub { &Usage(); },
"l|level=s"=> \$level,
"f|moddef=s"=>\$modfile,
"d|dumpdir=s"=>\$dumpdir,
"m|mod=s"=>\$keggmod,
"k|KO=s"=>\$keggolist
) 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});
}
$dumpdir ||= '.';
my $moddump = $dumpdir.'/'.basename($0,'.pl').'.dump';
if ($modfile) {
$LOGGER->logdie("Wrong module definition file ($modfile)") unless (-e $modfile);
my %module;
open(IN, "<", $modfile) or $LOGGER->logdie($!);
while(<IN>) {
chomp;
my ($mod, $def) = split(/\t/, $_);
$module{$mod} = $def;
}
close(IN);
store \%module, $moddump;
$LOGGER->info("Stored ".scalar(keys %module)." modules definitions ...");
}
$LOGGER->logdie("Missing module definition dump file") unless (-e $moddump);
my $hr_module = retrieve($moddump);
$LOGGER->info("Loaded ".scalar(keys %{$hr_module})." modules definitions ...");
my %K;
$LOGGER->logdie("Missing KEGG orthologs") unless ($keggolist);
$keggolist=~s/\s+//g;
@K{ split(/,/, $keggolist) } = ();
$LOGGER->logdie("Not found $keggmod") unless (exists $hr_module->{$keggmod});
my $definition = $hr_module->{$keggmod};
my %valid;
{
my $definition_for_valid=$definition;
$definition_for_valid=~s/[\(\)]//g;
$definition_for_valid=~s/\+/ /g;
$definition_for_valid=~s/\s+/,/g;
@valid{ split(/,/, $definition_for_valid) } = ();
}
$LOGGER->info("Found ".scalar(keys %valid)." KOs in the module $keggmod");
my $matched=0;
my @unmatched=();
foreach my $keggo (keys %K) {
next if $keggo eq 'NA';
if (exists $valid{$keggo}) {
$matched++;
} else {
push(@unmatched, $keggo);
}
}
$LOGGER->info("There are ".$matched." matched KOs in the module $keggmod");
$LOGGER->logwarn( "WARNING: There is(are) ".scalar(@unmatched)." unmatched KO(s) in the module $keggmod: ".join(",", @unmatched)) if (scalar(@unmatched));
my @def=split(//, $definition);
my %stack;
my $lv=0;
my $n=0;
foreach my $d (@def) {
if ($d eq '(') {
$n++;
}
# print $lv,"\t",$n,"\t",$d,"\n";
for (my $w=$n; $w>=0; $w--) {
# print "\t",$lv,"\t",$w,"\t",$d,"\n";
$stack{$lv}->[$w].=$d;
}
if ($d eq ')') {
$n--;
}
if (($d eq ' ')&&($n==0)) {
$lv++;
}
}
#foreach my $l (sort {$a <=> $b} keys %stack) {
# for (my $n=0; $n<=$#{$stack{$l}}; $n++) {
# print $l,"\t",$n,"\t",$stack{$l}->[$n],"\n";
# }
#}
my $step_count=0;
my $mod_step_count=0;
foreach my $l (sort {$a <=> $b} keys %stack) {
my $step = $stack{$l}->[0];
$step=~s/^\s+//;
$step=~s/\s+$//;
my %element;
my $defstr=$step;
$defstr=~s/[\(\)]//g;
$defstr=~s/[+ ]/,/g;
my $defeval=$step;
my %uniqueelement;
@uniqueelement{ split(/,/, $defstr) } = ();
foreach my $e ( keys %uniqueelement ) {
$element{$e} = 1 if (exists $K{$e});
$defeval=~s/$e/\$element{$e}/g;
}
$defeval=~s/\s+/&&/g;
$defeval=~s/,/||/g;
$defeval=~s/-/||/g;
$defeval=~s/\+/&&/g;
$LOGGER->info("Definition evaluation: $defeval");
my $ret=((eval("($defeval)")) ? 1 : 0);
$LOGGER->info("$step\t",$ret);
$step_count++ if ($ret);
$mod_step_count++;
}
print "$keggmod\t$step_count\t$mod_step_count","\n";
# Subroutines
sub Usage {
my ($msg) = @_;
my $dumpdir=basename($0,'.pl').'.dump';
Readonly my $USAGE => <<"END_USAGE";
Daniel Guariz Pinheiro (dgpinheiro\@gmail.com)
(c)2019 Universidade Estadual Paulista "Júlio de Mesquita Filho"
Usage
$0 [-h/--help] [-l/--level <LEVEL>]
Argument(s)
-h --help Help
-l --level Log level [Default: FATAL]
-f --moddef File with modules definition (KEGG MODULE<TAB>MODULE DEFINITION)
-d --dumpdir Directory path containing $dumpdir file [Default: current directory]
-m --mod KEGG module
-k --KO KEGG Orthologs separated by comma
END_USAGE
print STDERR "\nERR: $msg\n\n" if $msg;
print STDERR qq[$0 ] . q[$Revision$] . qq[\n];
print STDERR $USAGE;
exit(1);
}