R/305-extractDrugAromaticAtomsCount.R
extractDrugAromaticAtomsCount.Rd
Calculate the Number of Aromatic Atoms Descriptor
extractDrugAromaticAtomsCount(molecules, silent = TRUE)
molecules | Parsed molucule object. |
---|---|
silent | Logical. Whether the calculating process
should be shown or not, default is |
A data frame, each row represents one of the molecules,
each column represents one feature.
This function returns one column named naAromAtom
.
Calculates the number of aromatic atoms of a molecule.
# NOT RUN { smi = system.file('vignettedata/FDAMDD.smi', package = 'Rcpi') # }# NOT RUN { mol = readMolFromSmi(smi, type = 'mol') dat = extractDrugAromaticAtomsCount(mol) head(dat) # }