fp_rdkit | R Documentation |
Compute the Daylight-like fingerprint based on hashing molecular subgraphs defined by RDKit.
fp_rdkit(mols, explicit = FALSE)
mols |
A |
explicit |
Return the fingerprints as a vector or matrix?
Default is |
mol <- parse_smiles("Cc1ccccc1")
mols <- read_smiles(tidychem_example("smi-multiple.smi"))
fp_rdkit(mol)
fp_rdkit(mols)
# get fingerprints matrix
fp_rdkit(mol, explicit = TRUE)
fp_rdkit(mols, explicit = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.