Description Usage Arguments Value Author(s) See Also Examples
Gives the distinct values of a meta.data slot (or ident)
1 | metaLevels(meta, object, cells.use = NULL, used.only = TRUE)
|
meta |
quoted "meta.data.slot" name = REQUIRED. the meta.data slot whose potential values should be retrieved. |
object |
A Seurat, SingleCellExperiment, or SummarizedExperiment object. |
cells.use |
String vector of cells'/samples' names OR an integer vector specifying the indices of cells/samples which should be included. Alternatively, a Logical vector, the same length as the number of cells in the object, which sets which cells to include. |
used.only |
TRUE by default, whether unused levels of already |
Returns the distinct values of a metadata slot (factor or not) among to all cells/samples, or for a subset of cells/samples.
(Alternatively, returns the distinct values of clustering if meta = "ident"
and the object is a Seurat
object).
Daniel Bunis
meta
for returning an entire metadata slots of an object
, not just the potential levels
getMetas
for returning all metadata slots of an object
isMeta
for testing whether something is the name of a metadata slot
1 2 3 4 5 6 7 8 9 | example(importDittoBulk, echo = FALSE)
metaLevels("clustering", object = myRNA)
# Note: Set 'used.only' (default = TRUE) to FALSE to show unused levels
# of metadata that are already factors. By default, only the in use options
# of a metadata are shown.
metaLevels("clustering", myRNA,
used.only = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.