retrieveCellFeature {rliger} | R Documentation |
Retrieve a single matrix of cells from a slot
Description
Only retrieve data from specific slot to reduce memory used by
a whole liger object of the subset. Useful for plotting.
Internally used by plotDimRed
and plotCellViolin
.
Usage
retrieveCellFeature(
object,
feature,
slot = c("rawData", "normData", "scaleData", "H", "H.norm", "cellMeta", "rawPeak",
"normPeak"),
cellIdx = NULL,
...
)
Arguments
object |
liger object |
feature |
Gene names, factor index or cell metadata variable names.
Should be available in specified |
slot |
Exactly choose from |
cellIdx |
Any valid type of index that subset from all cells. Default
|
... |
Additional arguments passed to |
Value
A matrix object where rows are cells and columns are specified features.
Examples
S100A8Exp <- retrieveCellFeature(pbmc, "S100A8")
qcMetrics <- retrieveCellFeature(pbmc, c("nUMI", "nGene", "mito"),
slot = "cellMeta")
[Package rliger version 2.0.1 Index]