run enrichgesKEGG and make output files
enrichgesKEGG_run(
deg_data,
x,
dir = ".",
prefix = "5-EnrichgseKEGG",
pvalue_cut = 0.1,
enrichmentScore_cut = 0.5,
top = -10,
organism = "hsa",
keyType = "kegg",
OrgDb = "org.Hs.eg.db",
exponent = 1,
minGSSize = 10,
maxGSSize = 500,
eps = 1e-10,
pvalueCutoff = 0.05,
pAdjustMethod = "BH",
verbose = TRUE,
use_internal_data = FALSE,
seed = FALSE,
by = "fgsea"
)
a DEG data frame contains logFC and p value
which column is log FC
where to save results files
a prefix of file names in this step
filter by pvalue
filter by enrichmentScore
top rows of up and down
supported organism listed in 'http://www.genome.jp/kegg/catalog/org_list.html'
one of "kegg", 'ncbi-geneid', 'ncib-proteinid' and 'uniprot'
OrgDb
weight of each step
minimal size of each geneSet for analyzing
maximal size of genes annotated for testing
This parameter sets the boundary for calculating the p value.
pvalue Cutoff
pvalue adjustment method
print message or not
logical, use KEGG.db or latest online KEGG data
logical
one of 'fgsea' or 'DOSE'
a list of file
if (FALSE) {
enrichgesKEGG_run(deg_data = DEG_df, x = "log2FoldChange", dir = tempdir(),eps = 0)
}