View source: R/Identify_Markers.R
Identify_Markers | R Documentation |
This function first identify marker genes in each cluster with Roc threshold > RocThr. Then, based on marker genes identified above, this function calculates the difference and power of marker genes in each cluster, and marker genes with Difference threshold > DiffThr will be retained. Next, gene with the largest power in which cluster will be the marker gene in this cluster. Eventually, make fisher test for power of each cluster, cluster with p.value < 0.05 will be retained as the final cluster for marker gene
Identify_Markers( Seurat_object, PowerCutoff = 0.4, DifferenceCutoff = 0, PvalueCutoff = 0.05 )
Seurat_object |
Seurat object, should contain cluster information |
PowerCutoff |
numeric, indicating the cutoff of gene power to refine marker genes |
DifferenceCutoff |
numeric, indicating the cutoff of difference in marker genes between clusters to refine marker genes |
PvalueCutoff |
numeric, indicating the p.value cutoff of chi-square test to refine marker genes |
Data frame of conserved markers
data("pbmc_small") all.markers <- Identify_Markers(pbmc_small)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.