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