Docker image containing tools for read QC and processing.
- fastqc - Quality control for high throughput sequence data
- multiqc - Aggregate results from bioinformatics analyses
- samtools - Tools for manipulating SAM/BAM files
- python 3.12 with biopython and pysam
- GNU parallel - Shell tool for executing jobs in parallel
- jq - Command-line JSON processor
- pigz - Parallel gzip
- zstd - Zstandard compression
docker pull ghcr.io/broadinstitute/read-qc-tools:maindocker run --rm -it -v $(pwd):/data ghcr.io/broadinstitute/read-qc-tools:main bashdocker run --rm -v $(pwd):/data ghcr.io/broadinstitute/read-qc-tools:main fastqc reads.fastq.gz./scripts/build.shOr with custom image name/tag:
IMAGE_NAME=my-image TAG=dev ./scripts/build.shThe image is built for both linux/amd64 (Intel/AMD) and linux/arm64 (Apple Silicon, ARM servers). Docker will automatically pull the correct architecture for your platform.
Edit env.yaml to add or remove conda packages, then rebuild.