-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1967 from Clinical-Genomics/release/11.0.0
Release/11.0.0
- Loading branch information
Showing
156 changed files
with
4,391 additions
and
4,117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,30 @@ | ||
################## BASE IMAGE ###################### | ||
|
||
FROM continuumio/miniconda3:4.7.12 | ||
FROM python:2.7-slim | ||
|
||
################## METADATA ###################### | ||
|
||
LABEL base_image="continuumio/miniconda3:4.7.12" | ||
LABEL base_image="python:2.7-slim" | ||
LABEL version="2" | ||
LABEL software="BootstrapAnn" | ||
LABEL software.version="df02f35" | ||
LABEL software.version="e557dd3" | ||
LABEL extra.binaries="BootstrapAnn.py" | ||
LABEL maintainer="Clinical-Genomics/MIP" | ||
|
||
RUN apt-get --allow-releaseinfo-change update --fix-missing && \ | ||
apt-get install -y --no-install-recommends procps && \ | ||
apt-get clean && \ | ||
RUN apt-get update && apt-get install -y git | ||
RUN apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN conda install pip python=2.7 numpy scipy && \ | ||
/opt/conda/bin/conda clean -ya | ||
RUN pip install numpy scipy | ||
|
||
## Clone git repository | ||
RUN git clone https://github.com/J35P312/BootstrapAnn.git /opt/conda/share/BootstrapAnn | ||
RUN git clone https://github.com/J35P312/BootstrapAnn.git /usr/local/BootstrapAnn | ||
|
||
WORKDIR /opt/conda/share/BootstrapAnn | ||
RUN cd /usr/local/BootstrapAnn && git checkout e557dd3 | ||
|
||
RUN git checkout df02f35 | ||
RUN cd /usr/local/BootstrapAnn && \ | ||
chmod a+x BootstrapAnn.py | ||
|
||
RUN chmod a+x BootstrapAnn.py | ||
|
||
RUN ln --symbolic --force /opt/conda/share/BootstrapAnn/BootstrapAnn.py /opt/conda/bin/BootstrapAnn.py | ||
RUN ln --symbolic --force /usr/local/BootstrapAnn/BootstrapAnn.py /usr/local/bin/BootstrapAnn.py | ||
|
||
WORKDIR /data/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
################## BASE IMAGE ###################### | ||
|
||
FROM clinicalgenomics/mip_base:2.1 | ||
|
||
################## METADATA ###################### | ||
|
||
LABEL base-image="clinicalgenomics/mip_base:2.1" | ||
LABEL version="1" | ||
LABEL software="glnexus" | ||
LABEL software.version="1.4.1" | ||
LABEL extra.binaries="glnexus" | ||
LABEL maintainer="Clinical-Genomics/MIP" | ||
|
||
WORKDIR /app | ||
|
||
ENV PATH="/app:${PATH}" | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
libc6 \ | ||
ca-certificates && \ | ||
apt-get clean && \ | ||
apt-get purge && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
wget --no-verbose https://github.com/dnanexus-rnd/GLnexus/releases/download/v1.4.1/glnexus_cli && \ | ||
chmod 755 /app/glnexus_cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
################## BASE IMAGE ###################### | ||
|
||
FROM clinicalgenomics/mip_base:2.1 | ||
|
||
################## METADATA ###################### | ||
|
||
LABEL base-image="clinicalgenomics/mip_base:2.1" | ||
LABEL version="1" | ||
LABEL software="HmtNote" | ||
LABEL software.version="0.7.2" | ||
LABEL extra.binaries="HmtNote" | ||
LABEL maintainer="Clinical-Genomics/MIP" | ||
|
||
## Conda env installation + clean up | ||
RUN conda install pip python=3.7 && \ | ||
/opt/conda/bin/conda clean -tipsy | ||
|
||
# Install HmtNote | ||
RUN pip install --no-cache-dir hmtnote==0.7.2 && \ | ||
hmtnote dump | ||
|
||
WORKDIR /data/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.