Skip to content

Docker containers for bioinformatics with a small footprint

Notifications You must be signed in to change notification settings

nucleotidy/kogia

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Small bioinfo containers

These containers are small (filesize) images for genomics/transcriptomics. Each submodule provides one app.

If you find this useful in your research, please cite the DOI: DOI

Currently we have builds for:

Alignment

Annotation

Assembly

Assembly Evaluation

Data Retrieval

K-mer counting

Linux Pipeliners

Multiple Alignment

Population genomics

Pseudo-alignment/quantification

Pseudogene detection

QC/Read preprocessing

Toolboxes

Motivation

Docker is an excellent tool for bioinformatics as we often see users with very limited exposure to Linux trying to use software that can be complex to install. With reproducible research in mind, it also offers an excellent way to distribute exact versions of tolopython3 tamsl as a supplement to the materials and methods. This is currently severely hampered by multi-gigabyte images that provide a complex stack of libraries in order to execute a single binary. Further, users may want to keep several versions of tools for compatibility, but these libraries can quickly grow to serveral hundred GBs even with docker's smart storage drivers.

This project aims to build images that are as small as possible to allow docker to be used more effectively on research compute systems (small or large) and to enable better reproducible research so containers can be supplementary to materials and methods.

Usage

These containers are typically intended to be run as exemplified:

docker run \
  --user=${UID}:${GID} \
  -v $(pwd):$(pwd) -w $(pwd) --rm \
  bschiffthaler/bwa ... # Further argument passed to bwa

Alternatively there are simple bash scripts in the /scripts directory that wrap the docker images and allow users to call them very similaly to a native CLI application. As an example:

<kogia_root>/scripts/samtools index GRCh38.fa

Some containers may run differently, see READMEs in the sub-directories.

Contributing

Pull requests are very welcome. Contibuted Dockerfiles need to be based on alpine (with rare exceptions) and should follow the two image build procedure (see the bwa image as an example).

Thanks to all who have contributed so far: @nicolasDelhomme @krbe9202

About

Docker containers for bioinformatics with a small footprint

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 66.0%
  • Shell 14.6%
  • Makefile 13.8%
  • Python 4.2%
  • Roff 1.4%