-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathVinaScoring.py
More file actions
424 lines (349 loc) · 14.8 KB
/
Copy pathVinaScoring.py
File metadata and controls
424 lines (349 loc) · 14.8 KB
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
import os
import numpy as np
import logging
from scipy import spatial
from scipy.spatial import cKDTree
from scipy.spatial.distance import cdist
polarTypes = np.array(['OA', 'OS', 'N', 'NS', 'NA', 'S', 'SA'])
nonPolarTypes = np.array(['C', 'A'])
autodockVinaAtomTypes = {'H': [1.0, False], 'HD': [1.0, True], 'HS': [1.0, True], 'C': [2.0, False], 'A': [2.0, False],
'N': [1.75, False], 'NA': [1.75, True], 'NS': [1.75, True], 'OA': [1.6, True],
'OS': [1.6, True],
'F': [1.545, False], 'Mg': [0.65, False], 'MG': [0.65, False], 'P': [2.1, False],
'SA': [2.0, True],
'S': [2.0, False], 'Cl': [2.045, False], 'CL': [2.045, False], 'Ca': [0.99, False],
'CA': [0.99, False],
'Mn': [0.65, False], 'MN': [0.65, False], 'Fe': [0.65, False], 'FE': [0.65, False],
'Zn': [0.74, False],
'ZN': [0.74, False], 'Br': [2.165, False], 'BR': [2.165, False], 'I': [2.36, False]}
autodockVinaTerms = np.array([-0.035579, -0.005156, 0.840245, -0.035069, -0.587439])
probElements = ['C', 'Br', 'F', 'Cl', 'I', 'OA', 'SA', 'N', 'P']
def _get_typing_dicts(hp_types_dat_path, typing_pdb_dat_path, autodock_atom_type_dat_path):
hp_lines = np.loadtxt(hp_types_dat_path, dtype=str, delimiter=',')
hp_types_dict = {str(i): {} for i in hp_lines[:, 0]}
for i1, i2, i3, i4 in hp_lines:
hp_types_dict[i1][i2] = (i3, i4)
### typing_pdb_dict maps to autodock atom type
typing_pdb_array = np.loadtxt(typing_pdb_dat_path, dtype=str, delimiter=',')
typing_pdb_dict = {str(i): {} for i in typing_pdb_array[:, 0]}
for resname, atom_name, atom_type in typing_pdb_array:
typing_pdb_dict[resname][atom_name] = atom_type
# resname_list = sorted(typing_pdb_dict.keys())
### cofactor is to find atom type for non protein cofactors
cofactor_match_dict = {'C': 'C', 'N': 'N', 'P': 'P', 'O': 'OA', 'S': 'SA', 'F': 'F', 'Cl': 'Cl', 'Br': 'Br',
'I': 'I'}
autodock_lines = np.loadtxt(autodock_atom_type_dat_path, dtype=str, delimiter=',')
autodock_types_dict = {str(i).strip(): {} for i in hp_lines[:, 0]}
for i1, i2, i3, i4 in hp_lines:
hp_types_dict[i1][i2] = (i3, i4)
for items in autodock_lines:
autodock_types_dict[items[0].strip()] = [float(items[1]) / 2.0, True if int(items[7]) else False]
return hp_types_dict, typing_pdb_dict, cofactor_match_dict, autodock_types_dict
def _pre_process_pdb(pdb_lines):
this_dir, this_filename = os.path.split(__file__)
types_dict, typing_pdb_dict, cofactor_match_dict, autodock_types_dict = \
_get_typing_dicts(os.path.join(this_dir, "data", "hp_types_dict.dat"),
os.path.join(this_dir, "data", "typing_from_pdb.dat"),
os.path.join(this_dir, "data", "autodock_atom_type_info.dat"))
polar_atoms = np.array(['OA', 'OS', 'N', 'NS', 'NA', 'S', 'SA'])
ali_atoms = np.array(['C', 'A'])
prot_types = []
hp_type = []
don_type = []
acc_type = []
prot_coord = []
### process heavy atom lines in pdb
clean_pdb_lines = [t for t in pdb_lines if
t[0:6] in ['ATOM ', 'HETATM'] and t[76:].strip() not in ['H', 'HD', 'HS']]
for ind, t in enumerate(clean_pdb_lines):
resname = t[17:20].strip()
atom_type = t[12:16].strip()
if atom_type == 'OXT': ### c terminal O is considered as OA
atom_type = 'O'
element_type = t[76:].strip()
x_coords = float(t[30:38].strip())
y_coords = float(t[38:46].strip())
z_coords = float(t[46:54].strip())
prot_coord.append([x_coords, y_coords, z_coords])
### prot_types is a list of autodock atom types for heavy atoms in pdb
if resname in typing_pdb_dict:
if atom_type in typing_pdb_dict[resname]:
prot_types.append(typing_pdb_dict[resname][atom_type])
else:
prot_types.append(cofactor_match_dict[element_type])
### hp_type is acceptor type for aliphatic atoms
#### don_type and acc_type is donor and acceptor type for polar atoms
if resname in types_dict and atom_type in types_dict[resname]:
if prot_types[ind] in ali_atoms:
hp_type.append(types_dict[resname][atom_type][0])
don_type.append('XXX')
acc_type.append('XXX')
elif prot_types[ind] in polar_atoms:
don_type.append(types_dict[resname][atom_type][0])
acc_type.append(types_dict[resname][atom_type][1])
hp_type.append('XXX')
else:
# print(t)
hp_type.append('UNK')
don_type.append('UNK')
acc_type.append('UNK')
prot_coord = np.array(prot_coord)
prot_types = np.array(prot_types)
hp_type = np.array(hp_type)
acc_type = np.array(acc_type)
don_type = np.array(don_type)
# if np.any(hp_type == 'UNK'):
# print(hp_type)
return prot_coord, prot_types, hp_type, acc_type, don_type, autodock_types_dict
def _pre_process_pdbqt(traj, truncation_length=0):
def _assign_hp(prot_coord, prot_types, hp_type, tree=None):
"""
"""
tree = cKDTree(prot_coord) if tree is None else tree
for ix in np.where(hp_type == 'UNK')[0]:
indx = np.array(tree.query_ball_point(prot_coord[ix], 2.0))
if prot_types[ix] not in polarTypes:
if np.any(np.in1d(prot_types[indx[indx != ix]], polarTypes)):
hp_type[ix] = 'NNP'
else:
hp_type[ix] = 'NP'
else:
hp_type[ix] = 'XXX'
return hp_type
def _assign_acc(prot_types, hp_type):
"""
Parameters
----------
prot_coord
prot_types
hp_type
Returns
-------
"""
for ix in np.where(hp_type == 'UNK')[0]:
if prot_types[ix] in ['OA', 'OS', 'SA', 'S']:
hp_type[ix] = 'P'
else:
hp_type[ix] = 'XXX'
return hp_type
def _assign_don(prot_coord, prot_types, hp_type, tree=None):
tree = cKDTree(prot_coord) if tree is None else tree
for ix in np.where(hp_type == 'UNK')[0]:
indx = np.array(tree.query_ball_point(prot_coord[ix], 2.0))
if prot_types[ix] in ['N', 'NS', 'NA']:
if len(indx[indx != ix]) > 2:
hp_type[ix] = 'NPP'
else:
hp_type[ix] = 'P'
else:
hp_type[ix] = 'XXX'
return hp_type
types_dict = autodockVinaAtomTypes
ali_atoms = {'C', 'A'}
hp_type = []
don_type = []
acc_type = []
prot_coord = traj.xyz[0] * 10
prot_tree = spatial.cKDTree(prot_coord)
prot_types = []
for i, atom in enumerate(traj.top.atoms):
prot_types.append(traj.adv_atom_types[i])
if atom.residue.name in types_dict.keys():
if atom.name in types_dict[atom.residue.name].keys():
if atom.pdbqt_name in ali_atoms:
hp_type.append(types_dict[atom.residue.name][atom.name][0])
don_type.append('XXX')
acc_type.append('XXX')
if atom.pdbqt_name in polarTypes:
don_type.append(types_dict[atom.residue.name][atom.name][0])
acc_type.append(types_dict[atom.residue.name][atom.name][1])
hp_type.append('XXX')
else:
hp_type.append('UNK')
don_type.append('UNK')
acc_type.append('UNK')
else:
hp_type.append('UNK')
don_type.append('UNK')
acc_type.append('UNK')
prot_types = np.array(prot_types)
hp_type = np.array(hp_type)
acc_type = np.array(acc_type)
don_type = np.array(don_type)
if np.any(hp_type == 'UNK'):
_assign_hp(prot_coord, prot_types, hp_type, prot_tree)
_assign_don(prot_coord, prot_types, don_type, prot_tree)
_assign_acc(prot_types, acc_type)
if truncation_length != 0:
return prot_types[:truncation_length], hp_type[:truncation_length], \
acc_type[:truncation_length], don_type[:truncation_length]
else:
return prot_types, hp_type, acc_type, don_type
def _gen_vina_type(atom_names, residue_names, elements,
# types_dict_typing_pdb_dict_cofactor_match_dict_autodock_types_dict
):
"""
Parameters
----------
pdb_lines
Returns
-------
prot_types, hp_type, acc_type, don_type
"""
this_dir, this_filename = os.path.split(__file__)
types_dict, typing_pdb_dict, cofactor_match_dict, autodock_types_dict = _get_typing_dicts(
os.path.join(this_dir, "data", "hp_types_dict.dat"),
os.path.join(this_dir, "data", "typing_from_pdb.dat"),
os.path.join(this_dir, "data", "autodock_atom_type_info.dat"))
polar_atoms = np.array(['OA', 'OS', 'N', 'NS', 'NA', 'S', 'SA'])
ali_atoms = np.array(['C', 'A'])
prot_types = []
hp_type = []
don_type = []
acc_type = []
### process heavy atom lines in pdb
for idx, atom_name, resname, element in zip(range(len(list(atom_names))), atom_names, residue_names, elements):
if atom_name == 'OXT': ### c terminal O is considered as OA
atom_name = 'O'
if resname in typing_pdb_dict:
if atom_name in typing_pdb_dict[resname]:
prot_types.append(typing_pdb_dict[resname][atom_name])
elif element in cofactor_match_dict:
prot_types.append(cofactor_match_dict[element])
else:
raise Exception("{} if not a supported in vina scoring element".format(element))
### hp_type is acceptor type for aliphatic atoms
#### don_type and acc_type is donor and acceptor type for polar atoms
if resname in types_dict:
if atom_name in types_dict[resname]:
if prot_types[idx] in ali_atoms:
hp_type.append(types_dict[resname][atom_name][0])
don_type.append('XXX')
acc_type.append('XXX')
elif prot_types[idx] in polar_atoms:
don_type.append(types_dict[resname][atom_name][0])
acc_type.append(types_dict[resname][atom_name][1])
hp_type.append('XXX')
else:
# print(t)
hp_type.append('UNK')
don_type.append('UNK')
acc_type.append('UNK')
prot_types = np.array(prot_types)
hp_type = np.array(hp_type)
acc_type = np.array(acc_type)
don_type = np.array(don_type)
return prot_types, hp_type, acc_type, don_type
def _get_probe_score(prot_coord, prot_types, hp_type, don_type, acc_type, probe_coords):
"""
Examples
--------
Use beta atom as probe points and estimate the ligandibility
Use the given protein atom type to calculate probe score at given location.
Parameters
----------
prot_coord : np.ndarray
shape = (n,3)
prot_types : np.ndarray
shape = (n)
hp_type : np.ndarray
shape = (n)
don_type : np.ndarray
shape = (n)
acc_type : np.ndarray
shape = (n)
probe_coords : np.ndarray
shape = (m,3)
Returns
-------
prb_dict : dict
probe score dictionary
"""
def _NP_interp(r):
"""
"""
if r < 0.5:
x = 1.0
elif r > 1.5:
x = 0.0
else:
x = 1.5 - r
# x=np.interp(r, [0.i5,1.5], [1,0])
return x
def _P_interp(r): ##step for polar
if r < -0.7:
x = 1.0
elif r >= 0:
x = 0.0
else:
x = -r / 0.7
return x
probe_prot_dist = cdist(probe_coords, prot_coord)
probe_scores = np.zeros((probe_coords.shape[0], len(probElements)), dtype=np.float32)
for probe_idx in range(probe_coords.shape[0]):
dist_bool = probe_prot_dist[probe_idx] <= 8.0
temp_dist = probe_prot_dist[probe_idx][dist_bool]
# print(prot_types)
temp_type = prot_types[dist_bool]
NP_type = (hp_type[dist_bool] == 'NP')
Pdon_type = (don_type[dist_bool] == 'P')
Pacc_type = (acc_type[dist_bool] == 'P')
dist_radii = np.array([autodockVinaAtomTypes[ty][0] for ty in temp_type])
for element_idx, probe_element in enumerate(probElements):
probe_dist = autodockVinaAtomTypes[probe_element][0]
proc_dist = temp_dist - dist_radii - probe_dist
g1 = np.sum(np.exp(-(proc_dist / 0.5) ** 2))
g2 = np.sum(np.exp(-((proc_dist - 3.0) / 2.0) ** 2))
rep = np.sum([dd ** 2 if dd < 0.0 else 0.0 for dd in proc_dist])
if probe_element in {'C', 'Br', 'Cl', 'F', 'I'}:
h1 = np.sum([_NP_interp(dd) for dd in proc_dist[NP_type]])
h2 = 0.0
elif probe_element in {'OA', 'SA'}:
h1 = 0.0
h2 = np.sum([_P_interp(dd) for dd in proc_dist[Pdon_type]])
elif probe_element in {'N', 'P'}:
h1 = 0.0
h2 = np.sum([_P_interp(dd) for dd in proc_dist[Pacc_type]])
else:
raise Exception()
probe_scores[probe_idx][element_idx] = np.sum(np.array([g1, g2, rep, h1, h2]) * autodockVinaTerms)
# print(probe_scores[probe_idx][element_idx], g1,g2,rep,h1,h2)
return probe_scores
def annotateVinaAtomTypes(receptor, pdbqt):
"""
Parameters
----------
receptor
args: str
top: str
ref: str
Returns
-------
"""
with open(pdbqt, 'r') as handle:
lines = [line for line in handle.read().splitlines() if line.startswith("ATOM")]
atom_numbers = []
partial_charges = []
adv_atom_types = []
for line in lines:
serial_number = int(line[6:11])
atom_numbers.append(serial_number)
name_with_spaces = line[12:16]
alternate_location_indicator = line[16]
residue_name_with_spaces = line[17:20]
residue_number = int(line[22:26])
insertion_code = line[26]
x = float(line[30:38])
y = float(line[38:46])
z = float(line[46:54])
partial_charge = float(line[70:76])
partial_charges.append(partial_charge)
adv_atom_type = line[77:79].strip()
adv_atom_types.append(adv_atom_type)
if receptor.top.n_atoms < len(adv_atom_types):
print("Redundant Atom types in pdbqt file found, trimming last {} entries".format(
{receptor.top.n_atoms - len(adv_atom_types)}))
adv_atom_types = adv_atom_types[:receptor.top.n_atoms]
partial_charges = partial_charges[:receptor.top.n_atoms]
receptor.partial_charges = partial_charges
receptor.adv_atom_types = adv_atom_types