Description Usage Arguments Value Examples
This is a convenience function to extract a
SlingshotDataSet
from an object containing slingshot
output.
1 2 3 4 5 6 7 | SlingshotDataSet(data, ...)
## S4 method for signature 'SingleCellExperiment'
SlingshotDataSet(data)
## S4 method for signature 'SlingshotDataSet'
SlingshotDataSet(data)
|
data |
an object containing |
... |
additional arguments to pass to object-specific methods. |
A SlingshotDataSet
object containing the output of
slingshot
.
1 2 3 4 5 6 7 8 9 10 | data("slingshotExample")
rd <- slingshotExample$rd
cl <- slingshotExample$cl
library(SingleCellExperiment)
u <- matrix(rpois(140*50, 5), nrow = 50)
sce <- SingleCellExperiment(assays = list(counts = u),
reducedDims = SimpleList(PCA = rd),
colData = data.frame(clus = cl))
sce <- slingshot(sce, clusterLabels = 'clus', reducedDim = 'PCA')
SlingshotDataSet(sce)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.