Description Usage Arguments Value Author(s) Examples
View source: R/getMoleculeNamesFromSDF.R
This function helps to extract a certain property from an SDF file. Usually the molecule class, like "active/non-active" or a property of the molecule, like "biological activity", is also stored in the SDF file. These values often serve as targets for a prediction task. This function is a small wrapper that extracts the information.
1 | getMoleculeNamesFromSDF(sdfile)
|
sdfile |
A character containing the name of the SDF file. |
A character vector with one name per molecule.
Guenter Klambauer <rchemcpp@bioinf.jku.at>
1 2 3 | sdfolder <- system.file("extdata",package="Rchemcpp")
sdf <- list.files(sdfolder,full.names=TRUE,pattern="small")
moleculeNames <- getMoleculeNamesFromSDF(sdf)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.