2021_11_12 OpenMM/OpenFF Check in

Participants

  • @Matt Thompson

  • @Jeffrey Wagner

  • Peter Eastman

Discussion topics

Item

Notes

Item

Notes

Boron support

  • PE – Does OpenFF have plans to support boron?

    • JW – Yes, we just asked the advisory board the other day, and two of our supporting compares are interested. I’m not sure whether we’d add parameters just using QM data, or if we’d wait until we also had phys prop data to fit to.

    • PE – I’m wondering how I should handle boron-containing molecules, since I need to generate conformers, and I’m using openff forcefields to do so. But openff forcefields don’t have parameters for boron. So I’d need to use another method if I wanted to generate boron-cotnaining conformers. Also silicon.

    • JW – Gotcha. I don’t think we’ll have boron parameters in the next several months. We don’t have plans to add silicon currently.

    • PE – Ok, no rush, good to know for my dataset generation and future plans.

RC builds

  • JW – These are great - MT integrated these into our test suite and already caught a potential problem.

  • Sigma=0 vs epsilon=0?

    • (General) – The sigma=0 thing is because of a problem with soft-core potentials. That’s not supported by NonbondedForce.

    • PE will remove check for positive sigma, allow negative harmonicbond k

Units package

  • JW – We’re probably moving over to primarily use Pint soon

    • We’ll support interoperating between both using openff-units

  • PE – We have an open discussion on adding support for pint. But it’s not a top priority right now. There would be a few stages here - one is just “doing the right thing” when talking with the C++ layer, then increasing to supporting multiplication between quantities from different package.

  • MT – This sounds like a fun direction, but I can’t guarantee that I’ll address these in the course of our work – We need to be driven by user needs.

  • PE – Good to keep in mind that an unreliable conversion is worse than nothing, so we’ll want to be extra cautious in adopting this in a widespread context.

  • MT – At different points in time, people have asked for a “units-only” OpenMM package. My understanding is that it’s at the stage where people say “that would be nice to do”, but nobody’s done it yet

    • PE – Agree with that summary.

Substructure recognition

from openff.toolkit.typing.engines.smirnoff import ForceField from openff.toolkit.topology import Molecule offmol = Molecule.from_smiles('CCCCCCCO') ff = ForceField('openff-2.0.0.offxml')

 

%%time # Using AM1BCC (default, sepecified in FF) sys1 = ff.create_openmm_system(offmol.to_topology())

 

nbf = [force for force in sys1.getForces() if "Nonbonded" in str(force)][0] for i in range(offmol.n_atoms): print(nbf.getParticleParameters(i)[0])

 

 

 

QC datasets

  • JW – Initial jobs submitted – We’ll watch to see how this goes and whether updates are needed.

  • JW – FYI - It’s not clear what the organizational status of this subproject is. I’m ultimately responsible for the success of specific tasks and the paid time of DDotson, MThompson, and JMitchell. These datasets aren’t on my radar.

  • PE – This isn’t an OpenFF project, it’s an NIH project under openMM. We’re using this data to support making ML potentials.

  • JW – Sounds good. We’re happy to support this, but it may get sidelined for some time if we have to deal with internal blockers.

  • PE – How do we get results out when this is done?

    • JW – We record the input chemical structures as “CMILES”. This is because…

    • PE – Will it be possible to keep the original info on the output structures? Like pubchem ID and amino acid sequence?

    • JW – I believe so. This info may have been packed into the QCA metadata for the jobs, otherwise we may need to offer a secondary index to map from QCA job/compound ID back to the original metadata.

Action items

Decisions