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
>
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.
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')
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')