-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RDKit failures if molgrid is imported first #65
Comments
Can you check to see if this is still a problem with 0.5.1? |
By upgrading I tried to run the same script within a Singularity container where |
It may depend on what version of boost-python rdkit was built with. |
Yes, probably a similar problem to #62. |
Not really. #62 is a problem because I am relying on bit-for-bit compatibility with openbabel data structures. The issue here is the way rdkit/boost-python are adding symbols to the python environment. I'm 80% sure the correct fix involves changed rdkit, not molgrid. |
I encountered an odd incompatibility between
molgrid
andrdkit
which seems to depend on the order of import statements. I installedmolgrid
usingpip
in aconda
environment whererdkit
has been installed from theconda-forge
channel.The following snippet works as expected:
If
molgrid
is imported beforerdkit
I get the following failure on the last line (
EmbedMultipleConfs
call):The error does not appear if
molgrid
is imported afterrdkit
:conda
environment to reproduce the issue:The text was updated successfully, but these errors were encountered: