Skip to content

Commit 001e14d

Browse files
authored
Merge pull request #140 from CCBR/docker_sequenza
Docker sequenza
2 parents a8ad844 + 6004efd commit 001e14d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
## XAVIER development version
22

3-
## XAVIER development version
3+
## XAVIER 3.1.5
4+
5+
- Updated base docker image for sequenza (#130, @dnousome)
46

57
## XAVIER 3.1.4
68

docker/wes_base/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD5
163163
&& add-apt-repository 'deb https://cloud.r-project.org/bin/linux/ubuntu focal-cran40/' \
164164
&& apt-get -y install r-base r-base-core r-recommended r-base-dev \
165165
&& apt-get -y install libcurl4-openssl-dev libssl-dev libboost-dev libxml2-dev
166-
RUN Rscript -e 'install.packages(c("argparse", "knitr", "tidyverse", "dplyr", "plyr", "plotly", "ggplot2", "RColorBrewer", "htmlwidgets"), repos="http://cran.r-project.org")'
166+
RUN Rscript -e 'install.packages(c("argparse", "remotes", "knitr", "tidyverse", "dplyr", "plyr", "plotly", "ggplot2", "RColorBrewer", "htmlwidgets"), repos="http://cran.r-project.org")'
167167
RUN Rscript -e 'install.packages(c("shiny", "gridExtra", "flexdashboard", "rmarkdown", "crosstalk", "DT", "reshape2", "circlize", "viridis"), repos="http://cran.r-project.org")'
168168
RUN Rscript -e 'install.packages("BiocManager"); BiocManager::install(c("limma", "edgeR", "ComplexHeatmap", "rtracklayer"))'
169169

@@ -183,7 +183,8 @@ WORKDIR /opt2
183183
# https://cran.r-project.org/web/packages/sequenza/vignettes/sequenza.html#getting-started
184184
RUN pip3 install --upgrade pip \
185185
&& pip3 install sequenza-utils \
186-
&& Rscript -e 'BiocManager::install(c("copynumber")); install.packages(c("sequenza"), repos="http://cran.r-project.org")'
186+
&& Rscript -e 'remotes::install_github("ShixiangWang/copynumber"); remotes::install_github("cran/sequenza")' \
187+
&& Rscript -e 'remotes::install_version("iotools",version="0.3-2")'
187188

188189
# Install Somalier/v0.2.13
189190
# download static binary
@@ -278,4 +279,4 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
278279
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
279280

280281
COPY Dockerfile /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}
281-
RUN chmod a+r /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}
282+
RUN chmod a+r /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}

docker/wes_base/meta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dockerhub_namespace: nciccbr
22
image_name: ccbr_wes_base
3-
version: 1.1.0
3+
version: 1.1.1
44
container: "$(dockerhub_namespace)/$(image_name):$(version)"

0 commit comments

Comments
 (0)