Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions conf/containers.config
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@
container = "cmopipeline/metadataparser:0.5.9"
}
withName:SomaticDellyCall {
container = "cmopipeline/delly-bcftools:0.0.1"
container = "cmopipeline/delly-bcftools:0.0.3"
}
withName:'.*DellyCombine' {
container = "cmopipeline/delly-bcftools:0.0.1"
container = "cmopipeline/delly-bcftools:0.0.3"
}
withName:SomaticRunManta {
container = "cmopipeline/strelka2-manta-bcftools-vt:2.0.1"
Expand Down Expand Up @@ -115,7 +115,7 @@
//------------------- Germline pipeline

withName:GermlineDellyCall {
container = "cmopipeline/delly-bcftools:0.0.1"
container = "cmopipeline/delly-bcftools:0.0.3"
}
withName:GermlineRunHaplotypecaller {
container = "broadinstitute/gatk:4.1.0.0"
Expand Down
18 changes: 12 additions & 6 deletions containers/delly-bcftools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@ FROM halllab/bcftools:v1.9

LABEL maintainer="Anne Marie Noronha (noronhaa@mskcc.org)" \
version.ubuntu="18.04" \
version.delly="0.8.2" \
version.htslib="1.9"
version.delly="1.5.0" \
version.htslib="1.20" \
version.image="0.0.4"

# set the environment variables
ENV delly_version 0.8.2
ENV htslib_version 1.9
ENV delly_version=1.5.0
ENV htslib_version=1.20

# APT repository has moved to archive. Sources needs to change.
RUN sed -i /stretch-updates/d /etc/apt/sources.list
RUN sed -i "s/security.debian/archive.debian/g" /etc/apt/sources.list
RUN sed -i "s/deb.debian/archive.debian/g" /etc/apt/sources.list

# run update
RUN apt-get update -y && apt-get install -y \
RUN apt-get update -y && apt-get install -y --allow-unauthenticated \
libnss-sss \
curl \
less \
Expand All @@ -37,7 +43,7 @@ RUN tar -xjf /usr/local/bin/htslib-${htslib_version}.tar.bz2 -C /usr/local/bin/
RUN cd /usr/local/bin/htslib-${htslib_version}/ && ./configure
RUN cd /usr/local/bin/htslib-${htslib_version}/ && make
RUN cd /usr/local/bin/htslib-${htslib_version}/ && make install
ENV LD_LIBRARY_PATH /usr/local/bin/htslib-${htslib_version}/
ENV LD_LIBRARY_PATH=/usr/local/bin/htslib-${htslib_version}/

# install delly
WORKDIR /usr/local/bin
Expand Down