-
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.
🦄 adding minimap2 and nanocount for ONT wf (#238)
* adding minimap2 and nanocount for ONT wf * update docker table (#239) Co-authored-by: wongjessica93 <[email protected]> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: wongjessica93 <[email protected]>
- Loading branch information
1 parent
3928d8a
commit f6f0ad6
Showing
3 changed files
with
48 additions
and
0 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,20 @@ | ||
FROM --platform=linux/amd64 ubuntu:22.04 | ||
|
||
LABEL maintainer="Jessica Wong <[email protected]>" | ||
LABEL description="minimap2" | ||
|
||
RUN apt update && apt install -y \ | ||
wget \ | ||
build-essential \ | ||
samtools | ||
|
||
ENV MINIMAP2_VERSION 2.28 | ||
|
||
RUN wget https://github.com/lh3/minimap2/releases/download/v${MINIMAP2_VERSION}/minimap2-${MINIMAP2_VERSION}_x64-linux.tar.bz2 \ | ||
&& tar -jxvf minimap2-${MINIMAP2_VERSION}_x64-linux.tar.bz2 | ||
|
||
WORKDIR /minimap2-${MINIMAP2_VERSION}_x64-linux | ||
|
||
RUN cp minimap2 /usr/local/bin/ | ||
|
||
COPY 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM --platform=linux/amd64 ubuntu:22.04 | ||
|
||
LABEL maintainer="Jessica Wong <[email protected]>" | ||
LABEL description="nanocount" | ||
|
||
RUN apt update && apt install -y \ | ||
curl \ | ||
build-essential \ | ||
zlib1g-dev \ | ||
liblzma-dev \ | ||
libbz2-dev \ | ||
libncurses5-dev \ | ||
libcurl4-gnutls-dev \ | ||
libssl-dev \ | ||
python3 \ | ||
python3-pip \ | ||
git | ||
|
||
ENV NANOCOUNT_VERSION 1.1.0 | ||
|
||
RUN curl -sL 'https://github.com/pysam-developers/pysam/archive/refs/tags/v0.22.0.tar.gz' | tar xz && cd pysam-0.22.0 && pip3 install . | ||
|
||
RUN pip3 install git+https://github.com/a-slide/NanoCount.git | ||
|
||
WORKDIR / | ||
COPY Dockerfile . |