2021-05-27 Wagner/Pulido/Wang Check in
Date
May 27, 2021
Participants
@Jeffrey Wagner
@Iván Pulido
@Lily Wang
Discussion topics
Item | Notes |
---|---|
Task updates |
|
|
|
Update on PDB/PDBx reader |
from simtk.openmm.app import PDBFile, PDBxFile
pdb = PDBFile('aha.pdb')
print([*pdb.topology.bonds()][-50:]) This shows that all the standard AA have bonds assigned (even without CONECT records), while the nonstandard AHA residue has bonds read from the CONECT records. This is good news – It means that we can load PDBs with nonstandard AAs and use networkx graph matching to assign bond orders and stuff! |