Displaying 1 result from an estimated 1 matches for "hsa00230".
Did you mean:
hsa00232
2008 May 30
1
NAMESPACE & methods guidance, please
...-->
?? but not pkgs in Depends:
Is this correct or as intended, or is there a better conception to
have?
This model is from the following:
In 2.7.0:
> library(KEGG.db) # Imports, Depends AnnotationDbi; KEGG.db is data-only
> head(ls(KEGGPATHID2EXTID))
[1] "hsa00232" "hsa00230" "hsa04514" "hsa04010" "hsa04012" "hsa04150"
vs. in a package tmpA with a NAMESPACE with Depend: and Imports:
KEGG.db and in a new session of R
> library(tmpA)
> dokegg
function ()
{
require("KEGG.db")
head(ls(KEGGPATHID2EXTID)...