This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Mapping Kegg Ids In Gostats

Hello everyone,

I am trying to adapt a script found on internet for using GOstats.

There is one line after a HyperG test was done that is :

goMaps <- lapply(out$GOBPID, function(x) unlist(mget(x, org.Gg.egGO2ALLEGS)))

That's for Mapping GO IDs, what shall I use instead of org.Gg.egGO2ALLEGS for mapping KEGG IDs ?

Thank you

mapping kegg gene identifiers r

1 answer

All right found it

keggMaps <- lapply(outK$KEGGID, function(x) unlist(mget(x, org.Gg.egPATH2EG)))

Log in to answer this question.