Has anybody used DOSE package in R?
1
0
Entering edit mode
9.0 years ago
>computeIC(ont = "DO", organism = "human")
Error: could not find function "computeIC"

>cnetplot.internal(x, showCategory=5, categorySize="geneNum", foldChange=NULL, fixed=TRUE)
Error: could not find function "cnetplot.internal"

Do I need any other package?

DOSE computeIC cnetplot.internal • 2.7k views
ADD COMMENT
2
Entering edit mode

library(DOSE)?

ADD REPLY
0
Entering edit mode

Yeah I am using library(DOSE)

ADD REPLY
1
Entering edit mode
9.0 years ago
Guangchuang Yu ★ 2.6k

These are un-exported functions, that means they are not exposed to user. All exported functions can be found here: https://github.com/GuangchuangYu/DOSE/blob/master/NAMESPACE

ADD COMMENT
1
Entering edit mode

To add, if your _really_ want to use these functions you can use the namespace for the library + triple colons: DOSE:::cnetplot.internal(...). BUT non-exported functions are not documented (so might not do exactly what you think they will) and may well change in the future. It's generally not a good idea to use such functions in your own code. (If there is something you can't do with the exported functions, maybe ask Guangchuang if he can add a user-exposed function for that task)

ADD REPLY

Login before adding your answer.

Traffic: 1952 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6