Container image for the use of SRA Toolkit in FH DaSL's WILDS
6.6K
This directory contains Docker images for SRA Toolkit, a collection of tools for accessing data in the NCBI Sequence Read Archive (SRA).
latest: The most up-to-date stable version (currently SRA-tools v3.1.1)3.1.1: SRA-tools v3.1.1These Docker images are built from Conda Forge Miniforge base image and include:
The images are designed to be minimal and focused on a specific version of SRA Toolkit with its dependencies, optimized for efficient downloading and processing of sequencing data.
docker pull getwilds/sra-tools:latest
# or
docker pull getwilds/sra-tools:3.1.1
# Alternatively, pull from GitHub Container Registry
docker pull ghcr.io/getwilds/sra-tools:latest
apptainer pull docker://getwilds/sra-tools:latest
# or
apptainer pull docker://getwilds/sra-tools:3.1.1
# Alternatively, pull from GitHub Container Registry
apptainer pull docker://ghcr.io/getwilds/sra-tools:latest
# Download a dataset using fasterq-dump
docker run --rm -v /path/to/data:/data getwilds/sra-tools:latest fasterq-dump SRR12345678 -O /data
# Download using parallel-fastq-dump for better performance
docker run --rm -v /path/to/data:/data getwilds/sra-tools:latest parallel-fastq-dump --sra-id SRR12345678 --threads 8 --outdir /data --split-files
# Prefetch SRA data
docker run --rm -v /path/to/data:/data getwilds/sra-tools:latest prefetch SRR12345678 -O /data
# Alternatively using Apptainer
apptainer run --bind /path/to/data:/data docker://getwilds/sra-tools:latest prefetch SRR12345678 -O /data
# ... or a local SIF file via Apptainer
apptainer run --bind /path/to/data:/data sra-tools_latest.sif parallel-fastq-dump --sra-id SRR12345678 --threads 8 --outdir /data --split-files
The SRA-tools Docker images include:
These images are regularly scanned for vulnerabilities using Docker Scout. However, due to the nature of bioinformatics software and their dependencies, some Docker images may contain components with known vulnerabilities (CVEs).
Use at your own risk: While we strive to minimize security issues, these images are primarily designed for research and analytical workflows in controlled environments.
For the latest security information about this image, please check the CVEs.txt file in this directory, which is automatically updated through our GitHub Actions workflow. Critical or high-severity vulnerabilities will also be reported as GitHub issues in the repository.
The Dockerfile follows these main steps:
These Dockerfiles are maintained in the WILDS Docker Library repository.
Content type
Image
Digest
sha256:7ebca32f7…
Size
569.2 MB
Last updated
almost 2 years ago
docker pull getwilds/sra-tools