我正在尝试安装生物导体的RTCGA封装,但是当我按照安装说明安装时:
## try http if https is not available
source("https://bioconductor.org/biocLite.R")
biocLite("RTCGA")我会犯这样的错误。有人知道如何克服这个问题吗?
> source("https://bioconductor.org/biocLite.R")
Bioconductor version 3.1 (BiocInstaller 1.18.5), ?biocLite for help
A newer version of Bioconductor is available for this version of R, ?BiocUpgrade for
help
> biocLite("RTCGA")
BioC_mirror: http://bioconductor.org
Using Bioconductor version 3.1 (BiocInstaller 1.18.5), R version 3.2.2.
Installing package(s) ‘RTCGA’
Warning message:
package ‘RTCGA’ is not available (for R version 3.2.2)发布于 2016-01-07 19:42:13
正如@ use 20650建议的那样,在这种情况下,应该使用devel版本的生物导体,因为这个包尚未发布以发布分支。
biocLite("BiocUpgrade")https://stackoverflow.com/questions/33224402
复制相似问题