-
Notifications
You must be signed in to change notification settings - Fork 2
/
accession2taxid.py
executable file
·49 lines (45 loc) · 1.5 KB
/
accession2taxid.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# aaf_phylokmer.py
#
# Copyright 2017 Huan Fan
# <hfan22@wisc.edu> & Yann Surget-Groba <yann@xtbg.org.cn>
#
# 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., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
import sys,gzip
# Store accession2taxid file in dictionary
dic = {}
dic_dead = {}
with gzip.open('/media/backup_2tb/Data/nr_protein/accession2taxid.gz') as fh:
for line in fh:
line = line.split()
dic[line[0]] = line[1]
'''
with gzip.open('/media/backup_2tb/Data/nr_protein/dead_prot.accession2taxid_slim.gz') as fh:
for line in fh:
line = line.split()
dic_dead[line[0]] = line[1]
'''
# read in blast result
blast = open(sys.argv[1])
for line in blast:
line = line.split()
if line[1] in dic:
print('%s\t%s\t%s'%(line[0],line[1],dic[line[1]]))
else:
print('%s\t%s\tNA'%(line[0],line[1]))