-
Notifications
You must be signed in to change notification settings - Fork 2
/
directory.py
executable file
·357 lines (314 loc) · 16.8 KB
/
directory.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
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
# vim:ts=4:sw=4:tw=0:sts=4:et
import logging as log
import os.path
import time
import molgenis.client
import networkx as nx
from diskcache import Cache
class Directory:
def __init__(self, package='eu_bbmri_eric', purgeCaches=[], debug=False, pp=None, username=None, password=None):
self.__pp = pp
self.__package = package
log.debug('Checking data in package: ' + package)
cache_dir = 'data-check-cache/directory'
if not os.path.exists(cache_dir):
os.makedirs(cache_dir)
cache = Cache(cache_dir)
if 'directory' in purgeCaches:
cache.clear()
self.__directoryURL = "https://directory.bbmri-eric.eu/api/"
self.__directoryURL = "https://directory-backend.molgenis.net/"
log.info('Retrieving directory content from ' + self.__directoryURL)
session = molgenis.client.Session(self.__directoryURL)
if username is not None and password is not None:
log.info("Logging in to MOLGENIS with a user account.")
log.debug('username: ' + username)
log.debug('password: ' + password)
session.login(username, password)
log.info(' ... retrieving biobanks')
if 'biobanks' in cache:
self.biobanks = cache['biobanks']
else:
start_time = time.perf_counter()
# TODO: remove exception handling once BBMRI.uk staging has been fixed
try:
self.biobanks = session.get(self.__package + "_biobanks", expand='contact,collections,country,capabilities')
except:
log.warning("Using work-around for inconsistence in the database structure.")
self.biobanks = session.get(self.__package + "_biobanks", expand='contact,collections,country')
cache['biobanks'] = self.biobanks
end_time = time.perf_counter()
log.info(' ... retrieved biobanks in ' + "%0.3f" % (end_time-start_time) + 's')
log.info(' ... retrieving collections')
if 'collections' in cache:
self.collections = cache['collections']
else:
start_time = time.perf_counter()
self.collections = session.get(self.__package + "_collections", expand='biobank,contact,network,parent_collection,sub_collections,type,materials,order_of_magnitude,data_categories,diagnosis_available,imaging_modality,image_dataset_type')
#self.collections = session.get(self.__package + "_collections", num=2000, expand=[])
cache['collections'] = self.collections
end_time = time.perf_counter()
if debug and self.__pp is not None:
for c in self.collections:
pp.pprint(c)
log.info(' ... retrieved collections in ' + "%0.3f" % (end_time-start_time) + 's')
log.info(' ... retrieving contacts')
if 'contacts' in cache:
self.contacts = cache['contacts']
else:
start_time = time.perf_counter()
self.contacts = session.get(self.__package + "_persons", num=2000, expand='biobanks,collections,country')
cache['contacts'] = self.contacts
end_time = time.perf_counter()
log.info(' ... retrieved contacts in ' + "%0.3f" % (end_time-start_time) + 's')
log.info(' ... retrieving networks')
if 'networks' in cache:
self.networks = cache['networks']
else:
start_time = time.perf_counter()
self.networks = session.get(self.__package + "_networks", num=2000, expand='contact')
cache['networks'] = self.networks
end_time = time.perf_counter()
log.info(' ... retrieved networks in ' + "%0.3f" % (end_time-start_time) + 's')
log.info(' ... all entities retrieved')
if 'facts' in cache:
self.facts = cache['facts']
else:
start_time = time.perf_counter()
self.facts = session.get(self.__package + "_facts")
cache['facts'] = self.facts
end_time = time.perf_counter()
log.info(' ... retrieved facts in ' + "%0.3f" % (end_time-start_time) + 's')
log.info(' ... all entities retrieved')
self.contactHashmap = {}
log.info('Processing directory data')
# Graph containing only biobanks and collections
self.directoryGraph = nx.DiGraph()
# DAG containing only biobanks and collections
self.directoryCollectionsDAG = nx.DiGraph()
# Weighted graph linking contacts to biobanks/collections/networks
self.contactGraph = nx.DiGraph()
# Graph linking networks to biobanks/collections
self.networkGraph = nx.DiGraph()
for c in self.contacts:
if self.contactGraph.has_node(c['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found in contactGraph: ' + c['id'])
# XXX temporary hack -- adding contactID prefix
#self.contactGraph.add_node(c['id'], data=c)
self.contactGraph.add_node('contactID:'+c['id'], data=c)
self.contactHashmap[c['id']] = c
for b in self.biobanks:
if self.directoryGraph.has_node(b['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found in directoryGraph: ' + b['id'])
self.directoryGraph.add_node(b['id'], data=b)
self.directoryCollectionsDAG.add_node(b['id'], data=b)
if self.contactGraph.has_node(b['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found in contactGraph: ' + b['id'])
self.contactGraph.add_node(b['id'], data=b)
if self.networkGraph.has_node(b['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found in networkGraph: ' + b['id'])
self.networkGraph.add_node(b['id'], data=b)
for c in self.collections:
if self.directoryGraph.has_node(c['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found: ' + c['id'])
self.directoryGraph.add_node(c['id'], data=c)
self.directoryCollectionsDAG.add_node(c['id'], data=c)
if self.contactGraph.has_node(c['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found in contactGraph: ' + c['id'])
self.contactGraph.add_node(c['id'], data=c)
if self.networkGraph.has_node(c['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found in networkGraph: ' + c['id'])
self.networkGraph.add_node(c['id'], data=c)
for n in self.networks:
if self.contactGraph.has_node(n['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found in contactGraph: ' + n['id'])
self.contactGraph.add_node(n['id'], data=n)
if self.networkGraph.has_node(n['id']):
raise Exception('DirectoryStructure', 'Conflicting ID found in networkGraph: ' + n['id'])
self.networkGraph.add_node(n['id'], data=n)
# check forward pointers from biobanks
for b in self.biobanks:
for c in b['collections']:
if not self.directoryGraph.has_node(c['id']):
raise Exception('DirectoryStructure', 'Biobank refers non-existent collection ID: ' + c['id'])
# add biobank contact and network edges
for b in self.biobanks:
if 'contact' in b:
self.contactGraph.add_edge(b['id'],'contactID:'+b['contact']['id'])
if 'networks' in c:
for n in c['networks']:
self.networkGraph.add_edge(b['id'], n['id'])
# now we have all the collections created and checked duplicates, so we create edges
for c in self.collections:
if 'parent_collection' in c:
# some child collection
self.directoryGraph.add_edge(c['id'], c['parent_collection']['id'])
else:
# some of root collections of a biobank
# we add both edges as we can't extract this information from the biobank level (it contains pointers to all the child collections)
self.directoryGraph.add_edge(c['id'], c['biobank']['id'])
self.directoryGraph.add_edge(c['biobank']['id'], c['id'])
self.directoryCollectionsDAG.add_edge(c['biobank']['id'], c['id'])
if 'sub_collections' in c:
# some of root collections of a biobank
for sb in c['sub_collections']:
self.directoryGraph.add_edge(c['id'], sb['id'])
self.directoryCollectionsDAG.add_edge(c['id'], sb['id'])
if 'contact' in c:
self.contactGraph.add_edge(c['id'],'contactID:'+c['contact']['id'])
if 'networks' in c:
for n in c['networks']:
self.networkGraph.add_edge(c['id'], n['id'])
# processing network edges
for n in self.networks:
if 'biobanks' in n:
for b in n['biobanks']:
self.networkGraph.add_edge(n['id'], b['id'])
# TODO remove once the datamodel is fixed
if 'contacts' in n:
for c in n['contacts']:
self.contactGraph.add_edge(n['id'], 'contactID:'+c['id'])
if 'contact' in n:
self.contactGraph.add_edge(n['id'], 'contactID:'+n['contact']['id'])
if 'collections' in n:
for c in n['collections']:
self.networkGraph.add_edge(n['id'], c['id'])
# processing edges from contacts
for c in self.contacts:
if 'biobanks' in c:
for b in c['biobanks']:
self.contactGraph.add_edge('contactID:'+c['id'], b['id'])
if 'collections' in c:
for coll in c['collections']:
self.contactGraph.add_edge('contactID:'+c['id'], coll['id'])
if 'networks' in c:
for n in c['networks']:
self.contactGraph.add_edge('contactID:'+c['id'], n['id'])
log.info('Checks of directory data as graphs')
# now we check if all the edges in the graph are in both directions
for e in self.directoryGraph.edges():
if not self.directoryGraph.has_edge(e[1],e[0]):
#raise Exception('DirectoryStructure', 'directoryGraph: Missing edge: ' + e[1] + ' to ' + e[0])
log.warning('DirectoryStructure - directoryGraph: Missing edge: ' + e[1] + ' to ' + e[0])
self.directoryGraph.add_edge(e[1],e[0])
for e in self.contactGraph.edges():
if not self.contactGraph.has_edge(e[1],e[0]):
#raise Exception('DirectoryStructure', 'contactGraph: Missing edge: ' + e[1] + ' to ' + e[0])
log.warning('DirectoryStructure - contactGraph: Missing edge: ' + e[1] + ' to ' + e[0])
self.contactGraph.add_edge(e[1],e[0])
for e in self.networkGraph.edges():
if not self.networkGraph.has_edge(e[1],e[0]):
#raise Exception('DirectoryStructure', 'networkGraph: Missing edge: ' + e[1] + ' to ' + e[0])
log.warning('DirectoryStructure - networkGraph: Missing edge: ' + e[1] + ' to ' + e[0])
self.networkGraph.add_edge(e[1],e[0])
# now make graphs immutable
nx.freeze(self.directoryGraph)
nx.freeze(self.directoryCollectionsDAG)
nx.freeze(self.contactGraph)
nx.freeze(self.networkGraph)
# we check that DAG is indeed DAG :-)
if not nx.algorithms.dag.is_directed_acyclic_graph(self.directoryCollectionsDAG):
raise Exception('DirectoryStructure', 'Collection DAG is not DAG')
log.info('Directory structure initialized')
self.__orphacodesmapper = None
def setOrphaCodesMapper(self, o):
self.__orphacodesmapper = o
def issetOrphaCodesMapper(self) -> bool:
if self.__orphacodesmapper is not None:
return True
else:
return False
def getOrphaCodesMapper(self):
return self.__orphacodesmapper
def getBiobanks(self):
return self.biobanks
def getBiobankById(self, biobankId : str):
for b in self.biobanks:
if b['id'] == biobankId:
return b
def getBiobanksCount(self):
return len(self.biobanks)
def getBiobankNN(self, biobankID : str):
# TODO: handle IARC!
#data = nx.get_node_attributes(self.directoryGraph, 'data')
#if self.pp is not None:
#pp.pprint(data)
#biobank = data[biobankID]
biobank = self.directoryGraph.nodes[biobankID]['data']
return biobank['country']['id']
def getCollections(self):
return self.collections
def getCollectionById(self, collectionId : str):
for c in self.collections:
if c['id'] == collectionId:
return c
def getCollectionsCount(self):
return len(self.collections)
def getCollectionBiobankId(self, collectionID : str):
collection = self.directoryGraph.nodes[collectionID]['data']
return collection['biobank']['id']
def getCollectionContact(self, collectionID : str):
collection = self.directoryGraph.nodes[collectionID]['data']
return self.contactHashmap[collection['contact']['id']]
def isTopLevelCollection(self, collectionID : str):
collection = self.directoryGraph.nodes[collectionID]['data']
return not 'parent_collection' in collection
def isCountableCollection(self, collectionID : str, metric : str):
assert metric == 'number_of_donors' or metric == 'size'
# note that this is intentionally not implemented for OoM - since OoM is a required parameter and thus any child collection would be double-counted
collection = self.directoryGraph.nodes[collectionID]['data']
if not (metric in collection and isinstance(collection[metric], int)):
return False
else:
if not 'parent_collection' in collection:
return True
else:
parent = self.getCollectionById(collection['parent_collection']['id'])
parent_dist = 1
while parent is not None:
if metric in parent and isinstance(parent[metric], int):
log.debug(f'Collection {collectionID} is not countable as it has countable parent {parent["id"]} (distance {parent_dist}) for metric {metric}.')
return False
if 'parent_collection' in parent:
parent = self.getCollectionById(parent['parent_collection']['id'])
parent_dist += 1
else:
if parent_dist > 1:
log.debug(f'Detected collection {collectionID} deeper than 1 from {parent["id"]} (distance {parent_dist}) for metric {metric}.')
parent = None
return True
def getCollectionNN(self, collectionID):
# TODO: handle IARC!
return self.getBiobankNN(self.getCollectionBiobankId(collectionID))
# return the whole subgraph including the biobank itself
def getGraphBiobankCollectionsFromBiobank(self, biobankID : str):
return self.directoryCollectionsDAG.subgraph(nx.algorithms.dag.descendants(self.directoryCollectionsDAG, biobankID).union({biobankID}))
# return the whole subgraph including some collection
def getGraphBiobankCollectionsFromCollection(self, collectionID : str):
return self.directoryCollectionsDAG.subgraph(nx.algorithms.dag.ancestors(self.directoryCollectionsDAG, collectionID).union(nx.algorithms.dag.descendants(self.directoryCollectionsDAG, collectionID)).union({collectionID}))
def getCollectionsDescendants(self, collectionID : str):
return nx.algorithms.dag.descendants(self.directoryCollectionsDAG, collectionID)
def getContacts(self):
return self.contacts
def getContact(self, contactID : str):
return self.contactHashmap[contactID]
def getContactNN(self, contactID : str):
# TODO: handle IARC!
return self.contactHashmap[contactID]['country']['id']
def getNetworks(self):
return self.networks
def getFacts(self):
return self.facts
def getNetworkNN(self, networkID : str):
# TODO: review handling of IARC/EU/global collections
network = self.networkGraph.nodes[networkID]['data']
NN = ""
if 'country' in network:
NN = network['country']['id']
elif 'contact' in network:
NN = self.getContactNN(network['contact']['id'])
else:
NN = "EU"
return NN
def getListOfEntityAttributeIds(entity, key : str):
return [ element['id'] for element in entity[key] ] if key in entity else []