Description Usage Arguments Details Examples
ClussCluster takes the single-cell transcriptome data and returns an object containing cell types and type-specific signature gene sets
1 2 3  | 
x | 
 An nxp data matrix. There are n cells and p genes.  | 
nclust | 
 Number of clusters desired if the cluster centers are not provided. If both are provided, nclust must equal the number of cluster   | 
centers | 
 A set of initial (distinct) cluster centres if the number of clusters (  | 
ws | 
 One or multiple candidate tuning parameters to be evaluated and compared. Determines the sparsity of the selected genes. Should be greater than 1.  | 
nepoch.max | 
 The maximum number of epochs. In one epoch, each cell will be evaluated to determine if its label needs to be updated.  | 
theta | 
 Optional argument. If provided,   | 
seed | 
 This seed is used wherever K-means is used.  | 
nstart | 
 Argument passed to   | 
iter.max | 
 Argument passed to   | 
verbose | 
 Print the updates inside every epoch? If TRUE, the updates of cluster label and the value of objective function will be printed out.  | 
progress | 
 Print the progress? If multiple tuning parameters are evaluated, then each tuning parameter will be printed when   | 
Takes the normalized and log transformed number of reads mapped to genes (e.g., log(RPKM+1) or log(TPM+1) where RPKM stands for Reads Per Kilobase of transcript per Million mapped reads and TPM stands for transcripts per million) but NOT centered.
1 2 3 4 5 6 7  | ## Not run: 
data(Hou)
hou.dat <-Hou$x
run.ft <- filter_gene(hou.dat)
hou.test <- ClussCluster(run.ft$dat.ft, nclust=3, ws=4, verbose = F)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.