- 
                Notifications
    You must be signed in to change notification settings 
- Fork 261
Description
##code
library(AnnotationHub)
library(rlang)
require(clusterProfiler)
#bitr(keys(maize)[1], 'ENTREZID', c("REFSEQ", "GO", "ONTOLOGY"), maize)
gene<-read.table("gene.txt",header=FALSE)
require(DOSE)
gene<-as.character(gene[,1])
ekk <- enrichKEGG(gene,organism = "zma",pAdjustMethod = "BH",pvalueCutoff = 0.05,use_internal_data = F)
##error
fail to download KEGG data...
Error in download.KEGG.Path(species) :
'species' should be one of organisms listed in 'http://www.genome.jp/kegg/catalog/org_list.html'...
Calls: enrichKEGG ... prepare_KEGG -> download_KEGG -> download.KEGG.Path
In addition: Warning message:
In utils::download.file(url, quiet = quiet, method = "libcurl",  :
URL 'https://rest.kegg.jp/link/zma/pathway': status was 'Failure when receiving data from the peer'
##code
devtools::install_github("YuLab-SMU/createKEGGdb",force = TRUE)
library(createKEGGdb)
createKEGGdb::create_kegg_db(organism = "zma")
##error
Error in createKEGGdb::create_kegg_db(organism = "zma") :
unused argument (organism = "zma")
I can not understand,Can you help me?