Description Usage Arguments Value Author(s) Examples
Each SCESet object stores optional information about the controls in the
featureControlInfo
slot. These functions can be used to access,
replace or modify this information.
1 2 3 4 5 6 7 8 9 10 11 | featureControlInfo(object)
featureControlInfo(object) <- value
featureControlInfo.SCESet(object)
## S4 method for signature 'SCESet'
featureControlInfo(object)
## S4 replacement method for signature 'SCESet,AnnotatedDataFrame'
featureControlInfo(object) <- value
|
object |
a |
value |
an AnnotatedDataFrame object, where each row contains information for a single set of control features. |
An SCESet object containing new feature control information.
Aaron Lun
1 2 3 4 5 6 7 8 | data("sc_example_counts")
data("sc_example_cell_info")
pd <- new("AnnotatedDataFrame", data = sc_example_cell_info)
example_sceset <- newSCESet(countData = sc_example_counts, phenoData = pd)
example_sceset <- calculateQCMetrics(example_sceset,
feature_controls = list(ERCC = 1:40, Mito=41:50))
featureControlInfo(example_sceset)
featureControlInfo(example_sceset)$IsSpike <- c(TRUE, FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.