This repository has been archived by the owner on Jan 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget1000Data.py
176 lines (147 loc) · 5.5 KB
/
get1000Data.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
import threading
def getFileNames(filename):
nameList = list()
nameFile = open("./var/" + filename, "r")
while True:
line = nameFile.readline()
if not line: break
nameList.append(line.strip())
nameFile.close()
return nameList
def containOne(chrName):
for ch in ["chrX", "chrY", "chrM"]:
if ch == chrName: return True
else: return False
def getSegmentDiploidHugo():
ans = list()
openFileList = getFileNames("cnvSegmentsDiploidBeta.txt")
for openFile in openFileList:
thisFile = open("../1000Gene/cnvSegmentsDiploidBeta/" + openFile, "r")
while True:
line = thisFile.readline()
if not line: break
elif line[0] in ["#", "\n", ">"]: continue
line = line.split("\t")
if containOne(line[0]): continue
if line[9] == '': continue
hugo = line[9].split(";")
for gene in hugo:
if gene not in ans: ans.append(gene)
thisFile.close()
ans.sort()
return ans
def countSegmentDiploidHugo():
ans = dict()
openFileList = getFileNames("cnvSegmentsDiploidBeta.txt")
for openFile in openFileList:
thisFile = open("../1000Gene/cnvSegmentsDiploidBeta/" + openFile, "r")
while True:
line = thisFile.readline()
if not line: break
elif line[0] in ["#", "\n", ">"]: continue
line = line.split("\t")
if containOne(line[0]): continue
if line[9] == "": continue
hugo = line[9].split(";")
val = (line[5], line[6])
for gene in hugo:
if gene not in ans: ans[gene] = dict()
if val not in ans[gene]: ans[gene][val] = 1
else: ans[gene][val] += 1
thisFile.close()
return ans
def getSegmentNondiploidHugo():
ans = list()
openFileList = getFileNames("cnvSegmentsNondiploidBeta.txt")
for openFile in openFileList:
thisFile = open("../1000Gene/cnvSegmentsNondiploidBeta/" + openFile, "r")
while True:
line = thisFile.readline()
if not line: break
elif line[0] in ["#", "\n", ">"]: continue
line = line.split("\t")
if containOne(line[0]): continue
if line[9] == '': continue
hugo = line[9].split(";")
for gene in hugo:
if gene not in ans: ans.append(gene)
thisFile.close()
ans.sort()
return ans
def getSegmentDiploidCNA():
ans = {"-":[], "=":[], "+":[]}
openFileList = getFileNames("cnvSegmentsDiploidBeta.txt")
for openFile in openFileList:
thisFile = open("../1000Gene/cnvSegmentsDiploidBeta/" + openFile, "r")
#getCalledCNV("../1000Gene/cnvSegmentsDiploidBeta/" + openFile, ans, 6); continue;
while True:
line = thisFile.readline()
if not line: break
elif line[0] in ["#", "\n", ">"]: continue
line = line.split("\t")
if containOne(line[0]): continue
if line[6] in ans: ans[line[6]].append(int(line[5]))
thisFile.close()
return ans
def onlyCNAFromSegmentDiploid():
ans = list()
openFileList = getFileNames("cnvSegmentsDiploidBeta.txt")
for openFile in openFileList:
thisFile = open("../1000Gene/cnvSegmentsDiploidBeta/" + openFile, "r")
while True:
line = thisFile.readline()
if not line: break
elif line[0] in ["#", "\n", ">"]: continue
line = line.split("\t")
if containOne(line[0]): continue
elif line[6] not in ["-", "=", "+"]: continue
ans.append(int(line[5]))
thisFile.close()
return ans
def getDetailsDiploidCNA():
ans = {"-":[], "=":[], "+":[]}
openFileList = getFileNames("cnvDetailsDiploidBeta.txt")
for openFile in openFileList:
thisFile = open("../1000Gene/cnvDetailsDiploidBeta/" + openFile, "r")
while True:
line = thisFile.readline()
if not line: break
elif line[0] in ["#", "\n", ">"]: continue
line = line.split("\t")
if containOne(line[0]): continue
if line[8] in ans: ans[line[8]].append(int(line[7]))
thisFile.close()
return ans
def onlyCNAFromDetailsDiploidCNA():
ans = list()
openFileList = getFileNames("cnvDetailsDiploidBeta.txt")
for openFile in openFileList:
thisFile = open("../1000Gene/cnvDetailsDiploidBeta/" + openFile, "r")
while True:
line = thisFile.readline()
if not line: break
elif line[0] in ["#", "\n", ">"]: continue
line = line.split("\t")
if containOne(line[0]): continue
if line[8] not in ["-", "=", "+"]: continue
ans.append(int(line[7]))
thisFile.close()
return ans
if __name__ == "__main__":
p = getSegmentDiploidHugo(); print(len(p), p[:10]);
p = getSegmentDiploidCNA()
print(len(p["-"]), len(p["="]), len(p["+"]))
for ch in ["-", "=", "+"]:
print(ch)
a1, a2 = min(p[ch]), max(p[ch])
for i in range(a1, a2+1): print(i, p[ch].count(i))
p = countSegmentDiploidHugo()
print(len(onlyCNAFromSegmentDiploid()))
print(sum(list(map(len, (p[gene] for gene in p)))))
exit()
p = getDetailsDiploidCNA()
print(len(p["-"]), len(p["="]), len(p["+"]))
for ch in ["-", "=", "+"]:
print(ch)
a1, a2 = min(p[ch]), max(p[ch])
for i in range(a1, a2+1): print(i, p[ch].count(i))