-
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 #2033 from Clinical-Genomics/release/11.2.0
Release/11.2.0
- Loading branch information
Showing
61 changed files
with
2,883 additions
and
110 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
################## BASE IMAGE ###################### | ||
|
||
FROM clinicalgenomics/mip_base:2.1 | ||
|
||
################## METADATA ###################### | ||
|
||
LABEL base_image="clinicalgenomics/mip_base:2.1" | ||
LABEL version="1" | ||
LABEL software="retroseq" | ||
LABEL software.version="1.5_9d4f3b5" | ||
LABEL extra.binaries="retroseq" | ||
LABEL maintainer="Clinical-Genomics/MIP" | ||
|
||
RUN apt-get update --fix-missing && \ | ||
apt-get install -y --no-install-recommends \ | ||
ca-certificates && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN conda install samtools exonerate bedtools bcftools && \ | ||
/opt/conda/bin/conda clean -ya | ||
|
||
RUN git clone https://github.com/tk2/RetroSeq.git /opt/conda/share/RetroSeq | ||
|
||
WORKDIR /opt/conda/share/RetroSeq | ||
|
||
## Remove samtool check | ||
## Make sure we're on the right commit and remove samtools check | ||
RUN git reset --hard 9d4f3b5 && \ | ||
sed -i '/RetroSeq::Utilities::checkBinary( q\[samtools\].*/d' ./bin/retroseq.pl |
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 |
---|---|---|
|
@@ -93,6 +93,7 @@ rd_dna: | |
- picard | ||
- plink | ||
- python | ||
- retroseq | ||
- rhocall | ||
- rtg-tools | ||
- sambamba | ||
|
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.