We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when i try to run the cod on collab here it cames
AttributeError Traceback (most recent call last) in () 1 pipeline = vs(n_cpu=8) 2 # Load ligands from a mol2 file ----> 3 pipeline.load_ligands('mol2', '/content/oddt/jcheminf/ampc/actives_final.mol2.gz') 4 # Filter ligands by weight and solubility 5 pipeline.apply_filter('150 < mol.molwt < 350')
/content/oddt/oddt/virtualscreening.py in load_ligands(self, fmt, ligands_file, **kwargs) 104 105 """ --> 106 if fmt == 'mol2' and oddt.toolkit.backend == 'ob': 107 if 'opt' in kwargs: 108 kwargs['opt']['c'] = None
AttributeError: 'NoneType' object has no attribute 'backe
The text was updated successfully, but these errors were encountered:
You have to install at least one backend (openbabel or rdkit)
conda install -c conda-forge openbabel
conda install -c conda-forge rdkit
Sorry, something went wrong.
No branches or pull requests
when i try to run the cod on collab here it cames
AttributeError Traceback (most recent call last)
in ()
1 pipeline = vs(n_cpu=8)
2 # Load ligands from a mol2 file
----> 3 pipeline.load_ligands('mol2', '/content/oddt/jcheminf/ampc/actives_final.mol2.gz')
4 # Filter ligands by weight and solubility
5 pipeline.apply_filter('150 < mol.molwt < 350')
/content/oddt/oddt/virtualscreening.py in load_ligands(self, fmt, ligands_file, **kwargs)
104
105 """
--> 106 if fmt == 'mol2' and oddt.toolkit.backend == 'ob':
107 if 'opt' in kwargs:
108 kwargs['opt']['c'] = None
AttributeError: 'NoneType' object has no attribute 'backe
The text was updated successfully, but these errors were encountered: