return.DE.RdA wrapper for Seurat::FindMarkers that simplifies the extraction of
Differentially Expressed (DE) genes. It supports p-value filtering and can
return either gene names or a full results table.
return.DE(
dataset,
test.use = "wilcox",
DE.ident.1,
DE.ident.2,
DE.group,
assay = "RNA",
p_cutoff = 0.05,
name.only = TRUE,
logfc.threshold = 0.25,
min.pct = 0.01,
full_list = FALSE,
...
)A Seurat object.
Character. DE test to use (default "wilcox").
Identifier(s) for the first group of cells.
Identifier(s) for the second group of cells.
Character. Metadata column to group by.
Character. Assay to use (default "RNA").
Numeric. Adjusted p-value threshold (default 0.05).
Logical. If TRUE, return gene names only.
Numeric. Minimum log fold change (default 0.1).
Numeric. Minimum fraction of cells expressing a gene.
Logical. If TRUE, return all genes and skip p-value filter.
Extra arguments passed to Seurat::FindMarkers.
A character vector of genes or a marker data.frame.