Hi, I am trying to create a grappa training dataset using the DatasetBuilder() using orca calculations and custom topology files generated from charmm. The custom topology files parameterise bonds according to Urey-Bradley, i.e. the forcefield.itp file reads:
For reference: "normal" topology file:

Using the DatasetBuilder(), I try to add the nonbonded parameters calling:
add_nonbonded_from_gmx_top(mol_id=mol_id, top_file=mol_topol)
Resulting in the error: 
This error arises in from_openmm_system due to the UB-angles parameterised in the .itp files being interpreted as additional harmonic bonds when generating the OpenMM System object leading to a topology mismatch. A similar problem has been documented before.
How to best deal with it? Is this something that could be addressed in the DatasetBuilder()? Thank you for your help!
Hi, I am trying to create a grappa training dataset using the
DatasetBuilder()using orca calculations and custom topology files generated from charmm. The custom topology files parameterise bonds according to Urey-Bradley, i.e. theforcefield.itpfile reads:For reference: "normal" topology file:

Using the DatasetBuilder(), I try to add the nonbonded parameters calling:
add_nonbonded_from_gmx_top(mol_id=mol_id, top_file=mol_topol)Resulting in the error:
This error arises in
from_openmm_systemdue to the UB-angles parameterised in the .itp files being interpreted as additional harmonic bonds when generating the OpenMM System object leading to a topology mismatch. A similar problem has been documented before.How to best deal with it? Is this something that could be addressed in the
DatasetBuilder()? Thank you for your help!