rename {scater}R Documentation

Rename variables of colData(object).

Description

Rename variables of colData(object).

Usage

rename(object, ...)

## S4 method for signature 'SingleCellExperiment'
rename(object, ...)

Arguments

object

A SingleCellExperiment object.

...

Additional arguments to be passed to dplyr::rename to act on colData(object).

Value

An SingleCellExperiment object.

Examples

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 <- rename(example_sce, Cell_Phase = Cell_Cycle)


[Package scater version 1.6.3 Index]