Skip to content

Demo: Custom Workflows

In this section, we will demonstrate how we built the workflow used in the last lesson to run an example GWAS analysis on Terra. The docker and workflow script files were tested locally on a MacOS computer.

  • Part 1: Create docker containers with specific software environments for steps of the workflow
  • Part 2: Write a workflow script to specify the analysis steps
  • Part 3: Test the workflow before uploading it to Terra
  • Part 4: Set up workflow on Terra

To see how this process works, watch the vidlets below! Each vidlet is followed by written descriptions about the steps.

Important

It's beyond the scope of this lesson to teach general docker and Workflow Description Language (WDL) syntax, however, check out the resources linked throughout the lesson.

We hope this demo helps to show the general steps and get you started with your own workflows on Terra!

Part 1: Setting up Docker

We are using docker containers to create isolated software environments for specific steps of the GWAS workflow. Read more about using docker from Terra's support docs.

The core steps of building, testing, and sharing the docker container are shown in the vidlet below:

More information about each step:

We followed installation instructions for Mac: https://docs.docker.com/docker-for-mac/install/. See Terra docs for more about installing docker.

In order to share the docker, we are pushing the image to Dockerhub. We created an account at https://hub.docker.com/. We need the account username to run docker commands.

There are other options - Terra suggests using either Dockerhub or the Google Container Registry.

We told docker what we wanted installed in the container using a file called "Dockerfile". Read Docker's docs for best practices for writing Dockerfiles and Terra's lesson on writing a Dockerfile.

We installed dependency software tools, vcftools, and the R package "qqman". There's an existing docker container for plink (gelog/plink:latest), so we use that in the workflow for plink steps.

The base computer image of our container is ubuntu 20.04, and the software installation commands are similar to those used in the GWAS lesson, with some modifications for docker syntax.

  • WORKDIR /usr specifies the working directory - since dockers are closed containers, it helps to know where commands will be run so you can locate output files.
  • we use ENV DEBIAN_FRONTEND noninteractive because docker doesn't allow interactive installation.
  • RUN precedes all software install commands, and strings of commands are connected by &&. The \ allows commands to be written over multiple lines in the Dockerfile file. After the first RUN line, there is an indent for the others in the installation block.

We built the docker with a specified tag list (-t). In this case, the tag list contains a user name (demo), the docker name (demo_gwas), and the version (tag0). The last element of the command specifies the location of our "Dockerfile"; since we're in the directory that contains it, we can use the . or ./ notation.

docker build -t demo/demo_gwas:tag0 ./

Warning

The docker app must be running to use docker. In the vidlet, you can see that a docker container (kind_elion; it's a randomly generated name!) pops up in the docker window (top left).

We set up an interactive (-it) session of our docker container with docker run:

docker run -it demo/demo_gwas:tag0

And ran a test command to make sure the software vcftools was properly installed:

vcftools -h

Pushing to Dockerhub takes a few minutes to complete:

docker push demo/demo_gwas:tag0

After pushing the container, it is publicly available on Dockerhub.

Part 2: Write a WDL

Workflow Description Language (WDL, pronounced "widdle") is one of many computer programming languages used to define analysis workflows. It is maintained by an open online community that you can contribute to!

There are many resources from Terra to help you get started with the Workflow Description Language:

To test the workflow on local computer, we need 2 files:

The WDL script we wrote: GWAS_WDL.wdl

WDL workflow structures are nested. This script has a main workflow block that specifies the steps (call) of the workflow to run. Each step is specified by tasks (task) that include input, command, output, and runtime information. We created a task for each step of the GWAS workflow.

The JSON file we wrote to specify inputs for each workflow step: GWAS_WDL.json

Note that this file is only needed for local testing of the WDL. Terra has a graphical user interface for specifying inputs/outputs.

Part 3: Testing a WDL workflow

There are a few tools for testing WDL workflow scripts. One option is to use WOMtool and Cromwell, which we'll use in this demo, and another is to use miniwdl.

The commands for installing Cromwell and WOMtool apps on MacOS are:

wget https://github.com/broadinstitute/cromwell/releases/download/47/cromwell-47.jar
wget https://github.com/broadinstitute/cromwell/releases/download/47/womtool-47.jar

These tools require Java (installation instructions). We checked the java installation with this command:

java --version

The 2 input files for this workflow are:

  • "coatColor.pheno"

  • "pruned_coatColor_maf_geno.vcf.gz"

We added the workflow input files to the directory that contains:

  • the WOMtool app ("womtool-47.jar")

  • the Cromwell app ("cromwell-47.jar")

  • the WDL script ("GWAS_WDL.wdl")

  • the input JSON file ("GWAS_WDL.json")

We used the WOMtool app to test the WDL script syntax. Note that the workflow may still fail to run, but WOMtool helps to catch WDL syntax errors. We have tested the script to make sure it runs, so the output of the command below is "Success!".

java -jar womtool-47.jar validate GWAS_WDL.wdl

Warning

The docker app must be running to use docker. In the vidlet, you can see that a docker container (bold_wilbur) pops up in the docker window (top left).

We used the Cromwell app (".jar" file) to run the WDL script. We have set up the input (-i) files for each workflow task in the ".json" file.

java -jar cromwell-47.jar run GWAS_WDL.wdl -i GWAS_WDL.json

WDL Outputs

If the workflow completes successfully, it will display the "Final Outputs" paths and show the message "workflow finished with status 'Succeeded'" in the terminal. Each task gets a call-<task name> directory:

call-run_vcftools
call-plink_missing_rates
call-plink_binary
call-plink_association
call-run_R

For each task, the inputs are in an inputs directory and the outputs are in an execution directory, which also includes helpful files for troubleshooting errors when testing the WDL script (log and stderr files).

The final output of this particular GWAS workflow is a Manhattan plot ("coatColor_man.bmp").

Part 4: Set up workflow on Terra

After ensuring the WDL works, we followed these steps from the Terra documentation to set up our workflow on Terra. There is also a video lesson from Terra about workflows.

On Firecloud (aka Broad Method Repository):

  • namespace = "cfde-workflows"
  • name = "GWAS-demo"
  • we copy/pasted the WDL script, but note that we do not need to upload the JSON file because the input files will be specified with Terra's interface
  • in "Permissions", we set the workflow to be "Publicly Readable" so you can use it!

To export the new workflow from Firecloud to workspace, we used a blank configuration, kept root as "participant" (this is how inputs are identified in the Terra interface), and selected the workspace to export to.

After this point, the workflow is ready to be used, as shown in the previous section!

In the next section, we'll talk about cloud costs.


Last update: June 25, 2021