Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ docker for samtools with parallel #244

Merged
merged 2 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ python|3.9-canine-util|docker pull pgc-images.sbgenomics.com/d3b-bixu/python:3.9
sambamba|0.6.3|docker pull pgc-images.sbgenomics.com/d3b-bixu/sambamba:0.6.3
sambamba|0.7.1|docker pull pgc-images.sbgenomics.com/d3b-bixu/sambamba:0.7.1
samtools|1.15.1|docker pull pgc-images.sbgenomics.com/d3b-bixu/samtools:1.15.1
samtools|1.20-parallel|docker pull pgc-images.sbgenomics.com/d3b-bixu/samtools:1.20-parallel
samtools|1.3.1|docker pull pgc-images.sbgenomics.com/d3b-bixu/samtools:1.3.1
samtools|1.6|docker pull pgc-images.sbgenomics.com/d3b-bixu/samtools:1.6
samtools|1.7-11-g041220d|docker pull pgc-images.sbgenomics.com/d3b-bixu/samtools:1.7-11-g041220d
Expand Down
7 changes: 7 additions & 0 deletions samtools/1.20-parallel/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM staphb/samtools:1.20

LABEL maintainer="Daniel Miller ([email protected])"

RUN apt update && apt install -y parallel curl

COPY Dockerfile .
Loading