-
Notifications
You must be signed in to change notification settings - Fork 0
/
simplepdb.py
executable file
·404 lines (369 loc) · 16.2 KB
/
simplepdb.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
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
#!/usr/bin/python
import pdb_util as util
from copy import deepcopy
import os, itertools
import collections
class simplepdb:
'''
Parses and writes PDB files, and exposes limited functionality for
manipulating their contents with a particular focus on the kinds of
manipulations required for setting up MD simulations.
Attributes:
mol_data: Dictionary of PDB column names and their values.
ters : Locations of breaks in the molecule, per the input PDB or
resulting from simple operations such as merging molecules. Specified
as a list of residues that appear immediately _before_ a break.
connect: Connect records for the molecule. Format is a dictionary where
the keys are the atoms that were found in the input connect record and
the values are the list of atoms to which they were bonded (per that
record).
natoms: Number of atoms in molecule(s).
'''
def __init__(self, other):
'''
Return a simplepdb object created by parsing an input PDB file or
copying the contents of another object.
Can't construct an object without such input because no utilities are
provided that could be used to construct a reasonable molecule.
'''
if isinstance(other, self.__class__):
for k,v in other.__dict__.items():
setattr(self, k, deepcopy(v))
else:
assert os.path.isfile(other), 'simplepdb constructor requires \
input PDB or object of the same type.\n'
assert 'pdb' in os.path.splitext(other)[-1], 'Not a PDB file.\n'
self.mol_data = self.parse_pdb(other)
self.ters,self.connect = self.get_ters_and_connect(other)
self.natoms = len(self.mol_data['atomnum'])
if self.natoms == 0:
print("WARNING: no atoms in molecule.\n")
def __eq__(self, other):
'''
Check equality of simplepdb objects based on the values of their fields
'''
if isinstance(other, self.__class__):
return self.__dict__ == other.__dict__
return NotImplemented
def parse_pdb(self, pdb):
'''
Return a dictionary of PDB column names and their values for ATOM and
HETATM records in the provided PDB file
'''
#TODO: deal with multiple models
parse = util.make_parser(util.pdb_fieldwidths)
f = open(pdb, 'r')
mol_data_list = [parse(line) for line in f if line.startswith('HETATM') or line.startswith('ATOM')]
f.close()
mol_data = {}
for i,field in enumerate(util.pdb_fieldnames):
if i in util.pdb_floatfields:
fieldlist = [float(line[i]) if line[i].strip() else line[i] for
line in mol_data_list]
elif i in util.pdb_intfields:
fieldlist = [int(line[i]) if line[i].strip() else line[i] for
line in mol_data_list]
else:
fieldlist = [line[i].strip() for line in mol_data_list]
mol_data[field] = fieldlist
if not mol_data['element']:
self.set_element(mol_data)
return mol_data
def get_ters_and_connect(self, pdb):
'''
Returns a list of breaks in a PDB file and a dictionary of CONECT records
'''
ters = []
connect = collections.OrderedDict()
last_line = ''
parse = util.make_parser(util.pdb_connectfields)
with open (pdb,'r') as f:
for line in f:
if line.startswith('TER'):
#this includes the insertion code, if applicable, so the
#ters have to be strings rather than ints
ters.append(last_line[22:27].strip())
elif line.startswith('CONECT'):
contents = parse(line)
atom = int(contents[1])
bonds = [int(bond) for bond in contents[2:] if
bond.strip()]
if atom not in connect:
connect[atom] = bonds
else:
connect[atom] = connect[atom] + bonds
elif line.startswith('ATOM') or line.startswith('HETATM'):
last_line = line
ter = last_line[22:27].strip()
if ter and not ter in ters:
ters.append(ter)
return ters,connect
def get_res_info(self, field_dict):
'''
Returns a list of dictionaries containing all relevant info for
residues whose field value matches the passed-in value
'''
info = []
resnums = []
for key,value in field_dict.items():
assert key in list(self.mol_data.keys()), 'Invalid residue identifier\n'
indices = [i for i,e in enumerate(self.mol_data[key]) if e==value]
for index in indices:
resnum = self.mol_data['resnum'][index]
if resnum not in resnums:
resnums.append(resnum)
info.append({})
for key in list(self.mol_data.keys()):
info[-1][key] = [self.mol_data[key][index]]
else:
res_index = resnums.index(resnum)
for key in list(self.mol_data.keys()):
info[res_index][key].append(self.mol_data[key][index])
return info
def get_center(self):
'''
Returns location of center
'''
center = [0,0,0]
center[0] = sum(self.mol_data['x']) / self.natoms
center[1] = sum(self.mol_data['y']) / self.natoms
center[2] = sum(self.mol_data['z']) / self.natoms
return center
def set_origin(self, loc):
'''
Translates molecule to new origin
'''
assert len(loc)==3,"Center is not three dimensional"
self.mol_data['x'] = [x - loc[0] for x in self.mol_data['x']]
self.mol_data['y'] = [y - loc[1] for y in self.mol_data['y']]
self.mol_data['z'] = [z - loc[2] for z in self.mol_data['z']]
def add_ter(self, ter):
self.ters.append(ter)
def add_residue(self, res_info, ignore_resnum=True):
'''
Takes a dict mapping fieldnames to values and adds the residue to the
existing mol_data dict, defaults to ignoring the existing residue
number and just sticking it at the end
'''
assert len(set(res_info['resnum'])) == 1, 'Different residue numbers in putative residue\n'
if ignore_resnum:
res_info['resnum'] = [max(self.mol_data['resnum']) + 1] * len(res_info['resnum'])
else:
assert res_info['resnum'][0] > 0, 'Residue numbers must be positive integers\n'
assert res_info['resnum'][0] not in self.mol_data['resnum'], 'Residue number %d already exists\n' %res_info['resnum'][0]
for key,value in self.mol_data.items():
value += res_info[key]
self.natoms += len(res_info['resnum'])
def group_by_residue(self):
'''
Rearrange atoms in a file so that atoms in the same residue are
contiguous and orders residues monotonically by resnum
'''
unsorted_resmap = {}
for old_idx in range(self.natoms):
resnum = self.mol_data['resnum'][old_idx]
if resnum not in unsorted_resmap:
unsorted_resmap[resnum] = [old_idx]
else:
unsorted_resmap[resnum].append(old_idx)
resmap = collections.OrderedDict(sorted(list(unsorted_resmap.items()), key=lambda t: t[0]))
new_indices = list(itertools.chain.from_iterable(list(resmap.values())))
new_mol_data = {}
for key in self.mol_data:
new_mol_data[key] = [self.mol_data[key][i] for i in new_indices]
self.renumber_atoms()
self.mol_data = new_mol_data
def renumber_atoms(self, start_val=1):
'''
Renumber atoms so they start at start_val
'''
mapping = {}
for i in range(self.natoms):
old_val = self.mol_data['atomnum'][i]
new_val = i + start_val
self.mol_data['atomnum'][i] = new_val
mapping[old_val] = new_val
#TODO: ugly
new_connect = collections.OrderedDict()
for atom,bonds in list(self.connect.items()):
if atom in mapping:
new_connect[mapping[atom]] = bonds
for atom,bonds in list(new_connect.items()):
for bond in bonds:
if bond in mapping:
idx = bonds.index(bond)
new_connect[atom][idx] = mapping[bond]
self.connect = new_connect
def renumber_residues(self, start_val=1):
'''
Renumber residues so they start at start_val in "first seen" order, desirable
when there is a ligand at the end of data with an out-of-order resnum
'''
reslist = []
for i,resnum in enumerate(self.mol_data['resnum']):
name = str(resnum)
if name not in reslist:
newidx = len(reslist)
reslist.append(name)
else:
newidx = reslist.index(name)
newnum = newidx + start_val
self.mol_data['resnum'][i] = newnum
insert_code = self.mol_data['rescode'][i]
if str(resnum) + insert_code in self.ters:
ter_idx = self.ters.index(str(resnum)+insert_code)
self.ters[ter_idx] = str(newnum) + insert_code
def rename_atoms(self):
'''
Generate unique atom names
'''
if self.has_unique_names():
return
for i,name in enumerate(self.mol_data['atomname']):
self.mol_data['atomname'][i] = ''.join([char for char in
self.mol_data['element'][i]])
occurrences = {}
for i,atom in enumerate(self.mol_data['atomname']):
if atom not in occurrences:
occurrences[atom] = [i,1]
else:
occurrences[atom][1] += 1
self.mol_data['atomname'][i] += str(occurrences[atom][1])
self.mol_data['atomname'][i] = \
'{:>{}s}'.format(self.mol_data['atomname'][i],
util.pdb_fieldwidths[3])
def set_element(self, mol_data):
'''
Set atom element based on atom name, but only if element not set.
'''
if not mol_data['element']:
for i,name in enumerate(mol_data['atomname']):
element = ''.join([char for char in name if char.isalpha()])
mol_data['element'][i] = '{:>{}s}'.format(element,
util.pdb_fieldwidths[-2])
def sanitize(self):
'''
Perform atom renumbering, residue renumbering, and regrouping atoms so
residues are contiguous; if a small molecule, also uniquely names atoms
and sets the element field
'''
self.group_by_residue()
self.renumber_atoms()
self.renumber_residues()
if not self.is_protein():
self.set_element(self.mol_data)
self.rename_atoms()
def has_hydrogen(self):
'''
Returns true if hydrogens are present
'''
return 'H' in [elem.strip() for elem in self.mol_data['element']]
def strip_hydrogen(self):
'''
Strip out all the hydrogens
'''
h_indices = [i for i,elem in enumerate(self.mol_data['element']) if elem.strip() ==
'H']
new_mol_data = {}
for key in list(self.mol_data.keys()):
new_mol_data[key] = [self.mol_data[key][i] for i in
range(len(self.mol_data[key])) if i not in h_indices]
self.mol_data = new_mol_data
def is_protein(self, ff=''):
'''
Returns true if standard amino acid residues are present
'''
aa = util.get_available_res(ff).intersection(self.mol_data['resname'])
return len(aa) > 0
def has_unique_names(self):
'''
Returns true if atom names are unique
'''
#TODO: add to tests
atom_ids = []
for i in range(self.natoms):
atom_ids.append(str(self.mol_data['resnum'][i]) +
self.mol_data['atomname'][i])
counter = collections.Counter(atom_ids)
if any(t > 1 for t in list(counter.values())):
return False
return True
def set_recordname(self, newname, resnum=None):
'''
Set record name to ATOM or HETATM for residue number resnum or all
resnums if no number is provided
'''
#TODO: add to tests
assert newname=='ATOM' or newname=='HETATM', 'Record names must be one \
of "ATOM" and "HETATM"'
if not resnum:
self.mol_data['recordname'] = [newname] * self.natoms
else:
self.mol_data['recordname'] = [newname for name in
self.mol_data['recordname'] if self.mol_data['resnum'] == resnum]
def set_resname(self, newname, oldname=''):
'''
Set resname to newname; if oldname is not specified then all resnames
are updated to newname, otherwise just oldname is
'''
#TODO: add to tests
if not oldname:
self.mol_data['resname'] = [newname] * self.natoms
else:
self.mol_data['resname'] = [newname for name in
self.mol_data['resname'] if name == oldname]
def writepdb(self, fname, mols=[]):
'''
Write molecule data to a file; takes filename and a list of mols to be
written. If no list is provided, just the calling molecule is written,
otherwise only the molecules in the list are written.
'''
if not mols:
mols = [self]
with open(fname, 'w') as f:
start_atom = 1
start_res = 1
for mol in mols:
mol.renumber_atoms(start_atom)
mol.renumber_residues(start_res)
for i in range(mol.natoms):
j = 0
for fieldwidth in util.pdb_fieldwidths:
if fieldwidth > 0:
fieldname = util.pdb_fieldnames[j]
if fieldname=='x' or fieldname=='y' or fieldname=='z':
output='{:.3f}'.format(mol.mol_data[fieldname][i])
f.write('{:>{}s}'.format(str(output),fieldwidth))
elif fieldname=='occupancy' or fieldname=='beta' and \
str(mol.mol_data[fieldname][i]).strip():
output='{:.2f}'.format(mol.mol_data[fieldname][i])
f.write('{:>{}s}'.format(str(output),fieldwidth))
elif fieldname=='recordname':
f.write('{:<{}s}'.format(str(mol.mol_data[fieldname][i]),fieldwidth))
else:
f.write('{:>{}s}'.format(str(mol.mol_data[fieldname][i]),fieldwidth))
j += 1
else:
f.write('{:>{}s}'.format('',abs(fieldwidth)))
f.write('\n')
insert_code = mol.mol_data['rescode'][i]
if (i == mol.natoms-1):
f.write('TER\n')
elif (str(mol.mol_data['resnum'][i])+insert_code in mol.ters and
str(mol.mol_data['resnum'][i])+insert_code !=
str(mol.mol_data['resnum'][i+1])+mol.mol_data['rescode'][i+1]):
f.write('TER\n')
start_atom = mol.mol_data['atomnum'][-1]+1
start_res = mol.mol_data['resnum'][-1]+1
for mol in mols:
for atom,bonds in list(mol.connect.items()):
bonds_seen = 0
for bond in bonds:
if not bonds_seen % 4:
if bonds_seen: f.write('\n')
f.write('CONECT')
f.write('{:>{}s}'.format(str(atom),util.pdb_connectfields[1]))
f.write('{:>{}s}'.format(str(bond),5))
bonds_seen = bonds_seen + 1
f.write('\n')
f.write('END\n')