diff --git a/docker/installPackages.R b/docker/installPackages.R index bf60b7ce..9fc49b1b 100644 --- a/docker/installPackages.R +++ b/docker/installPackages.R @@ -5,12 +5,13 @@ install.packages("rmarkdown", repo="https://ftp.osuosl.org/pub/cran/") install.packages("UpSetR", repo="https://ftp.osuosl.org/pub/cran/") install.packages("testthat", repo="https://ftp.osuosl.org/pub/cran/") -source("https://bioconductor.org/biocLite.R") -biocLite("VariantAnnotation") +install.packages("BiocManager", repo="https://ftp.osuosl.org/pub/cran/") +BiocManager::install("VariantAnnotation") library(synapser) library(dplyr) library(argparse) library(UpSetR) -library(VariantAnnotation) -library(testthat) \ No newline at end of file +library(rmarkdown) +library(testthat) +library(VariantAnnotation) \ No newline at end of file