R/de.genes.R
de_selected_pairs.RdPerform pairwise differential gene expression tests between main pairs of clusters in parallel
de_selected_pairs(
norm.dat,
cl,
pairs,
method = "limma",
low.th = 1,
min.cells = 4,
cl.means = NULL,
cl.present = NULL,
use.voom = FALSE,
counts = NULL,
mc.cores = 1
)a normalized data matrix for data.
a cluster factor object.
A 2-column matrix of cluster pairs.
Either "limma" or "chisq".
The minimum expression value used to filter for expressed genes.
A matrix of proportions of cells in each cluster with gene detection. Can be generated with get_cl_props(). Default is NULL (will be generated).
Logical, whether or not to use voom() for limma calculations. Default is FALSE.
A matrix of raw count data for each cell. Required if use.voom is TRUE. Default is NULL.
A number indicating how many processor cores to use for parallelization.