Problem in installing
1
0
Entering edit mode
AZ ▴ 30
@fereshteh-15803
Last seen 12 months ago
United Kingdom

Hi,

I don't know how to solve this error in installing DESeq2

Any help please?

> library(DESeq2)
Loading required package: GenomicRanges
Error: package ‘S4Vectors’ 0.18.1 is loaded, but >= 0.19.11 is required by ‘GenomicRanges’
In addition: Warning message:
package ‘DESeq2’ was built under R version 3.5.2 
>

Thank you

software error deseq2 • 662 views
ADD COMMENT
0
Entering edit mode
shepherl 3.8k
@lshep
Last seen 1 hour ago
United States

You will need to update the version of S4Vectors. You can check which packages are available and need updating by doing

BiocManager::valid()

It will list any packages that need updating and the command that should be run. At the very least you should update and re-install S4Vectors and probably GenomicRanges.

BiocManager::install(c("S4Vectors", "GenomicRanges", "DESeq2"))
ADD COMMENT
0
Entering edit mode

If you don't have BiocManager installed, it is Bioconductor's new way of installing and monitoring CRAN and Bioconductor packages. It is available on CRAN install.packages('BiocManager')

ADD REPLY

Login before adding your answer.

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