getSampleSummaryStatsTable | R Documentation |
Stores and returns table of QC metrics generated from QC algorithms within the metadata slot of the SingleCellExperiment object.
getSampleSummaryStatsTable(inSCE, statsName, ...)
setSampleSummaryStatsTable(inSCE, statsName, ...) <- value
## S4 method for signature 'SingleCellExperiment'
getSampleSummaryStatsTable(inSCE, statsName, ...)
## S4 replacement method for signature 'SingleCellExperiment'
setSampleSummaryStatsTable(inSCE, statsName, ...) <- value
inSCE |
Input SingleCellExperiment object with saved assay data and/or colData data. Required. |
statsName |
A |
... |
Other arguments passed to the function. |
value |
The summary table for QC statistics generated from SingleCellTK to be added to the SCE object. |
For getSampleSummaryStatsTable
, A matrix/array object.
Contains a summary table for QC statistics generated from SingleCellTK. For
setSampleSummaryStatsTable<-
, A SingleCellExperiment object where the
summary table is updated in the metadata
slot.
data(scExample, package = "singleCellTK")
sce <- subsetSCECols(sce, colData = "type != 'EmptyDroplet'")
sce <- sampleSummaryStats(sce, simple = TRUE, statsName = "qc_table")
getSampleSummaryStatsTable(sce, statsName = "qc_table")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.