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
When running :py:meth:`Topology.to_openmm <openforcefield.topology.Topology.to_openmm>`, unique atom names
24
+
are generated (overriding any existing atom names) if the provided atom names are not unique. This
25
+
uniqueness extends only to atoms in the same molecule. To disable this behavior, set the kwarg
26
+
``ensure_unique_atom_names=False``.
27
+
28
+
Tests added
29
+
"""""""""""
30
+
- `PR #469 <https://github.com/openforcefield/openforcefield/pull/469>`_: Added round-trip SMILES test
31
+
to add coverage for :py:meth:`Molecule.from_smiles <openforcefield.topology.Molecule.from_smiles>`.
32
+
- `PR #469 <https://github.com/openforcefield/openforcefield/pull/469>`_: Added tests for unique atom
33
+
naming behavior in :py:meth:`Topology.to_openmm <openforcefield.topology.Topology.to_openmm>`, as
34
+
well as tests of the ``ensure_unique_atom_names=False`` kwarg disabling this behavior.
35
+
36
+
Bugfixes
37
+
""""""""
38
+
- `Issue #460 <https://github.com/openforcefield/openforcefield/issues/460>`_: Creates unique atom
39
+
names in :py:meth:`Topology.to_openmm <openforcefield.topology.Topology.to_openmm>` if the existing
40
+
ones are not unique. The lack of unique atom names caused problems in workflows involving
41
+
downstream tools that expect unique atom names.
10
42
11
43
0.6.0 - Library Charges
12
44
-----------------------
@@ -90,10 +122,10 @@ Behavior changed
90
122
91
123
Tests added
92
124
"""""""""""
93
-
- `PR #430 <https://github.com/openforcefield/openforcefield/pull/430>`_: Added test for
94
-
Wiberg Bond Order implemented in OpenEye Toolkits. Molecules taken from
125
+
- `PR #430 <https://github.com/openforcefield/openforcefield/pull/430>`_: Added test for
126
+
Wiberg Bond Order implemented in OpenEye Toolkits. Molecules taken from
95
127
DOI:10.5281/zenodo.3405489 . Added by Sukanya Sasmal.
96
-
128
+
97
129
98
130
Bugfixes
99
131
""""""""
@@ -474,7 +506,7 @@ API-breaking Changes
474
506
* `PR #291 <https://github.com/openforcefield/openforcefield/pull/291>`_: Remove ``ForceField.load/to_smirnoff_data``, add ``ForceField.to_file/string`` and ``ParameterHandler.add_parameters``. Change behavior of ``ForceField.register_X_handler`` functions.
475
507
476
508
Bugfixes
477
-
""""""""
509
+
""""""""
478
510
* `PR #327 <https://github.com/openforcefield/openforcefield/pull/327>`_: Fix units in tip3p.offxml (note that this file is still not loadable by current toolkit)
479
511
* `PR #325 <https://github.com/openforcefield/openforcefield/pull/325>`_: Fix solvent box for provided test system to resolve periodic clashes.
480
512
* `PR #325 <https://github.com/openforcefield/openforcefield/pull/325>`_: Add informative message containing Hill formula when a molecule can't be matched in ``Topology.from_openmm``.
0 commit comments