View on GitHub

ContainerInception

Gerber: Generalized Easy Reproducible Bioinformatics Environment wRapper

alt text

Gerber: Generalized Easy Reproducible Bioinformatics Environment wRapper

Step-by-step use cases of containers and workflows towards reproducible bioinformatics. alt text

Goal

By the end of this tutorial, the researcher will have a working knowledge of generating reproducible bioinformatics workflows. The demo example in our use case involve a typical quality control and mapping pipeline of RNA-seq data of Sorghum bicolor.

Example workflow for the use cases

alt text

Use case 0: No containers and no CWL. Click here for bad code. How not to do things!

This is probably how most of the researchers are running bioinformatics data analysis currently. However it is difficult to update the modules, it does not scale, and reproducibility is not maintained.

Use case 1: Single container with no CWL Click here!

You build a pipeline on your Macbook Air and everything works well on a minimal data set. Your full dataset however requires multiple cores and you need to move the pipeline to a powerful server that runs Ubuntu. Your software may fail to run on Ubuntu, and getting that old shell script to run on the new server is cumbersome and not reproducible. The following approach avoids this problem.

Use case 1.1: Multiple Containers with no CWL Click here!

The Docker philosophy states that every container should serve a single function. This makes it easier to update a single tool without worrying how that affects the overall project. For instance, say you want to redo your analysis, but this time you want to use a different read mapper, say tophat2 instead of hisat2. Containerizing your individual tools allows both modification (grabbing a different Docker image) and portability between different operating systems.

Use case 2: Both container(s) and CWL Click here!

Even with containerized individual tools one still needs to write a shell script to stitch them altogether. Instead, CWL requires explicitly defined inputs and outputs which in turn ensures standardization and reproducibility. Furthermore, CWL workflows can be compartmentalized in a (pulled/created) Docker image.

Use case 3: Interacting workflows with CWL Click here!

Two interacting workflows, that is, one workflow (current one) and two other workflows (SNP calling and differential expression analysis) TODO

System Requirements

To run our examples, your machine must meet the following requirements

Disclaimer

TODO