You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running addMissingAtoms() gives different results because the LocalEnergyMinimizer does not allow setting a random seed from pdbfixer. The end result is that re-built sidechains are pointing in different directions at every different try, which is not good for reproducibilty. Setting random.seed and np.random.seed does not help. The following code snippet ran on any structure missing heavy atoms will reproduce the problem.
for i in range(5):
random.seed(917)
import pdbfixer as pf
from simtk.openmm.app import PDBFile
mol = pf.PDBFixer('../example/4xt1_AB.pdb')
mol.findMissingResidues()
mol.findMissingAtoms()
mol.addMissingAtoms()
with open('output_{}.pdb'.format(i), 'w') as handle:
PDBFile.writeFile(mol.topology, mol.positions, handle)
My suggestion would be add an optional seed parameter to addMissingAtoms that then sets the integrator seed. I'll follow with a pull request.
The text was updated successfully, but these errors were encountered:
Running
addMissingAtoms()
gives different results because theLocalEnergyMinimizer
does not allow setting a random seed frompdbfixer
. The end result is that re-built sidechains are pointing in different directions at every different try, which is not good for reproducibilty. Settingrandom.seed
andnp.random.seed
does not help. The following code snippet ran on any structure missing heavy atoms will reproduce the problem.My suggestion would be add an optional seed parameter to
addMissingAtoms
that then sets the integrator seed. I'll follow with a pull request.The text was updated successfully, but these errors were encountered: