View source: R/FindSpecificMarkers.R
| FindSpecificMarkers | R Documentation | 
Seurat object.This function finds marker genes for all clusters, and then filters those markers on a per-cluster basis against the most highly expressed genes in other clusters.
FindSpecificMarkers(
  seurat.object = NULL,
  assay.use = "RNA",
  slot.use = "data",
  ident.use = "seurat_clusters",
  de.method = "wilcox",
  perc.cutoff = 0.9,
  log2fc.cutoff = 0.25,
  fdr.cutoff = 0.05
)
| seurat.object | The  | 
| assay.use | The assay to use when testing. Defaults to "RNA". | 
| slot.use | The matrix to use when testing. Defaults to "data", for normalized counts, but "counts" (for the raw counts) can also be used. | 
| ident.use | The cell identity to group by. Defaults to "seurat_clusters". | 
| de.method | The differential expression method used in  | 
| perc.cutoff | The percentile cutoff used to find highly expressed genes in other cluster. Defaults to 0.9. | 
| log2fc.cutoff | The log2FC cutoff used, in part, to determine whether a gene is differentially expressed. Defaults to 0.25. | 
| fdr.cutoff | The cutoff used to remove DE genes with non-significant adjusted p-values. Defaults to 0.05. | 
A data.frame of markers for each cluster filtered by genes considered highly expressed in other clusters.
Jack Leary
FindAllMarkers
## Not run: 
FindSpecificMarkers(seurat_object,
                    method = "wilcox",
                    ident.use = "celltype")
FindSpecificMarkers(seurat_object,
                    method = "wilcox",
                    assay.use = "SCT",
                    slot.use = "data")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.