openff-toolkit
openff-toolkit copied to clipboard
The Open Forcefield Toolkit provides implementations of the SMIRNOFF format, parameterization engine, and other tools. Documentation available at http://open-forcefield-toolkit.readthedocs.io
@slochower shared the following script with me, which seems to touch on some very useful areas. We should polish in into a full-fledged example! Some complications toward making this into...
A Drugbank molecule with sulfonic and phosphonic acids optimizes with smirnoff99Frosst to bad geometries: valence angles O-P,S-O too large or small, S-O-H angle too small, and 1-4 distance O=S-O-H too...
**Describe the bug** _originally posted by Bill Swope_ > Alberto and I have been looking at dipole moments for our neutral benchmark molecules and have discovered several issues that we...
Here's a block to add to the changelog, keeping it out of the tree to make merges easier: ``` - [PR #1236](https://github.com/openforcefield/openff-toolkit/pull/1236) raises [`RadicalsNotSupportedError`](openff.toolkit.utils.exceptions.RadicalsNotSupportedError) when [`Molecule.from_openeye`](openff.toolkit.topology.Molecule.from_openeye), [`Molecule.from_rdkit`](openff.toolkit.topology.Molecule.from_rdkit), [`Molecule.from_smiles`](openff.toolkit.topology.Molecule.from_smiles), or similar...
Fixes #926 - [x] Tag issue being addressed - [ ] Add [tests](https://github.com/openforcefield/openff-toolkit/tree/master/openff/toolkit/tests) - [ ] Update docstrings/[documentation](https://github.com/openforcefield/openff-toolkit/tree/master/docs), if applicable - [ ] [Lint](https://open-forcefield-toolkit.readthedocs.io/en/latest/developing.html#style-guide) codebase - [ ] Update [changelog](https://github.com/openforcefield/openff-toolkit/blob/master/docs/releasehistory.rst)
I was running a super short minimization/simulation and wanted to output a PDB of the OpenFF Topology to check that it had worked properly. However, we have a way to...
**Describe the bug** A `Molecule` written to a PDB file **includes** CONECT records when OpenEye Toolkits are **not** available but **excludes** them when they **are**. This can lead to surprising...
**Describe the bug** ``` from openforcefield.topology import Molecule from openforcefield.utils.toolkits import RDKitToolkitWrapper, OpenEyeToolkitWrapper mol = Molecule.from_smiles('CCO') mol.generate_unique_atom_names() mol.to_file('test_oetkw.pdb', file_format='pdb', toolkit_registry=OpenEyeToolkitWrapper()) ``` yields a pdb file without unique atom names ```...
## Purpose Because it's a complicated topic, and to maintain the ability to restart this discussion in the future, I think it's important to record our design decisions with regard...
Hi folks, I am working towards a python-based workflow for the parameterisation of a library of aromatic polymer fragments. In the past, I used exclusively ambertools/tleap but I would like...