R/enhance_enrichGO.R
enhance_enrichGO.Rd
GO Enrichment Analysis of a gene set. Given a vector of genes, this function will return the enrichment GO categories after FDR control.
enhance_enrichGO(
gene,
OrgDb,
keyType = "ENTREZID",
ont = "MF",
pvalueCutoff = 0.05,
pAdjustMethod = "BH",
universe,
qvalueCutoff = 0.2,
minGSSize = 10,
maxGSSize = 500,
readable = FALSE,
pool = FALSE,
simplify = FALSE
)
a vector of entrez gene id.
OrgDb
keytype of input gene
One of "BP", "MF", and "CC" subontologies, or "ALL" for all three.
adjusted pvalue cutoff on enrichment tests to report
one of "holm", "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr", "none"
background genes. If missing, the all genes listed in the database (eg TERM2GENE table) will be used as background.
qvalue cutoff on enrichment tests to report as significant. Tests must pass i) pvalueCutoff
on unadjusted pvalues, ii) pvalueCutoff
on adjusted pvalues and iii) qvalueCutoff
on qvalues to be reported.
minimal size of genes annotated by Ontology term for testing.
maximal size of genes annotated for testing
whether mapping gene ID to gene Name
If ont='ALL', whether pool 3 GO sub-ontologies
whether simplify
An enrichResult
instance.
enrichResult-class
, compareCluster