-
Notifications
You must be signed in to change notification settings - Fork 35
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
other fingerprints #24
Comments
Hi @taeoowl, Unfortunately I do not believe the command line interface for PaDEL-Descriptor returns any fingerprints besides PubChem fingerprints - further, its documentation for calculating fingerprints using the command line is somewhat ambiguous, not stating which fingerprints are calculated from the command line: http://www.yapcwsoft.com/dd/padeldescriptor/ Here are the fingerprints that PaDELPy returns when fingerprints are calculated from a SMILES string: from padelpy import from_smiles
fp = from_smiles('CCCCC', descriptors=False, fingerprints=True)
print(list(fp.keys()))
I'm going to keep this issue open, perhaps someone more experienced with the ins-and-outs of PaDEL-Descriptor could provide some insight. Best, |
Hello, You need to have a XML file describing the fingerprints that will be available...This is something that happens when you use by command line. https://stackoverflow.com/questions/43972179/padel-descriptor-on-command-line You need to set the options of the fingerprints, descriptors, etc that you want to "true". The XML file can be set with the option "-descriptortypes". |
Perfect, this looks like the correct solution. Maybe this is worth building into PaDELPy in the future... |
Hi, Thanks for the great packages!
I have simple question. Maybe my lack of ability.
When running
from_smiles()
, it only calculate Pubchem FP?I can't find any function for other FP in Readme.md.
Thank you in advance for any help you might be able to provide.
The text was updated successfully, but these errors were encountered: