I have been trying to download the to MuSiC to analyze RNAseq data. The code I am working is from the tutorial page:
# install devtools if necessary
install.packages('devtools')
# install the MuSiC package
devtools::install_github('xuranw/MuSiC')
# load
library(MuSiC)
I am working in a lab remote server, and this code results in error "package was installed before R 4.0.0." When I use this same code on my computer (not logged into remote server) it works. I tried using BiocManager::install('devtools') as an alternative way to download devtools, but this resulted in the same error. Are there any workarounds to this issue that do not involve re-downloading R to the remote server?
Thank you for your help.
Thank you.