This repository has been archived by the owner on Sep 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
entities.py
669 lines (534 loc) · 21.1 KB
/
entities.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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
"""Python interface to GenoLogics LIMS via its REST API.
Entities and their descriptors for the LIMS interface.
Per Kraulis, Science for Life Laboratory, Stockholm, Sweden.
Copyright (C) 2012 Per Kraulis
"""
import re
import urlparse
import datetime
import time
from xml.etree import ElementTree
_NSMAP = dict(
artgr='http://genologics.com/ri/artifactgroup',
art='http://genologics.com/ri/artifact',
cnf='http://genologics.com/ri/configuration',
con='http://genologics.com/ri/container',
ctp='http://genologics.com/ri/containertype',
exc='http://genologics.com/ri/exception',
file='http://genologics.com/ri/file',
lab='http://genologics.com/ri/lab',
perm='http://genologics.com/ri/permissions',
prc='http://genologics.com/ri/process',
prj='http://genologics.com/ri/project',
prop='http://genologics.com/ri/property',
prx='http://genologics.com/ri/processexecution',
ptp='http://genologics.com/ri/processtype',
res='http://genologics.com/ri/researcher',
rgt='http://genologics.com/ri/reagent',
ri='http://genologics.com/ri',
rtp='http://genologics.com/ri/reagenttype',
smp='http://genologics.com/ri/sample',
udf='http://genologics.com/ri/userdefined',
ver='http://genologics.com/ri/version')
for prefix, uri in _NSMAP.iteritems():
ElementTree._namespace_map[uri] = prefix
_NSPATTERN = re.compile(r'(\{)(.+?)(\})')
def nsmap(tag):
"Convert from normal XML-ish namespace tag to ElementTree variant."
parts = tag.split(':')
if len(parts) != 2:
raise ValueError("no namespace specifier in tag")
return "{%s}%s" % (_NSMAP[parts[0]], parts[1])
class BaseDescriptor(object):
"Abstract base descriptor for an instance attribute."
def __get__(self, instance, cls):
raise NotImplementedError
class TagDescriptor(BaseDescriptor):
"""Abstract base descriptor for an instance attribute
represented by an XML element.
"""
def __init__(self, tag):
self.tag = tag
class StringDescriptor(TagDescriptor):
"""An instance attribute containing a string value
represented by an XML element.
"""
def __get__(self, instance, cls):
instance.get()
node = self.get_node(instance)
if node is None:
return None
else:
return node.text
def __set__(self, instance, value):
node = self.get_node(instance)
if node is None:
raise AttributeError("no element '%s' to set" % self.tag)
else:
node.text = value
def get_node(self, instance):
if self.tag:
return instance.root.find(self.tag)
else:
return instance.root
class StringAttributeDescriptor(TagDescriptor):
"""An instance attribute containing a string value
represented by an XML attribute.
"""
def __get__(self, instance, cls):
instance.get()
return instance.root.attrib[self.tag]
class StringListDescriptor(TagDescriptor):
"""An instance attribute containing a list of strings
represented by multiple XML elements.
"""
def __get__(self, instance, cls):
instance.get()
result = []
for node in instance.root.findall(self.tag):
result.append(node.text)
return result
class StringDictionaryDescriptor(TagDescriptor):
"""An instance attribute containing a dictionary of string key/values
represented by a hierarchical XML element.
"""
def __get__(self, instance, cls):
instance.get()
result = dict()
node = instance.root.find(self.tag)
if node is not None:
for node2 in node.getchildren():
result[node2.tag] = node2.text
return result
class IntegerDescriptor(StringDescriptor):
"""An instance attribute containing an integer value
represented by an XMl element.
"""
def __get__(self, instance, cls):
instance.get()
node = self.get_node(instance)
if node is None:
return None
else:
return int(node.text)
class BooleanDescriptor(StringDescriptor):
"""An instance attribute containing a boolean value
represented by an XMl element.
"""
def __get__(self, instance, cls):
instance.get()
node = self.get_node(instance)
if node is None:
return None
else:
return node.text.lower() == 'true'
class UdfDictionary(object):
"Dictionary-like container of UDFs, optionally within a UDT."
def __init__(self, instance, udt=False):
self.instance = instance
self._udt = udt
self._update_elems()
self._prepare_lookup()
def get_udt(self):
if self._udt == True:
return None
else:
return self._udt
def set_udt(self, name):
assert isinstance(name, basestring)
if not self._udt:
raise AttributeError('cannot set name for a UDF dictionary')
self._udt = name
elem = self.instance.root.find(nsmap('udf:type'))
assert elem is not None
elem.set('name', name)
udt = property(get_udt, set_udt)
def _update_elems(self):
self._elems = []
if self._udt:
elem = self.instance.root.find(nsmap('udf:type'))
if elem is not None:
self._udt = elem.attrib['name']
self._elems = elem.findall(nsmap('udf:field'))
else:
tag = nsmap('udf:field')
for elem in self.instance.root.getchildren():
if elem.tag == tag:
self._elems.append(elem)
def _prepare_lookup(self):
self._lookup = dict()
for elem in self._elems:
type = elem.attrib['type'].lower()
value = elem.text
if not value:
value = None
elif type == 'numeric':
try:
value = int(value)
except ValueError:
value = float(value)
elif type == 'boolean':
value = value == 'true'
elif type == 'date':
value = datetime.date(*time.strptime(value, "%Y-%m-%d")[:3])
self._lookup[elem.attrib['name']] = value
def __getitem__(self, key):
return self._lookup[key]
def __setitem__(self, key, value):
self._lookup[key] = value
for node in self._elems:
if node.attrib['name'] != key: continue
type = node.attrib['type'].lower()
if value is None:
pass
elif type == 'string':
if not isinstance(value, basestring):
raise TypeError('String UDF requires str or unicode value')
elif type == 'text':
if not isinstance(value, basestring):
raise TypeError('Text UDF requires str or unicode value')
elif type == 'numeric':
if not isinstance(value, (int, float)):
raise TypeError('Numeric UDF requires int or float value')
value = str(value)
elif type == 'boolean':
if not isinstance(value, bool):
raise TypeError('Boolean UDF requires bool value')
value = value and 'True' or 'False'
elif type == 'date':
if not isinstance(value, datetime.date): # Too restrictive?
raise TypeError('Date UDF requires datetime.date value')
value = str(value)
else:
raise NotImplemented("UDF type '%s'" % type)
if not isinstance(value, unicode):
value = unicode(value, 'UTF-8')
node.text = value
break
else: # Create new entry; heuristics for type
if isinstance(value, basestring):
type = '\n' in value and 'Text' or 'String'
elif isinstance(value, (int, float)):
type = 'Numeric'
elif isinstance(value, bool):
type = 'Boolean'
value = value and 'True' or 'False'
elif isinstance(value, datetime.date):
type = 'Date'
value = str(value)
else:
raise NotImplementedError("Cannot handle value of type '%s'"
" for UDF" % type(value))
if self._udt:
root = self._instance.root.find(nsmap('udf:type'))
else:
root = self._instance.root
elem = ElementTree.SubElement(root,
nsmap('udf:field'),
type=type,
name=key)
if not isinstance(value, unicode):
value = unicode(value, 'UTF-8')
elem.text = value
def __delitem__(self, key):
del self._lookup[key]
for node in self._elems:
if node.attrib['name'] == key:
self._instance.root.remove(node)
break
def items(self):
return self._lookup.items()
def clear(self):
for elem in self._elems:
self.instance.root.remove(elem)
self._update_elems()
class UdfDictionaryDescriptor(BaseDescriptor):
"""An instance attribute containing a dictionary of UDF values
represented by multiple XML elements.
"""
_UDT = False
def __get__(self, instance, cls):
try:
return self.value
except AttributeError:
instance.get()
self.value = UdfDictionary(instance, udt=self._UDT)
return self.value
class UdtDictionaryDescriptor(UdfDictionaryDescriptor):
"""An instance attribute containing a dictionary of UDF values
in a UDT represented by multiple XML elements.
"""
_UDT = True
class PlacementDictionaryDescriptor(TagDescriptor):
"""An instance attribute containing a dictionary of locations
keys and artifact values represented by multiple XML elements.
"""
def __get__(self, instance, cls):
try:
return self.value
except AttributeError:
instance.get()
self.value = dict()
for node in instance.root.findall(self.tag):
key = node.find('value').text
self.value[key] = Artifact(instance.lims,uri=node.attrib['uri'])
return self.value
class ExternalidListDescriptor(BaseDescriptor):
"""An instance attribute yielding a list of tuples (id, uri) for
external identifiers represented by multiple XML elements.
"""
def __get__(self, instance, cls):
instance.get()
result = []
for node in instance.root.findall(nsmap('ri:externalid')):
result.append((node.attrib.get('id'), node.attrib.get('uri')))
return result
class EntityDescriptor(TagDescriptor):
"An instance attribute referencing another entity instance."
def __init__(self, tag, klass):
super(EntityDescriptor, self).__init__(tag)
self.klass = klass
def __get__(self, instance, cls):
instance.get()
node = instance.root.find(self.tag)
return self.klass(instance.lims, uri=node.attrib['uri'])
class EntityListDescriptor(EntityDescriptor):
"""An instance attribute yielding a list of entity instances
represented by multiple XML elements.
"""
def __get__(self, instance, cls):
instance.get()
result = []
for node in instance.root.findall(self.tag):
result.append(self.klass(instance.lims, uri=node.attrib['uri']))
return result
class DimensionDescriptor(TagDescriptor):
"""An instance attribute containing a dictionary specifying
the properties of a dimension of a container type.
"""
def __get__(self, instance, cls):
instance.get()
node = instance.root.find(self.tag)
return dict(is_alpha = node.find('is-alpha').text.lower() == 'true',
offset = int(node.find('offset').text),
size = int(node.find('size').text))
class LocationDescriptor(TagDescriptor):
"""An instance attribute containing a tuple (container, value)
specifying the location of an analyte in a container.
"""
def __get__(self, instance, cls):
instance.get()
node = instance.root.find(self.tag)
uri = node.find('container').attrib['uri']
return Container(instance.lims, uri=uri), node.find('value').text
class InputOutputMapList(BaseDescriptor):
"""An instance attribute yielding a list of tuples (input, output)
where each item is a dictionary, representing the input/output
maps of a Process instance.
"""
def __get__(self, instance, cls):
try:
return self.value
except AttributeError:
instance.get()
self.value = []
for node in instance.root.findall('input-output-map'):
input = self.get_dict(instance.lims, node.find('input'))
output = self.get_dict(instance.lims, node.find('output'))
self.value.append((input, output))
return self.value
def get_dict(self, lims, node):
if node is None: return None
result = dict()
for key in ['limsid', 'output-type', 'output-generation-type']:
try:
result[key] = node.attrib[key]
except KeyError:
pass
for uri in ['uri', 'post-process-uri']:
try:
result[uri] = Artifact(lims, uri=node.attrib[uri])
except KeyError:
pass
node = node.find('parent-process')
if node is not None:
result['parent-process'] = Process(lims, node.attrib['uri'])
return result
class Entity(object):
"Base class for the entities in the LIMS database."
_TAG = None
_URI = None
def __new__(cls, lims, uri=None, id=None):
assert uri or id
if not uri:
uri = lims.get_uri(cls._URI, id)
try:
return lims.cache[uri]
except KeyError:
return object.__new__(cls)
def __init__(self, lims, uri=None, id=None):
assert uri or id
if hasattr(self, 'lims'): return
if not uri:
uri = lims.get_uri(self._URI, id)
lims.cache[uri] = self
self.lims = lims
self._uri = uri
self.root = None
def __str__(self):
return "%s(%s)" % (self.__class__.__name__, self.id)
def __repr__(self):
return "%s(%s)" % (self.__class__.__name__, self.uri)
@property
def uri(self):
return self._uri
@property
def id(self):
"Return the LIMS id; obtained from the URI."
parts = urlparse.urlsplit(self.uri)
return parts.path.split('/')[-1]
def get(self, force=False):
"Get the XML data for this instance."
if not force and self.root is not None: return
self.root = self.lims.get(self.uri)
def put(self):
"Save this instance by doing PUT of its serialized XML."
data = self.lims.tostring(ElementTree.ElementTree(self.root))
self.lims.put(self.uri, data)
class Lab(Entity):
"Lab; container of researchers."
_URI = 'labs'
name = StringDescriptor('name')
billing_address = StringDictionaryDescriptor('billing-address')
shipping_address = StringDictionaryDescriptor('shipping-address')
udf = UdfDictionaryDescriptor()
udt = UdtDictionaryDescriptor()
externalids = ExternalidListDescriptor()
website = StringDescriptor('website')
class Researcher(Entity):
"Person; client scientist or lab personnel. Associated with a lab."
_URI = 'researchers'
first_name = StringDescriptor('first-name')
last_name = StringDescriptor('last-name')
phone = StringDescriptor('phone')
fax = StringDescriptor('fax')
email = StringDescriptor('email')
initials = StringDescriptor('initials')
lab = EntityDescriptor('lab', Lab)
udf = UdfDictionaryDescriptor()
udt = UdtDictionaryDescriptor()
externalids = ExternalidListDescriptor()
# credentials XXX
@property
def name(self):
return u"%s %s" % (self.first_name, self.last_name)
class Note(Entity):
"Note attached to a project or a sample."
content = StringDescriptor(None) # root element
class File(Entity):
"File attached to a project or a sample."
attached_to = StringDescriptor('attached-to')
content_location = StringDescriptor('content-location')
original_location = StringDescriptor('original-location')
is_published = BooleanDescriptor('is-published')
class Project(Entity):
"Project concerning a number of samples; associated with a researcher."
_URI = 'projects'
name = StringDescriptor('name')
open_date = StringDescriptor('open-date')
close_date = StringDescriptor('close-date')
invoice_date = StringDescriptor('invoice-date')
researcher = EntityDescriptor('researcher', Researcher)
udf = UdfDictionaryDescriptor()
udt = UdtDictionaryDescriptor()
notes = EntityListDescriptor('note', Note)
files = EntityListDescriptor(nsmap('file:file'), File)
externalids = ExternalidListDescriptor()
# permissions XXX
class Sample(Entity):
"Customer's sample to be analyzed; associated with a project."
_URI = 'samples'
name = StringDescriptor('name')
date_received = StringDescriptor('date-received')
date_completed = StringDescriptor('date-completed')
project = EntityDescriptor('project', Project)
submitter = EntityDescriptor('submitter', Researcher)
# artifact: defined below
udf = UdfDictionaryDescriptor()
udt = UdtDictionaryDescriptor()
notes = EntityListDescriptor('note', Note)
files = EntityListDescriptor(nsmap('file:file'), File)
externalids = ExternalidListDescriptor()
# biosource XXX
class Containertype(Entity):
"Type of container for analyte artifacts."
_TAG = 'container-type'
_URI = 'containertypes'
name = StringAttributeDescriptor('name')
calibrant_wells = StringListDescriptor('calibrant-well')
unavailable_wells = StringListDescriptor('unavailable-well')
x_dimension = DimensionDescriptor('x-dimension')
y_dimension = DimensionDescriptor('y-dimension')
class Container(Entity):
"Container for analyte artifacts."
_URI = 'containers'
name = StringDescriptor('name')
type = EntityDescriptor('type', Containertype)
occupied_wells = IntegerDescriptor('occupied-wells')
placements = PlacementDictionaryDescriptor('placement')
udf = UdfDictionaryDescriptor()
udt = UdtDictionaryDescriptor()
state = StringDescriptor('state')
def get_placements(self):
"""Get the dictionary of locations and artifacts
using the more efficient batch call."""
result = self.placements.copy()
self.lims.get_batch(result.values())
return result
class Processtype(Entity):
_TAG = 'process-type'
_URI = 'processtypes'
name = StringAttributeDescriptor('name')
# XXX
class Process(Entity):
"Process (instance of Processtype) executed producing ouputs from inputs."
_URI = 'processes'
type = EntityDescriptor('type', Processtype)
date_run = StringDescriptor('date-run')
technician = EntityDescriptor('technician', Researcher)
protocol_name = StringDescriptor('protocol-name')
input_output_maps = InputOutputMapList()
udf = UdfDictionaryDescriptor()
udt = UdtDictionaryDescriptor()
files = EntityListDescriptor(nsmap('file:file'), File)
# instrument XXX
# process_parameters XXX
class Artifact(Entity):
"Any process input or output; analyte or file."
_URI = 'artifacts'
name = StringDescriptor('name')
type = StringDescriptor('type')
output_type = StringDescriptor('output-type')
parent_process = EntityDescriptor('parent-process', Process)
volume = StringDescriptor('volume')
concentration = StringDescriptor('concentration')
qc_flag = StringDescriptor('qc-flag')
location = LocationDescriptor('location')
working_flag = BooleanDescriptor('working-flag')
samples = EntityListDescriptor('sample', Sample)
udf = UdfDictionaryDescriptor()
files = EntityListDescriptor(nsmap('file:file'), File)
# reagent_labels XXX
# artifact_flags XXX
# artifact_groups XXX
def get_state(self):
"Parse out the state value from the URI."
parts = urlparse.urlparse(self.uri)
params = urlparse.parse_qs(parts.query)
try:
return params['state'][0]
except (KeyError, IndexError):
return None
# XXX set_state ?
state = property(get_state)
Sample.artifact = EntityDescriptor('artifact', Artifact)