removeTrail {CellTrails} | R Documentation |
Removes trail from a SingleCellExperiment
object.
removeTrail(sce, name)
sce |
An object of class |
name |
Name of trail |
Diagnostic messages
An error is thrown if the trail name is unknown. All stored trail
names can be shown using function trailNames
.
An updated object of class SingleCellExperiment
Daniel C. Ellwanger
trailNames
addTrail
# Example data data(exSCE) # Remove trail trailNames(exSCE) exSCE <- removeTrail(exSCE, "Tr1") trailNames(exSCE)