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
standardize how this is done in pipeline. for test_confs2psi.py calling next(_) on generator did not carry over SD tags which would cause test_make_frozen() to fail.
The text was updated successfully, but these errors were encountered:
NOTE: OEConfIter doesn't act like a generator so can't just call next() on it to get the first conf.
One solution: conf = list(mol.GetConfs())[0] which works if not having a ton of conformers.
Also see @bannanc's solution in #2.
standardize how this is done in pipeline. for
test_confs2psi.py
calling next(_) on generator did not carry over SD tags which would causetest_make_frozen()
to fail.The text was updated successfully, but these errors were encountered: