Hello,
I'm trying to retrieve KEGG pathway names after Enrichment Analysis using KEGG.db
from Bioconductor.
library(KEGG.db)
# a key value pair: pathways to entrez id
pathway2entrez <- as.list(KEGGPATHID2EXTID)
head(pathway2entrez)
Now let's say I found the pathway hsa00232
significantly enriched. I would like to get a name for this pathway. But I didn't find a map in the variables of KEGG*
from the pathway ID (in the form hsa*
) to pathway name. Can someone give me a hint how I can do this?
That ist a good alternative! Tanks a lot!