-
Notifications
You must be signed in to change notification settings - Fork 1
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 #49 from getwilds/sra-tools
adding SRA Toolkit Docker container
- Loading branch information
Showing
2 changed files
with
32 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
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 |
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,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 |