2021-11-17 Mitchell/Wagner Check in
Participants
@Jeffrey Wagner
@Josh Mitchell
Discussion topics
Item | Notes |
---|---|
General updates |
|
To dos |
from openff.toolkit.topology import Molecule
offmol = Molecule.from_smiles("c1ccccc1CCC(O)=O")
from openmm import unit
offmol.generate_conformers(n_conformers=10,
rms_cutoff=0.05*unit.angstrom)
print(offmol.n_conformers)
offmol.apply_elf_conformer_selection() ~/projects/OpenForceField/openff-toolkit/openff/toolkit/utils/openeye_wrapper.py in apply_elf_conformer_selection(self, molecule, percentage, limit)
1814 # non-fatal warnings to the correct logger.
1815 if not status:
-> 1816 raise RuntimeError("\n" + output_string)
1817 elif len(output_string) > 0:
1818 logger.warning(output_string)
RuntimeError: Cases where RDKit also prunes all the conformers from openff.toolkit.utils import RDKitToolkitWrapper
rdktkw = RDKitToolkitWrapper()
rdktkw.apply_elf_conformer_selection(offmol)
Three subcomponents of this problem:
|
To dos |
|
Action items
Decisions