forked from edamontology/edam-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edam_stand_alone_importer.py
185 lines (164 loc) · 6.81 KB
/
edam_stand_alone_importer.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
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
import json
import tempfile
try:
from urllib2 import urlopen
except Exception:
from urllib.request import urlopen
import os.path
import os.path
tsv_url = "https://raw.githubusercontent.com/edamontology/edamontology/main/releases/%s.tsv"
tsv_file = tempfile.gettempdir() + "/%s.tsv"
def build_trees_from_tsv(tsv_file_path, encompass_deprecated_terms=False):
tsv_file = open(tsv_file_path, 'r')
first = True
terms = {}
detailed_terms = {}
roots = {}
uri_col = -1
label_col = -1
definition_col = -1
obsolete_col = -1
parents_col = -1
synonyms_col = -1
exact_synonyms_col = -1
narrow_synonyms_col = -1
related_synonyms_col = -1
broad_synonyms_col = -1
comment_col = -1
column_count = -1
prev_line = ""
row_id = 0
term = {
'uri': "http://www.w3.org/2002/07/owl#Thing",
'name': "owl#Thing",
'children': [],
}
terms[term['uri']] = term
roots[term['uri']] = term
for line in tsv_file:
row_id += 1
line = prev_line + line
term_tsv = line.split('\t')
if first:
column_count = len(term_tsv)
# find in which column are the information we want
for idx, name in enumerate(term_tsv):
if name == "Class ID":
uri_col = idx
elif name == "Preferred Label":
label_col = idx
elif name == "http://www.geneontology.org/formats/oboInOwl#hasDefinition":
definition_col = idx
elif name == "Obsolete":
obsolete_col = idx
elif name == "Parents":
parents_col = idx
elif name == "Synonyms":
synonyms_col = idx
elif name == "http://www.geneontology.org/formats/oboInOwl#comment":
comment_col = idx
elif name == "Synonyms":
synonyms_col = idx
elif name == "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym":
exact_synonyms_col = idx
elif name == "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym":
narrow_synonyms_col = idx
elif name == "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":
related_synonyms_col = idx
elif name == "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym":
broad_synonyms_col = idx
first = False
elif len(term_tsv) < column_count:
prev_line = line + '\n'
elif len(term_tsv) > column_count:
print("Row %i have too much column (uri:%s)" % (row_id, term_tsv[uri_col]))
prev_line = ""
else:
if encompass_deprecated_terms \
or term_tsv[obsolete_col] == "FALSE":
# get the term, or create it
term = terms.get(term_tsv[uri_col], None)
if term is None:
term = {
'uri': term_tsv[uri_col],
# 'name': term_tsv[label_col],
# 'definition': term_tsv[definition_col],
'children': [],
}
terms[term['uri']] = term
# else:
term['definition'] = term_tsv[definition_col]
term['name'] = term_tsv[label_col]
detailed_term = term.copy()
detailed_term['comment'] = term_tsv[comment_col]
detailed_term['synonyms'] = term_tsv[synonyms_col].split('|')
detailed_term['exact_synonyms'] = term_tsv[exact_synonyms_col].split('|')
detailed_term['narrow_synonyms'] = term_tsv[narrow_synonyms_col].split('|')
detailed_term['related_synonyms'] = term_tsv[related_synonyms_col].split('|')
detailed_term['broad_synonyms'] = term_tsv[broad_synonyms_col].split('|')
detailed_terms[term['uri']] = detailed_term
detailed_term['parents_uri'] = term_tsv[parents_col].split('|')
# get its parent or create it
for parent_uri in detailed_term['parents_uri']:
parent = terms.get(parent_uri, None)
if parent is None:
parent = {
'uri': parent_uri,
'children': [],
}
terms[parent_uri] = parent
roots[parent_uri] = parent
# append it as a child
parent['children'].append(term)
# as it has a parent, remove it from the roots
roots.pop(term['uri'], None)
elif term_tsv[obsolete_col] == "TRUE":
pass
else:
print("uri:%s has an invalid deprecated status: %s" % (term_tsv[uri_col], term_tsv[obsolete_col]))
prev_line = ""
# print row_id, len(terms)
for t in terms.values():
if len(t['children']) == 0:
del t['children']
for t in detailed_terms.values():
validated_parents_uri = []
for parent_uri in t['parents_uri']:
try:
_ = detailed_terms[parent_uri]
validated_parents_uri.append(parent_uri)
except KeyError:
pass
if len(validated_parents_uri) == 0:
del t['parents_uri']
else:
t['parents_uri'] = validated_parents_uri
return roots, detailed_terms
def get_term_id(term):
return term['uri'][term['uri'].rindex('/') + 1:]
def convert_tsv_for_edam_browser(tsv_file_name='EDAM', target_directory="/tmp/"):
if not os.path.isfile(tsv_file % tsv_file_name):
data = urlopen(tsv_url % tsv_file_name).read()
f = open(tsv_file % tsv_file_name, 'w')
f.write(data)
f.close()
target_file = target_directory + "edam_browser_tree.json"
roots, terms = build_trees_from_tsv(
tsv_file_path=tsv_file % tsv_file_name,
encompass_deprecated_terms=False,
)
json_file = open(target_file, 'w')
json_file.write(json.dumps(roots['http://www.w3.org/2002/07/owl#Thing']))
for child in roots['http://www.w3.org/2002/07/owl#Thing']['children']:
if "#" not in child['uri']:
child_target_file = target_file[:-4] + get_term_id(child) + ".json"
json_file = open(child_target_file, 'w')
json_file.write(json.dumps(child))
for term in terms.values():
term = term.copy()
try:
del term['children']
except KeyError:
pass
json_file = open(target_directory + "edam_browser_leaf.%s.json" % get_term_id(term), 'w')
json_file.write(json.dumps(term))