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
Hi,
I'm trying to use Molly.jl to reproduce some of the work I have done in Gromacs, however, it raises error in System building stage.
Specifically, I use the following Gromacs commands to prepare the pdb file(with water box and ions):
And use the following Molly.jl code to generate the system:
using Molly
ff =MolecularForceField("ff99SB.xml", "spce_standard.xml")
sys =System("pro-ion.pdb", ff)
the ff99SB.xml and spce_standard.xml files are found from openmm source code.
This gives me the following error:
ERROR: LoadError: KeyError: key "HB1" not found
and a lot of warning:
┌ Warning: PDB reader: found unexpected, non-standard atom 'CD1' in residue 'ILE' (resid 527)
└ @ Chemfiles ~/.julia/packages/Chemfiles/NoLfC/src/misc.jl:29
┌ Warning: PDB reader: found unexpected, non-standard atom 'CD1' in residue 'ILE' (resid 527)
└ @ Chemfiles ~/.julia/packages/Chemfiles/NoLfC/src/misc.jl:29
┌ Warning: PDB reader: found unexpected, non-standard atom 'CD1' in residue 'ILE' (resid 527)
└ @ Chemfiles ~/.julia/packages/Chemfiles/NoLfC/src/misc.jl:29
┌ Warning: PDB reader: found unexpected, non-standard atom 'O' in residue 'LYS' (resid 528)
└ @ Chemfiles ~/.julia/packages/Chemfiles/NoLfC/src/misc.jl:29
┌ Warning: PDB reader: found unexpected, non-standard atom 'O' in residue 'LYS' (resid 528)
...
I know the process of combining openmm, Gromacs and Molly.jl toolchain is kind of error prone. However, since Molly.jl currently does not have toolset for processing pdb files(creating water box, adding ions, etc), this is the best I come up with...
Do you have any clues about what's going on here? Any suggestions on pdb preparation for Molly.jl?
The text was updated successfully, but these errors were encountered:
This certainly is an area where Molly is lacking features at the moment. In this case it looks like the atom names in the PDB file are different from those in the XML force field. Currently they have to match exactly, whereas more mature software matches residues based on topology and allows different atom names.
This issue can be left open to track this. In the mean time I would consider using OpenMM's protein preparation tools, which should match their force field file better. The system you get out won't be directly comparable to the Gromacs system, but depending on system size you may struggle to sample long enough with Molly to make a direct comparison anyway.
All of this will hopefully be fixed long term. More robust setup tools is on the todo list but not at the top.
Hi,
I'm trying to use
Molly.jl
to reproduce some of the work I have done inGromacs
, however, it raises error inSystem
building stage.Specifically, I use the following
Gromacs
commands to prepare the pdb file(with water box and ions):And use the following
Molly.jl
code to generate thesystem
:the
ff99SB.xml
andspce_standard.xml
files are found fromopenmm
source code.This gives me the following error:
and a lot of warning:
I know the process of combining
openmm
,Gromacs
andMolly.jl
toolchain is kind of error prone. However, sinceMolly.jl
currently does not have toolset for processing pdb files(creating water box, adding ions, etc), this is the best I come up with...Do you have any clues about what's going on here? Any suggestions on pdb preparation for
Molly.jl
?The text was updated successfully, but these errors were encountered: