View source: R/diff_analysis_gene_set_enrichment.R
enrich_TF_ChEA3_scExp | R Documentation |
Find the TF that are enriched in the differential genes using ChEA3 database
enrich_TF_ChEA3_scExp(
scExp,
qval.th = 0.01,
logFC.th = 1,
min.percent = 0.01,
peak_distance = 1000,
use_peaks = FALSE,
progress = NULL,
verbose = TRUE
)
scExp |
A SingleCellExperiment object containing list of differential features. |
qval.th |
Adjusted p-value threshold to define differential features. (0.01) |
logFC.th |
Fold change threshold to define differential features. (1) |
min.percent |
Minimum fraction of cells having the feature active to consider it as significantly differential. (0.01) |
peak_distance |
Maximum distanceToTSS of feature to gene TSS to consider associated, in bp. (1000) |
use_peaks |
Use peak calling method (must be calculated beforehand). (FALSE) |
progress |
A shiny Progress instance to display progress bar. |
verbose |
A logical to print message or not. (TRUE) |
Returns a SingleCellExperiment object containing list of enriched Gene Sets for each cluster, either in depleted features, enriched features or simply differential features (both).
data("scExp")
scExp = enrich_TF_ChEA3_scExp(
scExp,
qval.th = 0.01,
logFC.th = 1,
min.percent = 0.01)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.