install.pacakges
has an option where you can specify where a package will be installed. For example:
install.packages("ggplot2", lib="/data/Rpackages/")
I use conda environments for package mangement. However, I occasionally run into a Bioconductor package which does not have a recipe. To not pollute my conda environment, I would like anything BiocInstaller
installs to be placed in $HOME/R
. I don't seen an option for this in the docs.
Is there a way?
And for completeness, I should point out that you could have found this by reading ?biocLite. See under the ... argument