% Generated by roxygen2: do not edit by hand % Please edit documentation in R/allGenerics.R, R/sampleSummaryStats.R \name{getSampleSummaryStatsTable} \alias{getSampleSummaryStatsTable} \alias{getSampleSummaryStatsTable,SingleCellExperiment-method} \title{Stores and returns table of SCTK QC outputs to metadata.} \usage{ getSampleSummaryStatsTable(inSCE, statsName, ...) \S4method{getSampleSummaryStatsTable}{SingleCellExperiment}(inSCE, statsName, ...) } \arguments{ \item{inSCE}{Input \linkS4class{SingleCellExperiment} object with saved \link{assay} data and/or \link{colData} data. Required.} \item{statsName}{A \code{character} value indicating the slot that stores the stats table within the metadata of the SingleCellExperiment object. Required.} \item{...}{Other arguments passed to the function.} } \value{ A matrix/array object. Contains a summary table for QC statistics generated from SingleCellTK. } \description{ Stores and returns table of QC metrics generated from QC algorithms within the metadata slot of the SingleCellExperiment object. } \examples{ data(scExample, package = "singleCellTK") sce <- subsetSCECols(sce, colData = "type != 'EmptyDroplet'") sce <- sampleSummaryStats(sce, simple = TRUE, statsName = "qc_table") getSampleSummaryStatsTable(sce, statsName = "qc_table") }