bio-pathway-kegg-pathways
Installation
SKILL.md
KEGG Pathway Enrichment
Core Pattern
library(clusterProfiler)
kk <- enrichKEGG(
gene = gene_list, # Character vector of gene IDs
organism = 'hsa', # KEGG organism code
pvalueCutoff = 0.05,
pAdjustMethod = 'BH'
)
Prepare Gene List
library(org.Hs.eg.db)