-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathNeoClass.py
126 lines (110 loc) · 3.53 KB
/
NeoClass.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
#!/usr/bin/env python
'''
@author: Ryan Schenck, [email protected]
Contributions from: Eszter Lakatos
Adapted from Marta Luksza (see RecognitionPotential.md)
'''
class Neoantigen(object):
'''
classdocs
'''
L = 1. # default concentration of peptides
M = 1. # default concentration of mutant peptides
W = 1. # default concentration of wildtype peptides
WEPS = 0.0003
WTCAP = float("inf")
HYDROPHOBIC_RESIDUES = "AILMFWYV"
WEIRD_RESIDUES = "CGP"
AGGR = "MAX"
KDnormalize = 1
AGGRnum = float("inf")
@staticmethod
def residueChangeClass(res1, res2):
code = ""
if res1 in Neoantigen.HYDROPHOBIC_RESIDUES:
code += "H"
elif res2 in Neoantigen.WEIRD_RESIDUES:
code += "W"
else:
code += "N"
if res2 in Neoantigen.HYDROPHOBIC_RESIDUES:
code += "H"
elif res2 in Neoantigen.WEIRD_RESIDUES:
code += "W"
else:
code += "N"
return code
def __init__(self, params, indels):
'''
Constructor
'''
pparams = params
if len(params) == 9:
pparams.append("1")
[nid, mid, sample, wtPeptide, mtPeptide, allele, wtScore, mtScore, HLA, chopscore] = params[:10]
self.id = int(nid)
self.mid = mid
self.sample = sample
self.wtPeptide = wtPeptide
self.mtPeptide = mtPeptide
if indels==False:
try:
[res1, res2] = filter(lambda el: el[0] != el[1], zip(self.wtPeptide, self.mtPeptide))[0]
except TypeError:
[res1, res2] = list(filter(lambda el: el[0] != el[1], zip(self.wtPeptide, self.mtPeptide)))[0]
self.residueChange = Neoantigen.residueChangeClass(res1, res2)
self.position = list(filter(lambda el: el[1], map(lambda i: [i, self.mtPeptide[i] != self.wtPeptide[i]], range(0, len(self.wtPeptide)))))
self.position = self.position[0][0] + 1
else:
self.residueChange = "-"
self.position = "FS"
self.allele = allele
self.HLA = HLA
self.chopscore = int(chopscore)
self.potential = -1e10
try:
self.wtkD = min(Neoantigen.WTCAP, float(wtScore))
self.kD = float(mtScore)
self.setA()
except:
self.kD = Neoantigen.INF
self.wtkD = Neoantigen.INF
self.A = 1.
self.expr = None
if len(params) == 11:
self.expr = params[10]
def getSampleName(self):
return self.sample
def correctWT(self):
'''
Corrects large wildtype kD dissociation constants
'''
kd = self.wtkD
prb = Neoantigen.W / (Neoantigen.W + kd)
pru = kd / (Neoantigen.W + kd)
eps = Neoantigen.WEPS
prb += eps
pru += eps
z = 1 + 2 * eps
prb /= z
pru /= z
return pru / prb
def getWeight(self):
'''
Returns 0 for neoantigens that mutated from a non-hydrophobic residues on position 2 or 9;
these are excluded from analysis. Returns 1 for all other neoantigens
'''
w = 1
if self.residueChange[0] != "H" and (self.position == 2 or self.position == 9):
w = 0
return w
def setA(self):
'''
Computes MHC amplitude A
'''
self.A = Neoantigen.M / self.kD * self.correctWT()
def getA(self):
'''
Return MHC amplitude A
'''
return self.A