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
Can you please share the script of drug smiles conversion to fingerprint? I want values as you have in the event database 0|12|23|.........
from rdkit import Chem from rdkit.Chem import AllChem mol = Chem.MolFromSmiles('CC(C)C1=C(C(=C(N1CCC@HO)C2=CC=C(C=C2)F)C3=CC=CC=C3)C(=O)NC4=CC=CC=C4') fp = AllChem.GetMorganFingerprintAsBitVect(mol, 2, nBits=881) print(fp.ToBitString())
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Can you please share the script of drug smiles conversion to fingerprint? I want values as you have in the event database 0|12|23|.........
from rdkit import Chem
from rdkit.Chem import AllChem
mol = Chem.MolFromSmiles('CC(C)C1=C(C(=C(N1CCC@HO)C2=CC=C(C=C2)F)C3=CC=CC=C3)C(=O)NC4=CC=CC=C4')
fp = AllChem.GetMorganFingerprintAsBitVect(mol, 2, nBits=881)
print(fp.ToBitString())
The text was updated successfully, but these errors were encountered: