-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor changes to medaka dockerfile and readme; also updated run-singu…
…larity.yml to use a different runner and more importantly apptainer github action to see if it will appropriately test singularity/apptainer functionality
- Loading branch information
Showing
3 changed files
with
15 additions
and
15 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ ARG BCFTOOLS_VER=${SAMTOOLS_VER} | |
ARG HTSLIB_VER=${SAMTOOLS_VER} | ||
ARG MINIMAP2_VER="2.28" | ||
|
||
FROM ubuntu:jammy as builder | ||
FROM ubuntu:jammy AS builder | ||
|
||
ARG SAMTOOLS_VER | ||
ARG BCFTOOLS_VER | ||
|
@@ -66,18 +66,18 @@ RUN wget -q https://github.com/samtools/samtools/releases/download/${SAMTOOLS_VE | |
make install | ||
|
||
RUN wget -q https://github.com/samtools/htslib/releases/download/${HTSLIB_VER}/htslib-${HTSLIB_VER}.tar.bz2 && \ | ||
tar -vxjf htslib-${HTSLIB_VER}.tar.bz2 && \ | ||
tar -xjf htslib-${HTSLIB_VER}.tar.bz2 && \ | ||
rm -v htslib-${HTSLIB_VER}.tar.bz2 && \ | ||
cd htslib-${HTSLIB_VER} && \ | ||
./configure && \ | ||
make && \ | ||
make install | ||
|
||
RUN curl -L https://github.com/lh3/minimap2/releases/download/v${MINIMAP2_VER}/minimap2-${MINIMAP2_VER}_x64-linux.tar.bz2 | tar -jxvf - --no-same-owner && \ | ||
mv minimap2-${MINIMAP2_VER}_x64-linux/minimap2 /usr/local/bin | ||
mv -v minimap2-${MINIMAP2_VER}_x64-linux/minimap2 /usr/local/bin | ||
|
||
### start of app stage ### | ||
FROM ubuntu:jammy as app | ||
FROM ubuntu:jammy AS app | ||
|
||
ARG MEDAKA_VER | ||
ARG PYABPOA_VER | ||
|
@@ -91,7 +91,7 @@ LABEL description="Consensus sequence correction provided by ONT Research" | |
LABEL website="https://github.com/nanoporetech/medaka" | ||
LABEL license="https://github.com/nanoporetech/medaka/blob/master/LICENSE.md" | ||
LABEL maintainer="Curtis Kapsak" | ||
LABEL maintainer.email="[email protected]" | ||
LABEL maintainer.email="[email protected]" | ||
LABEL maintainer1="Erin Young" | ||
LABEL maintainer1.email="[email protected]" | ||
|
||
|
@@ -132,10 +132,10 @@ ENV LC_ALL=C | |
WORKDIR /data | ||
|
||
# default command is to pull up help options | ||
CMD medaka --help | ||
CMD [ "medaka", "--help" ] | ||
|
||
### start of test stage ### | ||
FROM app as test | ||
FROM app AS test | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y wget | ||
|
||
|
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