This directory contains Docker images for ichorCNA, a tool for estimating the fraction of tumor in cell-free DNA.
latest( Dockerfile | Vulnerability Report )0.2.0( Dockerfile | Vulnerability Report )
These Docker images are built from Ubuntu 20.04 and include:
- ichorCNA v0.2.0 at b2bbce0: An R tool for estimating tumor fraction of cfDNA
- R v3.6.0: Statistical computing environment compiled from source
- HMMcopy: Bioconductor package for copy number analysis using hidden Markov models
- GenomeInfoDb & GenomicRanges: Bioconductor packages for genomic data manipulation
- Data processing R packages: plyr, optparse, foreach, doMC for data processing and parallel computing
- BiocManager: Package manager for Bioconductor repositories
The images are designed to be comprehensive yet minimal, providing essential tools for a workflow using ichorCNA.
docker pull getwilds/ichorcna:latest
# or
docker pull getwilds/ichorcna:0.2.0
# Alternatively, pull from GitHub Container Registry
docker pull ghcr.io/getwilds/ichorcna:latestapptainer pull docker://getwilds/ichorcna:latest
# or
apptainer pull docker://getwilds/ichorcna:0.2.0
# Alternatively, pull from GitHub Container Registry
apptainer pull docker://ghcr.io/getwilds/ichorcna:latest# Docker
docker run --rm -v /path/to/data:/data getwilds/ichorcna:latest \
Rscript /usr/local/bin/ichorCNA/scripts/runIchorCNA.R \
--id "SampleID" \
--WIG "SampleID.ichor.tumor.wig" \
--ploidy "c(2)" \
--normal "c(0.1,0.5,.85)" \
--maxCN 3 \
--gcWig "gc_hg38_500kb.wig" \
--mapWig "map_hg38_500kb.wig" \
--centromere "GRCh38.GCA_000001405.2_centromere_acen.txt" \
--normalPanel "nextera_hg38_500kb_median_normAutosome_median.rds_median.n9.gr.rds" \
--genomeBuild "hg38" \
--sex "male" \
--fracReadsInChrYForMale 0.0005 \
--txnE 0.999999 \
--txnStrength 1000000 \
--genomeStyle "UCSC" \
--libdir /usr/local/bin/ichorCNA/
# Apptainer
apptainer run --bind /path/to/data:/data docker://getwilds/ichorcna:latest \
Rscript /usr/local/bin/ichorCNA/scripts/runIchorCNA.R \
--id "SampleID" \
--WIG "SampleID.ichor.tumor.wig" \
--ploidy "c(2)" \
--normal "c(0.1,0.5,.85)" \
--maxCN 3 \
--gcWig "gc_hg38_500kb.wig" \
--mapWig "map_hg38_500kb.wig" \
--centromere "GRCh38.GCA_000001405.2_centromere_acen.txt" \
--normalPanel "nextera_hg38_500kb_median_normAutosome_median.rds_median.n9.gr.rds" \
--genomeBuild "hg38" \
--sex "male" \
--fracReadsInChrYForMale 0.0005 \
--txnE 0.999999 \
--txnStrength 1000000 \
--genomeStyle "UCSC" \
--libdir /usr/local/bin/ichorCNA/- Run ichorCNA: Using
runIchorCNA.R - Create Panel of Normals: Using
createPanelOfNormals.R
- HMMcopy: Generate read count files
- Input formats: BAM, WIG
- Reference genomes: Human
- Workflow engines: Compatible with WDL, Nextflow, Snakemake
- Memory: 4-32 GB recommended for copy number analysis and tumor fraction estimation
- CPU: Multi-threaded operations supported via doMC parallel processing
- Storage: Ensure sufficient space for output files and temporary data
- For < 5% expected tumor fraction, it may be helpful to modify the settings
- See the relevant wiki page for this version of ichorCNA
The ichorDNA Docker images include:
- Dynamic versioning for build-essential to ensure the latest security patches
- Installation through Ubuntu package repositories for properly vetted binaries
- Minimal installation with only required dependencies
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_*.md files in this directory, which are automatically updated through our GitHub Actions workflow. If a particular vulnerability is of concern, please file an issue in the GitHub repo citing which CVE you would like to be addressed.
The Dockerfile follows these main steps:
- Uses Ubuntu 20.04 as the base image
- Adds metadata labels for documentation and attribution following WILDS standards
- Dynamically determines and pins the latest security-patched version of build-essential
- Downloads and installs R 3.6.0 from source
- Installs required R packages from CRAN and Bioconductor repositories
- Clones and installs IchorCNA from GitHub
- Cleans up temporary files and build artifacts to minimize image size
These Dockerfiles are maintained in the WILDS Docker Library repository.