allCids {bioassayR} | R Documentation |
BioassayDB
, bioassay
, bioassaySet
, or target matrix (dgCMatrix
) object
Returns a vector
of small molecule cids contained within a
BioassayDB
, bioassay
, bioassaySet
, or target matrix (dgCMatrix
) object.
It can optionally only returned cids labeled as active.
allCids(inputObject, activesOnly = FALSE)
inputObject |
A |
activesOnly |
logical. Should only active compounds be returned? Defaults to FALSE. |
A vector
of distinct small molecule cids. No particular order
is guranteed.
Tyler Backman
## connect to a test database extdata_dir <- system.file("extdata", package="bioassayR") sampleDatabasePath <- file.path(extdata_dir, "sampleDatabase.sqlite") sampleDB <- connectBioassayDB(sampleDatabasePath) ## get all compound cids myCids <- allCids(sampleDB) ## get only active compound cids activeCids <- allCids(sampleDB, activesOnly = TRUE) ## disconnect from database disconnectBioassayDB(sampleDB)