-
Notifications
You must be signed in to change notification settings - Fork 11
/
taxMaps-taxtbl
executable file
·118 lines (82 loc) · 3.63 KB
/
taxMaps-taxtbl
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
#!/usr/bin/env python
################################################################################
### COPYRIGHT ##################################################################
# New York Genome Center
# SOFTWARE COPYRIGHT NOTICE AGREEMENT
# This software and its documentation are copyright (2014) by the New York
# Genome Center. All rights are reserved. This software is supplied without
# any warranty or guaranteed support whatsoever. The New York Genome Center
# cannot be responsible for its use, misuse, or functionality.
# Version: 0.2
# Author: Andre Corvelo
################################################################# /COPYRIGHT ###
################################################################################
################################################################################
### MODULES ####################################################################
from optparse import OptionParser
import sys
################################################################### /MODULES ###
################################################################################
################################################################################
### FUNCTIONS ##################################################################
def find_path(node, node_dict):
path = [node]
while path[-1] != '1':
path.append(node_dict[path[-1]][0])
return path[::-1]
################################################################# /FUNCTIONS ###
################################################################################
################################################################################
### ARGUMENTS,OPTIONS ##########################################################
parser = OptionParser(usage = "\n%prog -n names.dmp -t nodes.dmp", version = "%prog v0.2")
parser.add_option(
"-n",
metavar = "FILE",
type = "string",
dest = "names_file",
default = None,
help = "NCBI Taxonomy names.dmp file (Mandatory)"
)
parser.add_option(
"-t",
metavar = "FILE",
type = "string",
dest = "nodes_file",
default = None,
help = "NCBI Taxonomy nodes.dmp file (Mandatory)"
)
(opt, args) = parser.parse_args()
if not opt.names_file or not opt.nodes_file:
parser.print_help()
exit(-1)
######################################################### /ARGUMENTS,OPTIONS ###
################################################################################
################################################################################
### CONSTANTS ##################################################################
################################################################# /CONSTANTS ###
################################################################################
################################################################################
### MAIN #######################################################################
if __name__ == '__main__':
node_dict = {}
nodes_file = open(opt.nodes_file, 'r')
for line in nodes_file:
la = line.strip().split('\t')
node = la[0]
parent = la[2]
rank = la[4]
node_dict[node] = [parent, rank]
nodes_file.close()
names_file = open(opt.names_file, 'r')
for line in names_file:
la = line.strip().split('\t')
if la[6] == 'scientific name':
node = la[0]
sci_name = la[2]
node_dict[node].append(sci_name)
names_file.close()
for node in node_dict:
node_list = [node] + node_dict[node][1:] + [':'.join(find_path(node, node_dict))]
sys.stdout.write('\t'.join(node_list) + '\n')
###################################################################### /MAIN ###
################################################################################