Skip to content

Commit

Permalink
Merge pull request #208 from Sage-Bionetworks/fix-docker-r-install
Browse files Browse the repository at this point in the history
Install bioconductor packages correctly
  • Loading branch information
kkdang authored Oct 4, 2019
2 parents db956bc + 27025db commit 301f907
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docker/installPackages.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
library(rmarkdown)
library(testthat)
library(VariantAnnotation)

0 comments on commit 301f907

Please sign in to comment.