Description Usage Arguments Value Author(s) See Also Examples
Sample Barcode Metrics
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## S4 method for signature 'matrix'
metrics(object, rowData = NULL, prefilter = FALSE)
## S4 method for signature 'dgCMatrix'
metrics(object, rowData = NULL, prefilter = FALSE)
## S4 method for signature 'dgTMatrix'
metrics(object, rowData = NULL, prefilter = FALSE)
## S4 method for signature 'SingleCellExperiment'
metrics(object, interestingGroups)
## S4 method for signature 'seurat'
metrics(object, ...)
|
object |
Object. |
rowData |
Data describing the rows of the object. |
prefilter |
Whether to apply pre-filtering to the cellular barcodes. |
interestingGroups |
Character vector of interesting groups. Must be
formatted in camel case and intersect with |
... |
Additional arguments. |
data.frame
with cellular barcodes as rows.
Michael Steinbaugh, Rory Kirchner
Other Quality Control Functions: barcodeRanksPerSample
,
filterCells
, plotCellCounts
,
plotGenesPerCell
,
plotMitoRatio
,
plotMitoVsCoding
,
plotNovelty
, plotQC
,
plotReadsPerCell
,
plotUMIsPerCell
,
plotZerosVsDepth
1 2 3 4 5 6 7 8 9 | # SingleCellExperiment ====
x <- metrics(cellranger_small)
glimpse(x)
# dgCMatrix ====
counts <- counts(cellranger_small)
class(counts)
x <- metrics(counts)
glimpse(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.