-
Notifications
You must be signed in to change notification settings - Fork 4
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 #41 from Pathogen-Genomics-Cymru/0.9.7-dev
0.9.7 dev
- Loading branch information
Showing
13 changed files
with
110 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ name: build-push-quay | |
on: | ||
push: | ||
branches: | ||
- main | ||
- v0.9.6 | ||
- 0.9.7-dev | ||
paths: | ||
- '**/Dockerfile*' | ||
|
||
|
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
File renamed without changes.
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 |
---|---|---|
|
@@ -5,19 +5,21 @@ LABEL maintainer="[email protected]" \ | |
about.summary="container for the preprocessing workflow" | ||
|
||
ENV samtools_version=1.12 \ | ||
bcftools_version=1.12 \ | ||
htslib_version=1.12 \ | ||
bedtools_version=2.29.2 \ | ||
bowtie2_version=2.4.2 \ | ||
fastp_version=0.20.1 \ | ||
fastqc_version=0.11.9 \ | ||
fqtools_version=2.3 \ | ||
kraken2_version=2.1.1 \ | ||
afanc_version=0.9.2 \ | ||
afanc_version=0.10.2 \ | ||
mykrobe_version=0.12.1 \ | ||
bwa_version=0.7.17 \ | ||
mash_version=2.3 | ||
mash_version=2.3 \ | ||
fastani_version=1.33 | ||
|
||
ENV PACKAGES="procps curl git wget build-essential zlib1g-dev libncurses-dev libz-dev libbz2-dev liblzma-dev libcurl4-openssl-dev rsync unzip ncbi-blast+ pigz jq libtbb-dev openjdk-11-jre-headless autoconf r-base-core locales locales-all" \ | ||
ENV PACKAGES="procps curl git wget build-essential zlib1g-dev libncurses-dev libz-dev libbz2-dev liblzma-dev libcurl4-openssl-dev libgsl-dev rsync unzip ncbi-blast+ pigz jq libtbb-dev openjdk-11-jre-headless autoconf r-base-core locales locales-all" \ | ||
PYTHON="python3 python3-pip python3-dev" \ | ||
PYTHON_PACKAGES="biopython" | ||
|
||
|
@@ -36,7 +38,11 @@ RUN curl -fsSL https://github.com/samtools/samtools/archive/${samtools_version}. | |
&& curl -fsSL https://github.com/samtools/htslib/releases/download/${htslib_version}/htslib-${htslib_version}.tar.bz2 | tar -xj \ | ||
&& make -C samtools-${samtools_version} -j HTSDIR=../htslib-${htslib_version} \ | ||
&& make -C samtools-${samtools_version} -j HTSDIR=../htslib-${htslib_version} prefix=/usr/local install \ | ||
&& rm -r samtools-${samtools_version} | ||
&& rm -r samtools-${samtools_version} \ | ||
&& curl -fsSL https://github.com/samtools/bcftools/archive/refs/tags/${bcftools_version}.tar.gz | tar -xz \ | ||
&& make -C bcftools-${bcftools_version} -j HTSDIR=../htslib-${htslib_version} \ | ||
&& make -C bcftools-${bcftools_version} -j HTSDIR=../htslib-${htslib_version} prefix=/usr/local install \ | ||
&& rm -r bcftools-${bcftools_version} | ||
|
||
RUN curl -fsSL https://github.com/alastair-droop/fqtools/archive/v${fqtools_version}.tar.gz | tar -xz \ | ||
&& mv htslib-${htslib_version} fqtools-${fqtools_version} \ | ||
|
@@ -90,7 +96,10 @@ RUN curl -fsSL https://github.com/ArthurVM/Afanc/archive/refs/tags/v${afanc_vers | |
&& cd .. \ | ||
&& curl -fsSL "https://github.com/marbl/Mash/releases/download/v${mash_version}/mash-Linux64-v${mash_version}.tar" | tar -x \ | ||
&& mv mash-Linux64-v${mash_version}/mash /usr/local/bin \ | ||
&& rm -r mash-Linux* | ||
&& rm -r mash-Linux* \ | ||
&& wget https://github.com/ParBLiSS/FastANI/releases/download/v${fastani_version}/fastANI-Linux64-v${fastani_version}.zip \ | ||
&& unzip fastANI-Linux64-v${fastani_version}.zip \ | ||
&& mv fastANI /usr/local/bin | ||
|
||
RUN sh -c "$(curl -fsSL ftp://ftp.ncbi.nlm.nih.gov/entrez/entrezdirect/install-edirect.sh)" \ | ||
&& mkdir -p /opt/edirect \ | ||
|
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
Oops, something went wrong.