Cannot install DeSeq on RStudio version 6.3.2
1
0
Entering edit mode
enriqueza • 0
@enriqueza-23824
Last seen 4.2 years ago

Hello,

I am trying to install DeSeq on my RStudio, but it is not working. Is it because of the version I have (3.6.2) or something else? Thanks for the help!

deseq2 • 471 views
ADD COMMENT
0
Entering edit mode

You need to provide more information, like cutting and pasting what happens when you do

library(BiocManager)
BiocManager::install("DESeq")

and the output from running sessionInfo().

Also, do note that DESeq has been deprecated and you should be using DESeq2 instead.

ADD REPLY
1
Entering edit mode
Kevin Blighe ★ 4.0k
@kevin
Last seen 4 weeks ago
Republic of Ireland

If you mean the package DESeq, it is (or will be) deprecated. Instead, you may want to install DESeq2, via:

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

BiocManager::install('DESeq2')

Kevin

ADD COMMENT

Login before adding your answer.

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