getMetas {dittoSeq} | R Documentation |
Returns the names of all meta.data slots of a target object.
getMetas(object, names.only = TRUE)
object |
A Seurat, SingleCellExperiment, or SummarizedExperiment object. |
names.only |
Logical, |
A string vector of the names of all metadata slots of the object
, or alternatively the entire dataframe of metadatas if names.only
is set to FALSE
Daniel Bunis
isMeta
for checking if certain metadata slots exist in an object
meta
for obtaining the contants of metadata slots
example(importDittoBulk, echo = FALSE) # To see all metadata slots of an object getMetas(myRNA) # To retrieve the entire metadata matrix getMetas(myRNA, names.only = FALSE)