forked from sujaikumar/assemblage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blast_taxonomy_report.pl
executable file
·178 lines (141 loc) · 5.13 KB
/
blast_taxonomy_report.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
#!/usr/bin/perl
=head1 NAME
blast_taxonomy_report.pl - Takes a blast output (in tabular format) and the NCBI taxonomy nodes and names database text dumps and returns an NCBI style taxonomy report of the hits
=head1 SYNOPSIS
blast_taxonomy_report.pl -blast contigs_nr.1e-8.txt -nodes nodes.dmp -names names.dmp -gi gi_taxid_nucl.dmp.gz
=head1 DESCRIPTION
=head1 AUTHORS
[email protected] 2010.05.24
=cut
use strict;
use warnings;
use Getopt::Long qw(:config pass_through no_ignore_case);
my ($blastfile, $nodesfile, $namesfile, $gi_taxid_file) = ("","/exports/work/blast/nodes.dmp","/exports/work/blast/names.dmp", "/exports/work/blast/gi_taxid_nucl.dmp.gz");
my @tax_list = ("species","order","phylum","superkingdom");
GetOptions (
"blastfile=s" => \$blastfile,
"nodesfile=s" => \$nodesfile,
"namesfile=s" => \$namesfile,
"gi_taxid_file=s" => \$gi_taxid_file,
"taxon_levels=s{,}" => \@tax_list,
);
my %tax_levels;
foreach (@tax_list) {$tax_levels{$_}=1}
die "Usage: blast_taxonomy_report.pl -blast contigs_nr.1e-8.txt -nodes nodes.dmp -names names.dmp -gi_taxid_file gi_taxid_prot.dmp.gz\n" unless -r $blastfile or $blastfile eq "-";
#---------------------------------
my (%taxid_has_parent, %taxid_has_taxlevel, %taxid_has_name, %gi_has_taxid);
&load_nodes_names;
&load_gi_taxids($blastfile, $gi_taxid_file);
#initialise curr query var and hits array
my $curr_query = "";
my @curr_query_hits;
# parse each line of blast tabular results file
my $blast_fh = &read_fh($blastfile);
while (my $line = <$blast_fh>) {
my @blast_fields = split(/\t/,$line);
# skip loop if it is not a blast tab result
next if $line =~ /^#/ or scalar @blast_fields < 12;
if ($blast_fields[0] eq $curr_query) {
push @curr_query_hits, $blast_fields[1];
}
else {
# process existing query and then start new query
&print_taxonomy_report ($curr_query, @curr_query_hits);
$curr_query = $blast_fields[0];
@curr_query_hits = ($blast_fields[1]);
}
}
# last one:
&print_taxonomy_report ($curr_query, @curr_query_hits);
close $blast_fh;
############################################################
sub print_taxonomy_report {
my $query = shift @_;
my @hits = @_;
my %hit_counts;
print "$query\t";
for my $hit_id (@hits) {
next unless $hit_id =~ /^gi\|(\d+)\|/;
my $hit_gi = $1;
if (exists $gi_has_taxid{$hit_gi}) {
my $hit_taxid = $gi_has_taxid{$hit_gi};
my @parents = &get_parents($hit_taxid);
# print "@parents\n";
for my $parent (@parents) {
if (exists $taxid_has_taxlevel{$parent} and exists $tax_levels{$taxid_has_taxlevel{$parent}}) {
$hit_counts{$taxid_has_taxlevel{$parent}}{$taxid_has_name{$parent}}++;
}
}
}
}
for my $tax_level (keys %hit_counts) {
for my $tax_name (keys %{$hit_counts{$tax_level}}) {
print "$tax_level\t$tax_name\t$hit_counts{$tax_level}{$tax_name}\t";
}
}
print "\n";
}
############################################################
sub get_parents {
my @all = @_;
my $current_id = $all[0];
if (exists $taxid_has_parent{$current_id} and $current_id ne $taxid_has_parent{$current_id}) {
unshift @all, $taxid_has_parent{$current_id};
@all = &get_parents(@all);
}
return @all;
}
############################################################
sub load_nodes_names {
my $fh;
$fh = &read_fh($nodesfile);
while (my $line = <$fh>) {
# line in nodes.dmp should match the regexp below.
# Change the regexp if NCBI changes their file format
next if $line !~ /^(\d+)\s*\|\s*(\d+)\s*\|\s*(.+?)\s*\|/;
$taxid_has_parent{$1} = $2;
$taxid_has_taxlevel{$1} = $3;
}
close $fh;
$fh = &read_fh($namesfile);
while (my $line = <$fh>) {
next unless $line =~ /^(\d+)\s*\|\s*(.+?)\s*\|.+scientific name/;
$taxid_has_name{$1} = $2;
}
}
############################################################
sub load_gi_taxids {
# need blast file so that only those gis are loaded which are hits
my $blastfile = shift @_;
my $gi_taxid_file = shift @_;
# initialize hash of gis of hits (to be filled in later with taxids)
my $fh = &read_fh($blastfile);
while (my $line = <$fh>) {
next unless $line =~ /^\S+\tgi\|(\d+)\|/;
$gi_has_taxid{$1} = 0;
}
close $fh;
# now load gi_taxid mappings
$fh = &read_fh($gi_taxid_file);
while (my $line = <$fh>) {
# Change the regexp if NCBI changes their file format for gi_taxid.dmp
next if $line !~ /^(\d+)\s+(\d+)/;
if (exists $gi_has_taxid{$1}) {
$gi_has_taxid{$1} = $2;
}
}
close $fh;
}
############################################################
sub read_fh {
my $filename = shift @_;
my $filehandle;
if ($filename =~ /gz$/) {
open $filehandle, "gunzip -dc $filename |" or die $!;
}
else {
open $filehandle, "<$filename" or die $!;
}
return $filehandle;
}
############################################################