Installing Bioconductor packages [🇷 for BE/BA]
recently it took me ages to realize that a certain package is not available at
CRAN
but at Bioconductor
. Example: Say you want to install package foo
from Bioconductor. First I suggest to update the packages from CRAN by the usual method. Open the R-console andupdate.packages(checkBuilt=TRUE, ask=FALSE)
There are binary versions available but the source versions are later:
binary source needs_compilation
compositions 1.40-1 1.40-2 TRUE
logspline 2.1.10 2.1.11 TRUE
MASS 7.3-49 7.3-50 TRUE
polspline 1.1.12 1.1.13 TRUE
progress 1.1.2 1.2.0 FALSE
recipes 0.1.2 0.1.3 FALSE
spatstat 1.55-1 1.56-0 TRUE
stringi 1.1.7 1.2.3 TRUE
survival 2.41-3 2.42-3 TRUE
Package which is only available in source form, and may need
compilation of C/C++/Fortran: ‘gpuR’
source("https://bioconductor.org/biocLite.R")
biocLite("foo")
Update all/some/none? [a/s/n]:
n
) unless you know what you are doing.Dif-tor heh smusma 🖖🏼 Довге життя Україна!
![[image]](https://static.bebac.at/pics/Blue_and_yellow_ribbon_UA.png)
Helmut Schütz
![[image]](https://static.bebac.at/img/CC by.png)
The quality of responses received is directly proportional to the quality of the question asked. 🚮
Science Quotes
Complete thread:
- Installing Bioconductor packagesHelmut 2018-06-17 15:36 [🇷 for BE/BA]