| mutate {scater} | R Documentation |
colData(object).Add new variables to colData(object).
mutate(object, ...) ## S4 method for signature 'SingleCellExperiment' mutate(object, ...)
object |
a |
... |
Additional arguments to be passed to |
An SingleCellExperiment object.
data("sc_example_counts")
data("sc_example_cell_info")
example_sce <- SingleCellExperiment(
assays = list(counts = sc_example_counts),
colData = sc_example_cell_info)
example_sce <- mutate(example_sce, is_quiescent = Cell_Cycle == "G0")