forked from ucscCancer/cgData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleMap.py
33 lines (25 loc) · 849 Bytes
/
SampleMap.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
import CGData
class SampleMap(CGData.CGDataSetObject):
DATA_FORM = CGData.TABLE
COLS = [
CGData.Column('node_name', str, primary_key=True),
CGData.Column('parent', str),
CGData.Column('child', str)
]
def __init__(self):
CGData.CGDataSetObject.__init__(self)
self.mhash = {}
def read(self, handle):
for line in handle:
tmp = line.rstrip().split('\t')
if not tmp[0] in self.sample_hash:
self.sample_hash[tmp[0]] = {}
if len(tmp) > 1:
self.sample_hash[tmp[0]][tmp[1]] = True
def get_children(self, sample):
out = {}
for a in self.sample_hash.get(sample, {}):
out[a] = True
for c in self.get_children(a):
out[c] = True
return out.keys()