Dear BioC community,
I'm trying to install the rnaseqGene workflow in R 3.2.2 with BioC 3.2 and I get the following error:
> source("http://bioconductor.org/workflows.R") Bioconductor version 3.2 (BiocInstaller 1.20.0), ?biocLite for help Error: BiocInstaller:::BIOC_VERSION == "3.1" is not TRUE
Now, looking inside http://bioconductor.org/workflows.R, I see this
source("http://bioconductor.org/biocLite.R") # FIXME, don't hardcode version number stopifnot(BiocInstaller:::BIOC_VERSION == "3.1") workflowInstall <- function(pkg, ...) { repos <- c(biocinstallRepos(), "http://bioconductor.org/packages/3.1/workflows") install.packages(pkg, repos=repos, ...) }
Copying and pasting the definition of workflowInstall() works in BioC 3.2, but only if using the same URL. If I try to substitute "http://bioconductor.org/packages/3.1/workflows" with "http://bioconductor.org/packages/3.2/workflows", it won't find the package.
Are workflows not available (yet) for BioC 3.2?
Thanks Dan!
Hi Dan,
I have been trying to install workflows since yesterday and keep getting an error below. The link seems to be broken. Or am I missing something obvious?
> sessionInfo()
R version 3.2.1 (2015-06-18)
Platform: x86_64-apple-darwin13.4.0 (64-bit)
Running under: OS X 10.11.1 (unknown)
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] BiocInstaller_1.20.0
loaded via a namespace (and not attached):
[1] tools_3.2.1
An update from this issue. I think it only happens for the latest version of MAC OS 10.11.* (El Capitan). I guess the binaries are not available for this OS? I tried to install it from source but I did not manage:
repos <- c(biocinstallRepos(), "http://bioconductor.org/packages/3.2/workflows")
install.packages("rnaseqGene", repos=repos, type="source")
but the following works:
install.packages("ggplot2", repos=repos, type="source")
I just tried the same lines you did on Yosemite and it worked fine.
In fact I did not even need to specify type="source".
I did get a warning but it did not affect the success of the installation.