trailNames<- {CellTrails} | R Documentation |
Enables to rename trails stored in a SingleCellExperiment
object.
trailNames(object) <- value
object |
An object of class |
value |
A character vector with the trail names |
Diagnostic messages
An error is thrown if the number of names does not correspond to the number
of trails stored in the object. Further, trail names are required
to be unique.
An updated object of class SingleCellExperiment
Daniel C. Ellwanger
addTrail
# Example data data(exSCE) trailNames(exSCE) trailNames(exSCE) <- c("ABC", "DEF") trailNames(exSCE)