clusterCellsInternal,scRNAseq-method | R Documentation |
Returns consensus clusters by using hierarchical clustering on the similarity matrix of cells.
clusterCellsInternal(theObject, clusterNumber=NULL, deepSplit=4, cores=2, clusteringMethod="ward.D2")
theObject |
An Object of class scRNASeq for which the count matrix was normalized (see ?normaliseCountMatrix), tSNE were calculated (see ?generateTSNECoordinates), and dbScan was run (see ?runDBSCAN), |
clusterNumber |
Exact number of cluster. Default = NULL that will determine the number of clusters automatically. |
deepSplit |
Intuitive level of clustering depth. Options are 1, 2, 3, 4. Default = 4 |
cores |
Maximum number of jobs that CONCLUS can run in parallel. Default is 1. |
clusteringMethod |
Clustering method passed to hclust() function. See ?hclust for a list of method. Default = "ward.D2". |
An object of class scRNASeq with its cellsSimilarityMatrix and sceNorm slots updated.
Ilyess RACHEDI, based on code by Polina PAVLOVICH and Nicolas DESCOSTES.
plotCellSimilarity
## Object containing the results of previous steps load(system.file("extdata/scrFull.Rdat", package="conclus")) ## Compute the cell similarity matrix scr <- clusterCellsInternal(scr, clusterNumber=4, cores=2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.