From 433161bc21b1213260f8674d424e9d7af1d3f584 Mon Sep 17 00:00:00 2001 From: bannanc Date: Wed, 12 Dec 2018 16:31:58 -0800 Subject: [PATCH 1/3] fix README --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c1ad9ff..a5aa558 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # smirnoff99Frosst This provides the first general-purpose implementation of a SMIRKS Native Open Force Field (SMIRNOFF) created by the -[Open Force Field Initiative](https://openforcfield.org). +[Open Force Field Initiative](https://openforcefield.org). You can parameterize small molecules with SMIRNOFF using the `ForceField` class in the [openforcefield toolkit](https://github.com/openforcefield/openforcefield) for simulations with [OpenMM](http://openmm.org/). @@ -18,7 +18,7 @@ conda install -c mobleylab smirnoff99frosst=1.0.7 ## What it is -The provided smirnoff99Frosst.xml (forcefield) is a starting point for a general-purpose small molecule force field in [the SMIRNOFF format](https://github.com/openforcefield/smarty/blob/master/The-SMIRNOFF-force-field-format.md); it should cover all or almost all of drug-like chemical space, and illustrates some of the major functionality of the SMIRNOFF format as well as how it simplifies the specification of force field parameters in a compact and chemically sensible way. +The provided smirnoff99Frosst.xml (forcefield) is a starting point for a general-purpose small molecule force field in [the SMIRNOFF format](https://github.com/openforcefield/openforcefield/blob/master/The-SMIRNOFF-force-field-format.md); it should cover all or almost all of drug-like chemical space, and illustrates some of the major functionality of the SMIRNOFF format as well as how it simplifies the specification of force field parameters in a compact and chemically sensible way. HOWEVER, this is not expected to be (at present) an especially accurate small molecule force field. Its authors (see History, below) expect that while coverage will initially be good, additional refinements will be required (and possibly some expansion of the number of parameters) before it can rival current force fields such as GAFF or OPLS in accuracy. @@ -58,7 +58,7 @@ However, derivatives are expected to retain this basic structure and the AMBER l ## Using smirnoff99Frosst -In OpenMM, application of smirnoff99Frosst to small molecules should be straightforward via `openforcefield` with examples available in the [openforcefield repository](https://github.com/openforcefield/openforcefield/tree/master/examples) +In OpenMM, application of smirnoff99Frosst to small molecules should be straightforward via `openforcefield` with examples available in the [openforcefield repository](https://github.com/openforcefield/openforcefield/tree/master/examples). Additionally, with ParmEd, it should be possible to convert parameterized OpenMM systems into other formats such as AMBER, CHARMM, or GROMACS, making this forcefield available in a variety of packages. @@ -66,13 +66,14 @@ Additionally, with ParmEd, it should be possible to convert parameterized OpenMM - Version 1.0/[Version 1.0.1](http://dx.doi.org/10.5281/zenodo.154235) (equivalent): Initial release after hand curation by C. I. Bayly and C. C. Bannan. DOI [10.5281/zenodo.154235](http://dx.doi.org/10.5281/zenodo.154235) - [Version 1.0.2](http://doi.org/10.5281/zenodo.154555): Fixes an out-of-order generic (bond `[#6X2:1]-[#6:2]`) as per [Issue 4](https://github.com/openforcefield/smirnoff99Frosst/issues/4). - [Version 1.0.3](http://dx.doi.org/10.5281/zenodo.161616): Bug fixes -- adding one omitted bond length, fixing four torsional smirks patterns, and adding one missing torsional term as detailed in [smarty issue 164](https://github.com/openforcefield/smarty/pull/164) -- [Version 1.0.4](http://doi.org/10.5281/zenodo.348165): Bug fixes -- #11: Fix the parm@Frosst-derived C-OS bond length so it does not also match (and thus override) C-OH, switching from SMIRKS of `[#6X3:1](=[#8X1])-[#8X2:2]` to `[#6X3:1](=[#8X1])-[#8X2H0:2]`, which avoids overriding `[#6X3:1]-[#8X2H1:2]`. And then add back in a generic which should have been present (#15, fixing a bug introduced by #11) +- [Version 1.0.4](http://doi.org/10.5281/zenodo.348165): Bug fixes -- #11: Fix the parm@Frosst-derived C-OS bond length so it does not also match (and thus override) C-OH, switching from SMIRKS of `[#6X3:1](=[#8X1])-[#8X2:2]` to `[#6X3:1](=[#8X1])-[#8X2H0:2]`, which avoids overriding `[#6X3:1]-[#8X2H1:2]`. And then add back in a generic which should have been present ([PR 15](https://github.com/openforcefield/smirnoff99Frosst/pull/15), fixing a bug introduced by [PR 11](https://github.com/openforcefield/smirnoff99Frosst/pull/11)) - [Version 1.0.5](http://doi.org/10.5281/zenodo.495249): Substantially improved coverage of chemical space via more general generics as well as a variety of new parameters introduced via generalization/estimation from other force fields such as GAFF/GAFF2. This release, this version covers an internal set of molecules from DrugBank filtered to remove metal atoms and to contain only compounds with less than 200 heavy atoms. Full documentation of changes is available [here](https://github.com/openforcefield/smarty/pull/232). - [Version 1.0.6](https://doi.org/10.5281/zenodo.1093346): Added monovalent ion parameters (Joung/Cheatham) for TIP3P as default. Added angle parameters for cyclobutyl groups. Replaced `R` decorators with `x` to guarantee compatibility between OpenEye toolkits and RDKit SMIRKS parsing. - [Version 1.0.7](https://dx.doi.org/10.5281/zenodo.1186466): Add hydroxyl hydrogen radii (as per SMIRNOFF initial paper); remove generics with pure wildcards (not even elemental types). **Not yet in a version**: - Fixed the bond parameter between hydrogen and divalent carbons as documented in [issue #81](https://github.com/openforcefield/smirnoff99Frosst/issues/81). +- Fixed the SMIRKS pattern for the angle parameter around trivalent carbon in 5-membered rings in [issue #84](https://github.com/openforcefield/smirnoff99Frosst/issues/84). ## Contributors From f1f8468f81dfb00a835742ec9c4b0af86e58fbdc Mon Sep 17 00:00:00 2001 From: bannanc Date: Wed, 12 Dec 2018 16:32:30 -0800 Subject: [PATCH 2/3] fix extracyclic 5-membered ring parameter --- smirnoff99Frosst/smirnoff99Frosst.offxml | 128 +++++++++++------------ 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/smirnoff99Frosst/smirnoff99Frosst.offxml b/smirnoff99Frosst/smirnoff99Frosst.offxml index ce5549c..d35ceb0 100755 --- a/smirnoff99Frosst/smirnoff99Frosst.offxml +++ b/smirnoff99Frosst/smirnoff99Frosst.offxml @@ -1,7 +1,7 @@ - Date: Nov. 7, 2018 + Date: Dec. 12, 2018 C. I. Bayly, OpenEye/UC Irvine; C. C. Bannan, UC Irvine; D. L. Mobley, UC Irvine @@ -109,7 +109,7 @@ - + @@ -141,75 +141,75 @@ - + - - - - - - - - + + + + + + + + - + - - + + - - - - - - + + + + + + - - - - + + + + - - - - + + + + - - - + + + - + - + - + - + - - - - + + + + - + @@ -224,23 +224,23 @@ - + - - - - + + + + - - - + + + - - + + @@ -261,9 +261,9 @@ - - - + + + @@ -276,24 +276,24 @@ - - - - - - + + + + + + - - + + - + - + - + From 79ffef603a3bc99130ec4ee6ae981f8875aeae3d Mon Sep 17 00:00:00 2001 From: bannanc Date: Thu, 13 Dec 2018 13:10:05 -0800 Subject: [PATCH 3/3] fix capitalization --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a5aa558..45f0cb1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# smirnoff99Frosst +# SMIRNOFF99Frosst This provides the first general-purpose implementation of a SMIRKS Native Open Force Field (SMIRNOFF) created by the [Open Force Field Initiative](https://openforcefield.org). @@ -14,7 +14,7 @@ Latest release: [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1186466.svg) ```bash conda install -c mobleylab smirnoff99frosst=1.0.7 ``` -(smirnoff99frosst was formerly known as smirff99frosst) +(SMIRNOFF99frosst was formerly known as SMIRFF99frosst) ## What it is @@ -24,11 +24,11 @@ HOWEVER, this is not expected to be (at present) an especially accurate small mo Its authors (see History, below) expect that while coverage will initially be good, additional refinements will be required (and possibly some expansion of the number of parameters) before it can rival current force fields such as GAFF or OPLS in accuracy. However, we are optimistic that it already rivals them in extensibility, and potentially with relatively minimal work can be extended to be a compelling present-day small molecule force field. -As with typical members of the AMBER force field family, smirnoff99Frosst is intended to be used with RESP or AM1-BCC charges which are not specified by the force field itself. +As with typical members of the AMBER force field family, SMIRNOFF99Frosst is intended to be used with RESP or AM1-BCC charges which are not specified by the force field itself. **Differences from parm99 and parm@frosst**: -smirnoff99Frosst is neither parm99 nor parm@frosst exactly, for a number of reasons including that: +SMIRNOFF99Frosst is neither parm99 nor parm@frosst exactly, for a number of reasons including that: - It covers, or should cover with only slight modification, all reasonable organic chemistry, which neither of the above did - It is much simpler (because of parameter consolidation by SMIRKS, because of removing questionably differentiated parameters, and because its goal is to be a "good starting point" than a finished product) @@ -44,9 +44,9 @@ The use of SMIRKS typically means that this is not the case, so many mistakes ar ## History -This forcefield, smirnoff99Frosst, is a logical descendant of AMBER's parm99 forcefield as well as Merck-Frosst's [parm@frosst](http://www.ccl.net/cca/data/parm_at_Frosst/), but is generalized/simplified and put into the SMIRNOFF format. +This forcefield, SMIRNOFF99Frosst, is a logical descendant of AMBER's parm99 forcefield as well as Merck-Frosst's [parm@frosst](http://www.ccl.net/cca/data/parm_at_Frosst/), but is generalized/simplified and put into the SMIRNOFF format. -smirnoff99Frosst was created by Christopher I. Bayly (with help from Caitlin C. Bannan and David L. Mobley, UC Irvine) during his sabbatical at UCI during Summer 2016. +SMIRNOFF99Frosst was created by Christopher I. Bayly (with help from Caitlin C. Bannan and David L. Mobley, UC Irvine) during his sabbatical at UCI during Summer 2016. It was created by hand curation of the original parm99 and parm@frosst parameter and frcmod files (manually creating SMIRKS patterns, condensing parameters, etc.). Usage of SMIRKS, along with application of Bayly's chemical intuition and extensive history with the AMBER force field family, allowed the number of parameter lines to be reduced from the multiple thousands of parm99+parm@frosst to the few hundred seen here. @@ -56,9 +56,9 @@ We expect to continue to manually expand this to cover more chemical space and, Subsequent versions are expected to build on Bayly's hand created version with some enhancements by Caitlin Bannan by improving specific parameters, further differentiating some chemical functionality, etc. However, derivatives are expected to retain this basic structure and the AMBER legacy/history; a full refitting of bonded parameters would result in a separate force field rather than a new version of this force field. -## Using smirnoff99Frosst +## Using SMIRNOFF99Frosst -In OpenMM, application of smirnoff99Frosst to small molecules should be straightforward via `openforcefield` with examples available in the [openforcefield repository](https://github.com/openforcefield/openforcefield/tree/master/examples). +In OpenMM, application of SMIRNOFF99Frosst to small molecules should be straightforward via `openforcefield` with examples available in the [openforcefield repository](https://github.com/openforcefield/openforcefield/tree/master/examples). Additionally, with ParmEd, it should be possible to convert parameterized OpenMM systems into other formats such as AMBER, CHARMM, or GROMACS, making this forcefield available in a variety of packages.