problem for installing packages
2
0
Entering edit mode
2.8 years ago
fahim ▴ 20

I got a trouble for installing ReactomePA package.When i tried to library call the bellow lines has been shown.

Error: package or namespace load failed for 'ReactomePA' in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): there is no package called 'reactome.db'

ReactomePA • 2.5k views
ADD COMMENT
1
Entering edit mode
2.8 years ago
4galaxy77 2.8k

Whenever you get an error like that in R, it means you need to install the library. In this case, try install.packages("reactome.db").

In fact, in this case, install it from bioconductor:

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("reactome.db")
ADD COMMENT
0
Entering edit mode
2.8 years ago
fahim ▴ 20

Thanks .It works

ADD COMMENT

Login before adding your answer.

Traffic: 1454 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