Skip to content

Commit

Permalink
Merge pull request #49 from getwilds/sra-tools
Browse files Browse the repository at this point in the history
adding SRA Toolkit Docker container
  • Loading branch information
tefirman authored Oct 24, 2024
2 parents b3cb522 + 41f37af commit f4ab67f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions sra-tools/Dockerfile_3.1.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Using the miniforge base image
FROM condaforge/miniforge3:24.7.1-2

# Adding labels for the GitHub Container Registry
LABEL org.opencontainers.image.title="sra-tools"
LABEL org.opencontainers.image.description="Container image for the use of SRA Toolkit in FH DaSL's WILDS"
LABEL org.opencontainers.image.version="3.1.1"
LABEL org.opencontainers.image.authors="[email protected]"
LABEL org.opencontainers.image.url=https://hutchdatascience.org/
LABEL org.opencontainers.image.documentation=https://getwilds.org/
LABEL org.opencontainers.image.source=https://github.com/getwilds/wilds-docker-library
LABEL org.opencontainers.image.licenses=MIT

# Switching from hard-links to copies and installing sra-tools, pfastqdump
RUN conda config --set always_copy true \
&& conda install -y -c bioconda sra-tools=3.1.1 parallel-fastq-dump=0.6.7
16 changes: 16 additions & 0 deletions sra-tools/Dockerfile_latest
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Using the miniforge base image
FROM condaforge/miniforge3:24.7.1-2

# Adding labels for the GitHub Container Registry
LABEL org.opencontainers.image.title="sra-tools"
LABEL org.opencontainers.image.description="Container image for the use of SRA Toolkit in FH DaSL's WILDS"
LABEL org.opencontainers.image.version="latest"
LABEL org.opencontainers.image.authors="[email protected]"
LABEL org.opencontainers.image.url=https://hutchdatascience.org/
LABEL org.opencontainers.image.documentation=https://getwilds.org/
LABEL org.opencontainers.image.source=https://github.com/getwilds/wilds-docker-library
LABEL org.opencontainers.image.licenses=MIT

# Switching from hard-links to copies and installing sra-tools, pfastqdump
RUN conda config --set always_copy true \
&& conda install -y -c bioconda sra-tools=3.1.1 parallel-fastq-dump=0.6.7

0 comments on commit f4ab67f

Please sign in to comment.