Returns a character vector of the tables within the metadata slot of the SingleCellExperiment object.

listSampleSummaryStatsTables(inSCE, ...)

# S4 method for SingleCellExperiment
listSampleSummaryStatsTables(inSCE, ...)

Arguments

inSCE

Input SingleCellExperiment object with saved table within the metadata data. Required.

...

Other arguments passed to the function.

Value

A character vector. Contains a list of summary tables within the SingleCellExperiment object.

Examples

data(scExample, package = "singleCellTK")
sce <- subsetSCECols(sce, colData = "type != 'EmptyDroplet'")
sce <- sampleSummaryStats(sce, simple = TRUE, statsName = "qc_table")
listSampleSummaryStatsTables(sce)
#> [1] "qc_table"