selectFeatures | R Documentation |
Selects features from raw data by looking at "signal" (if specified) or "counts" from rawData
.
selectFeatures(rawData, keep)
rawData |
a list of raw data obtained from |
keep |
a character vector specifying which signals or counts to keep. |
Returns the selected raw data.
Rehrauer, Hubert
Schmid, Peter
param = ezParam()
param$dataRoot = system.file(package="ezRun", mustWork = TRUE)
file = system.file("extdata/yeast_10k_STAR_counts/dataset.tsv", package="ezRun", mustWork = TRUE)
input = EzDataset$new(file=file, dataRoot=param$dataRoot)
rawData = loadCountDataset(input, param)
keep = "YFR014C"
rd2 = selectFeatures(rawData, keep)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.