53
|
1 from __future__ import division
|
49
|
2 from collections import defaultdict
|
0
|
3 import re
|
|
4 import argparse
|
|
5
|
|
6 parser = argparse.ArgumentParser()
|
39
|
7 parser.add_argument("--input",
|
49
|
8 help="The '7_V-REGION-mutation-and-AA-change-table' and '10_V-REGION-mutation-hotspots' merged together, with an added 'best_match' annotation")
|
4
|
9 parser.add_argument("--genes", help="The genes available in the 'best_match' column")
|
73
|
10 parser.add_argument("--includefr1", help="Should the mutation/nucleotides in the FR1 region be included?")
|
0
|
11 parser.add_argument("--output", help="Output file")
|
|
12
|
|
13 args = parser.parse_args()
|
|
14
|
4
|
15 infile = args.input
|
|
16 genes = str(args.genes).split(",")
|
32
|
17 print "includefr1 =", args.includefr1
|
31
|
18 include_fr1 = True if args.includefr1 == "yes" else False
|
39
|
19 outfile = args.output
|
4
|
20
|
|
21 genedic = dict()
|
0
|
22
|
|
23 mutationdic = dict()
|
|
24 mutationMatcher = re.compile("^(.)(\d+).(.),?(.)?(\d+)?.?(.)?(.?.?.?.?.?)?")
|
|
25 linecount = 0
|
|
26
|
4
|
27 IDIndex = 0
|
|
28 best_matchIndex = 0
|
|
29 fr1Index = 0
|
|
30 cdr1Index = 0
|
|
31 fr2Index = 0
|
|
32 cdr2Index = 0
|
|
33 fr3Index = 0
|
39
|
34 first = True
|
26
|
35 IDlist = []
|
|
36 mutationList = []
|
43
|
37 mutationListByID = {}
|
49
|
38 cdr1LengthDic = {}
|
|
39 cdr2LengthDic = {}
|
26
|
40
|
4
|
41 with open(infile, 'r') as i:
|
43
|
42 for line in i:
|
|
43 if first:
|
|
44 linesplt = line.split("\t")
|
|
45 IDIndex = linesplt.index("Sequence.ID")
|
|
46 best_matchIndex = linesplt.index("best_match")
|
|
47 fr1Index = linesplt.index("FR1.IMGT")
|
|
48 cdr1Index = linesplt.index("CDR1.IMGT")
|
|
49 fr2Index = linesplt.index("FR2.IMGT")
|
|
50 cdr2Index = linesplt.index("CDR2.IMGT")
|
|
51 fr3Index = linesplt.index("FR3.IMGT")
|
49
|
52 cdr1LengthIndex = linesplt.index("CDR1.IMGT.Nb.of.nucleotides")
|
|
53 cdr2LengthIndex = linesplt.index("CDR2.IMGT.Nb.of.nucleotides")
|
43
|
54 first = False
|
|
55 continue
|
|
56 linecount += 1
|
|
57 linesplt = line.split("\t")
|
|
58 ID = linesplt[IDIndex]
|
|
59 genedic[ID] = linesplt[best_matchIndex]
|
63
|
60 try:
|
|
61 mutationdic[ID + "_FR1"] = [mutationMatcher.match(x).groups() for x in linesplt[fr1Index].split("|") if x] if include_fr1 else []
|
|
62 mutationdic[ID + "_CDR1"] = [mutationMatcher.match(x).groups() for x in linesplt[cdr1Index].split("|") if x]
|
|
63 mutationdic[ID + "_FR2"] = [mutationMatcher.match(x).groups() for x in linesplt[fr2Index].split("|") if x]
|
|
64 mutationdic[ID + "_CDR2"] = [mutationMatcher.match(x).groups() for x in linesplt[cdr2Index].split("|") if x]
|
|
65 mutationdic[ID + "_FR2-CDR2"] = mutationdic[ID + "_FR2"] + mutationdic[ID + "_CDR2"]
|
|
66 mutationdic[ID + "_FR3"] = [mutationMatcher.match(x).groups() for x in linesplt[fr3Index].split("|") if x]
|
|
67 except:
|
|
68 print linesplt
|
|
69 print linecount
|
43
|
70 mutationList += mutationdic[ID + "_FR1"] + mutationdic[ID + "_CDR1"] + mutationdic[ID + "_FR2"] + mutationdic[ID + "_CDR2"] + mutationdic[ID + "_FR3"]
|
|
71 mutationListByID[ID] = mutationdic[ID + "_FR1"] + mutationdic[ID + "_CDR1"] + mutationdic[ID + "_FR2"] + mutationdic[ID + "_CDR2"] + mutationdic[ID + "_FR3"]
|
26
|
72
|
49
|
73 cdr1Length = linesplt[cdr1LengthIndex]
|
|
74 cdr2Length = linesplt[cdr2LengthIndex]
|
|
75
|
|
76 cdr1LengthDic[ID] = int(cdr1Length) / 3
|
|
77 cdr2LengthDic[ID] = int(cdr2Length) / 3
|
|
78
|
43
|
79 IDlist += [ID]
|
|
80
|
49
|
81 AALength = (int(max(mutationList, key=lambda i: int(i[4]) if i[4] else 0)[4]) + 1) # [4] is the position of the AA mutation, None if silent
|
|
82
|
|
83 AA_mutation = [0] * AALength
|
43
|
84 AA_mutation_empty = AA_mutation[:]
|
39
|
85
|
43
|
86 aa_mutations_by_id_file = outfile[:outfile.rindex("/")] + "/aa_id_mutations.txt"
|
|
87 with open(aa_mutations_by_id_file, 'w') as o:
|
|
88 for ID in mutationListByID.keys():
|
|
89 AA_mutation_for_ID = AA_mutation_empty[:]
|
|
90 for mutation in mutationListByID[ID]:
|
|
91 if mutation[4]:
|
|
92 AA_mutation[int(mutation[4])] += 1
|
|
93 AA_mutation_for_ID[int(mutation[4])] += 1
|
49
|
94 o.write(ID + "\t" + "\t".join([str(x) for x in AA_mutation_for_ID[1:]]) + "\n")
|
26
|
95
|
43
|
96
|
|
97
|
49
|
98 #absent AA stuff
|
|
99 absentAACDR1Dic = defaultdict(list)
|
|
100 absentAACDR1Dic[5] = range(29,36)
|
|
101 absentAACDR1Dic[6] = range(29,35)
|
|
102 absentAACDR1Dic[7] = range(30,35)
|
|
103 absentAACDR1Dic[8] = range(30,34)
|
|
104 absentAACDR1Dic[9] = range(31,34)
|
|
105 absentAACDR1Dic[10] = range(31,33)
|
|
106 absentAACDR1Dic[11] = [32]
|
|
107
|
|
108 absentAACDR2Dic = defaultdict(list)
|
|
109 absentAACDR2Dic[0] = range(55,65)
|
|
110 absentAACDR2Dic[1] = range(56,65)
|
|
111 absentAACDR2Dic[2] = range(56,64)
|
|
112 absentAACDR2Dic[3] = range(57,64)
|
|
113 absentAACDR2Dic[4] = range(57,63)
|
|
114 absentAACDR2Dic[5] = range(58,63)
|
|
115 absentAACDR2Dic[6] = range(58,62)
|
|
116 absentAACDR2Dic[7] = range(59,62)
|
|
117 absentAACDR2Dic[8] = range(59,61)
|
|
118 absentAACDR2Dic[9] = [60]
|
|
119
|
|
120 absentAA = [len(IDlist)] * (AALength-1)
|
|
121 for k, cdr1Length in cdr1LengthDic.iteritems():
|
|
122 for c in absentAACDR1Dic[cdr1Length]:
|
|
123 absentAA[c] -= 1
|
|
124
|
|
125 for k, cdr2Length in cdr2LengthDic.iteritems():
|
|
126 for c in absentAACDR2Dic[cdr2Length]:
|
|
127 absentAA[c] -= 1
|
|
128
|
|
129
|
|
130 aa_mutations_by_id_file = outfile[:outfile.rindex("/")] + "/absent_aa_id.txt"
|
|
131 with open(aa_mutations_by_id_file, 'w') as o:
|
|
132 o.write("ID\tcdr1length\tcdr2length\t" + "\t".join([str(x) for x in range(1,AALength-1)]) + "\n")
|
|
133 for ID in IDlist:
|
|
134 absentAAbyID = [1] * (AALength-1)
|
|
135 cdr1Length = cdr1LengthDic[ID]
|
|
136 for c in absentAACDR1Dic[cdr1Length]:
|
|
137 absentAAbyID[c] -= 1
|
|
138
|
|
139 cdr2Length = cdr2LengthDic[ID]
|
|
140 for c in absentAACDR2Dic[cdr2Length]:
|
|
141 absentAAbyID[c] -= 1
|
|
142 o.write(ID + "\t" + str(cdr1Length) + "\t" + str(cdr2Length) + "\t" + "\t".join([str(x) for x in absentAAbyID]) + "\n")
|
|
143
|
|
144
|
26
|
145
|
|
146 aa_mutations_file = outfile[:outfile.rindex("/")] + "/aa_mutations.txt"
|
|
147 with open(aa_mutations_file, 'w') as o:
|
49
|
148 o.write("row.name\t" + "\t".join([str(x) for x in range(1, AALength-1)]) + "\n")
|
|
149 o.write("mutations.at.position\t" + "\t".join([str(x) for x in AA_mutation[1:]]) + "\n")
|
|
150 o.write("AA.at.position\t" + "\t".join([str(x) for x in absentAA]) + "\n")
|
39
|
151
|
0
|
152 if linecount == 0:
|
49
|
153 print "No data, exiting"
|
|
154 with open(outfile, 'w') as o:
|
|
155 o.write("RGYW (%)," + ("0,0,0\n" * len(genes)))
|
|
156 o.write("WRCY (%)," + ("0,0,0\n" * len(genes)))
|
|
157 o.write("WA (%)," + ("0,0,0\n" * len(genes)))
|
|
158 o.write("TW (%)," + ("0,0,0\n" * len(genes)))
|
|
159 import sys
|
39
|
160
|
49
|
161 sys.exit()
|
0
|
162
|
|
163 hotspotMatcher = re.compile("[actg]+,(\d+)-(\d+)\((.*)\)")
|
4
|
164 RGYWCount = {g: 0 for g in genes}
|
|
165 WRCYCount = {g: 0 for g in genes}
|
|
166 WACount = {g: 0 for g in genes}
|
|
167 TWCount = {g: 0 for g in genes}
|
0
|
168
|
4
|
169 IDIndex = 0
|
|
170 ataIndex = 0
|
|
171 tatIndex = 0
|
|
172 aggctatIndex = 0
|
|
173 atagcctIndex = 0
|
|
174 first = True
|
|
175 with open(infile, 'r') as i:
|
49
|
176 for line in i:
|
|
177 if first:
|
|
178 linesplt = line.split("\t")
|
|
179 ataIndex = linesplt.index("X.a.t.a")
|
|
180 tatIndex = linesplt.index("t.a.t.")
|
|
181 aggctatIndex = linesplt.index("X.a.g.g.c.t..a.t.")
|
|
182 atagcctIndex = linesplt.index("X.a.t..a.g.c.c.t.")
|
|
183 first = False
|
|
184 continue
|
|
185 linesplt = line.split("\t")
|
|
186 gene = linesplt[best_matchIndex]
|
|
187 ID = linesplt[IDIndex]
|
|
188 RGYW = [(int(x), int(y), z) for (x, y, z) in
|
|
189 [hotspotMatcher.match(x).groups() for x in linesplt[aggctatIndex].split("|") if x]]
|
|
190 WRCY = [(int(x), int(y), z) for (x, y, z) in
|
|
191 [hotspotMatcher.match(x).groups() for x in linesplt[atagcctIndex].split("|") if x]]
|
|
192 WA = [(int(x), int(y), z) for (x, y, z) in
|
|
193 [hotspotMatcher.match(x).groups() for x in linesplt[ataIndex].split("|") if x]]
|
|
194 TW = [(int(x), int(y), z) for (x, y, z) in
|
|
195 [hotspotMatcher.match(x).groups() for x in linesplt[tatIndex].split("|") if x]]
|
|
196 RGYWCount[ID], WRCYCount[ID], WACount[ID], TWCount[ID] = 0, 0, 0, 0
|
39
|
197
|
49
|
198 mutationList = (mutationdic[ID + "_FR1"] if include_fr1 else []) + mutationdic[ID + "_CDR1"] + mutationdic[
|
|
199 ID + "_FR2"] + mutationdic[ID + "_CDR2"] + mutationdic[ID + "_FR3"]
|
|
200 for mutation in mutationList:
|
|
201 frm, where, to, AAfrm, AAwhere, AAto, junk = mutation
|
|
202 mutation_in_RGYW = any([(start <= int(where) <= end) for (start, end, region) in RGYW])
|
|
203 mutation_in_WRCY = any([(start <= int(where) <= end) for (start, end, region) in WRCY])
|
|
204 mutation_in_WA = any([(start <= int(where) <= end) for (start, end, region) in WA])
|
|
205 mutation_in_TW = any([(start <= int(where) <= end) for (start, end, region) in TW])
|
39
|
206
|
49
|
207 in_how_many_motifs = sum([mutation_in_RGYW, mutation_in_WRCY, mutation_in_WA, mutation_in_TW])
|
39
|
208
|
49
|
209 if in_how_many_motifs > 0:
|
|
210 RGYWCount[ID] += (1.0 * int(mutation_in_RGYW)) / in_how_many_motifs
|
|
211 WRCYCount[ID] += (1.0 * int(mutation_in_WRCY)) / in_how_many_motifs
|
|
212 WACount[ID] += (1.0 * int(mutation_in_WA)) / in_how_many_motifs
|
|
213 TWCount[ID] += (1.0 * int(mutation_in_TW)) / in_how_many_motifs
|
0
|
214
|
53
|
215
|
|
216 def mean(lst):
|
|
217 return (float(sum(lst)) / len(lst)) if len(lst) > 0 else 0.0
|
|
218
|
|
219
|
|
220 def median(lst):
|
|
221 lst = sorted(lst)
|
|
222 l = len(lst)
|
|
223 if l == 0:
|
|
224 return 0
|
|
225 if l == 1:
|
|
226 return lst[0]
|
|
227
|
|
228 l = int(l / 2)
|
|
229
|
|
230 if len(lst) % 2 == 0:
|
|
231 return float(lst[l] + lst[(l - 1)]) / 2.0
|
|
232 else:
|
|
233 return lst[l]
|
|
234
|
|
235 funcs = {"mean": mean, "median": median, "sum": sum}
|
|
236
|
4
|
237 directory = outfile[:outfile.rfind("/") + 1]
|
22
|
238 value = 0
|
4
|
239 valuedic = dict()
|
53
|
240
|
|
241 for fname in funcs.keys():
|
|
242 for gene in genes:
|
|
243 with open(directory + gene + "_" + fname + "_value.txt", 'r') as v:
|
|
244 valuedic[gene + "_" + fname] = float(v.readlines()[0].rstrip())
|
|
245 with open(directory + "all_" + fname + "_value.txt", 'r') as v:
|
|
246 valuedic["total_" + fname] = float(v.readlines()[0].rstrip())
|
|
247
|
78
|
248
|
53
|
249 def get_xyz(lst, gene, f, fname):
|
|
250 x = int(round(f(lst)))
|
|
251 y = valuedic[gene + "_" + fname]
|
|
252 z = str(round(x / float(valuedic[gene + "_" + fname]) * 100, 1)) if valuedic[gene + "_" + fname] != 0 else "0"
|
|
253 return (str(x), str(y), z)
|
4
|
254
|
|
255 dic = {"RGYW": RGYWCount, "WRCY": WRCYCount, "WA": WACount, "TW": TWCount}
|
|
256 arr = ["RGYW", "WRCY", "WA", "TW"]
|
53
|
257
|
|
258 for fname in funcs.keys():
|
|
259 func = funcs[fname]
|
|
260 foutfile = outfile[:outfile.rindex("/")] + "/hotspot_analysis_" + fname + ".txt"
|
|
261 with open(foutfile, 'w') as o:
|
|
262 for typ in arr:
|
|
263 o.write(typ + " (%)")
|
|
264 curr = dic[typ]
|
|
265 for gene in genes:
|
78
|
266 geneMatcher = re.compile("^" + gene + ".*")
|
53
|
267 if valuedic[gene + "_" + fname] is 0:
|
|
268 o.write(",0,0,0")
|
|
269 else:
|
|
270 x, y, z = get_xyz([curr[x] for x in [y for y, z in genedic.iteritems() if geneMatcher.match(z)]], gene, func, fname)
|
|
271 o.write("," + x + "," + y + "," + z)
|
|
272 # for total
|
|
273 x, y, z = get_xyz([y for x, y in curr.iteritems()], "total", func, fname)
|
|
274 o.write("," + x + "," + y + "," + z + "\n")
|
21
|
275
|
|
276
|
39
|
277 # for testing
|
21
|
278 seq_motif_file = outfile[:outfile.rindex("/")] + "/motif_per_seq.txt"
|
|
279 with open(seq_motif_file, 'w') as o:
|
49
|
280 o.write("ID\tRGYWC\tWRCY\tWA\tTW\n")
|
|
281 for ID in IDlist:
|
53
|
282 o.write(ID + "\t" + str(round(RGYWCount[ID], 2)) + "\t" + str(round(WRCYCount[ID], 2)) + "\t" + str(round(WACount[ID], 2)) + "\t" + str(round(TWCount[ID], 2)) + "\n")
|