View source: R/countland_marker.R
RankMarkerGenes | R Documentation |
Rank the top marker genes for each cluster from spectral clustering.
RankMarkerGenes(C, method = "prop-zero", subsample = FALSE)
C |
countland object |
method |
|
subsample |
if TRUE, use subsampled counts, otherwise use counts (default=FALSE) |
countland object with slots marker_genes
and marker_full
gold_path <- system.file("testdata", package = "countland", mustWork = TRUE)
gold.data <- Seurat::Read10X(data.dir = gold_path)
C <- countland(gold.data)
C <- Dot(C)
C <- Embed(C,n_components=5)
C <- Cluster(C,n_clusters=3)
C <- RankMarkerGenes(C,method='prop-zero',subsample=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.