projcells {RaceID} | R Documentation |
Compute transcriptome entropy of each cell
Description
This function computes the projections of cells onto inter-cluster links in a high-dimensional embedded space.
Usage
projcells(object, cthr = 5, nmode = TRUE, knn = 3, fr = FALSE, um = FALSE)
Arguments
object |
|
cthr |
Positive integer number. Clusters to be included into the StemID2 analysis must contain more than |
nmode |
logical. If |
knn |
Positive integer number. See |
fr |
logical. Use Fruchterman-Rheingold layout instead of t-SNE for dimensional-reduction representation of the lineage graph. Default is |
um |
logical. Use umap representation instead of t-SNE for dimensional-reduction representation of the lineage graph. Default is |
Value
An Ltree class object with all information on cell projections onto links stored in the ldata
slot.
Examples
sc <- SCseq(intestinalDataSmall)
sc <- filterdata(sc)
sc <- compdist(sc)
sc <- clustexp(sc)
sc <- findoutliers(sc)
sc <- comptsne(sc)
ltr <- Ltree(sc)
ltr <- compentropy(ltr)
ltr <- projcells(ltr)