FindAllGeneMarkers | R Documentation |
FindAllGeneMarkers enables identifying gene markers for all clusters at once. This is done by differential expresission analysis where cells from one cluster are compared against the cells from the rest of the clusters. Gene and cell filters can be applied to accelerate the analysis, but this might lead to missing weak signals.
FindAllGeneMarkers.SingleCellExperiment( object, clustering.type, test, log2fc.threshold, min.pct, min.diff.pct, min.cells.group, max.cells.per.cluster, return.thresh, only.pos ) ## S4 method for signature 'SingleCellExperiment' FindAllGeneMarkers( object, clustering.type = "manual", test = "wilcox", log2fc.threshold = 0.25, min.pct = 0.1, min.diff.pct = NULL, min.cells.group = 3, max.cells.per.cluster = NULL, return.thresh = 0.01, only.pos = FALSE )
object |
of |
clustering.type |
"manual" or "optimal". "manual" refers to the clustering formed using the "SelectKClusters" function and "optimal" to the clustering formed using the "CalcSilhInfo" function. Default is "manual". |
test |
Which test to use. Only "wilcoxon" (the Wilcoxon rank-sum test, AKA Mann-Whitney U test) is supported at the moment. |
log2fc.threshold |
Filters out genes that have log2 fold-change of the
averaged gene expression values below this threshold.
Default is |
min.pct |
Filters out genes that have dropout rate (fraction of cells
expressing a gene) below this threshold in both comparison groups
Default is |
min.diff.pct |
Filters out genes that do not have this minimum
difference in the dropout rates (fraction of cells expressing a gene)
between the two comparison groups. Default is |
min.cells.group |
The minimum number of cells in the two comparison
groups to perform the DE analysis. If the number of cells is below the
threshold, then the DE analysis of this cluster is skipped.
Default is |
max.cells.per.cluster |
The maximun number of cells per cluster if
downsampling is performed to speed up the DE analysis.
Default is |
return.thresh |
If only.pos=TRUE, then return only genes that have the
adjusted p-value (adjusted by the Bonferroni method) below or equal to this
threshold. Default is |
only.pos |
Whether to return only genes that have an adjusted p-value
(adjusted by the Bonferroni method) below or equal to the threshold.
Default is |
a data frame of the results if positive results were found, else NULL
library(SingleCellExperiment) sce <- SingleCellExperiment(assays = list(logcounts = pbmc3k_500)) sce <- PrepareILoReg(sce) ## These settings are just to accelerate the example, use the defaults. sce <- RunParallelICP(sce,L=2,threads=1,C=0.1,k=5,r=1) sce <- RunPCA(sce,p=5) sce <- HierarchicalClustering(sce) sce <- SelectKClusters(sce,K=5) gene_markers <- FindAllGeneMarkers(sce)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.