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
By the way, also the warning Espaloma gives (for which I'm deleting here the conformer) seems a bit excessive. It feels to me like it could just silently ignore the existence of conformers in the molecule.
IncorrectNumConformersWarning: Molecule 'Molecule with name 'BEN_pH7_4.sdf' and SMILES '[H][c]1[c]([H])[c]([H])[c]([C]([N]([H])[H])=[N+]([H])[H])[c]([H])[c]1[H]'' has 1 conformers, but charge method 'espaloma-am1bcc' expects exactly 0
The text was updated successfully, but these errors were encountered:
This warning should be easy enough to ignore with a context manager filtering warnings, do we think that there is any case where this warning could be useful?
Ah, this is happening because mol_copy in the wrapper isn't bring updated with the user-defined confs (which defaults to None). You can fix this by putting mol_copy._conformers = use_conformershere.
From #19:
The text was updated successfully, but these errors were encountered: