Workflow Build Process
Build and manage DNAnexus workflows programmatically using dx-toolkit and JSON workflow definitions.
You can create workflows using the web interface or the CLI tools provided by the DNAnexus SDK. This workflow build process focuses on creating a workflow in a terminal. It walks you through important features of the DNAnexus workflow build infrastructure that help you build your workflows programmatically.
For information on building Nextflow workflows, see Running Nextflow Pipelines.
Workflow Directory Structure
DNAnexus workflows can be built using the dx build command, which takes the workflow JSON representation from your local workstation and uploads it to a workflow object on the Platform. The DNAnexus SDK expects the workflow definition to reside in a directory with the following structure:
MyWorkflow
├── dxworkflow.json
└── Readme.mdWorkflow Metadata
The file dxworkflow.json is a DNAnexus workflow metadata file. If it is detected in the directory provided to dx build, the dx-toolkit attempts to build a workflow on the Platform by passing the workflow specification in dxworkflow.json to /workflow/new.
Readme File
The Readme.md file, if present, is inserted into the description field of the workflow.
Building a Workflow
Having placed the workflow metadata in MyWorkflow, you can load your workflow on the DNAnexus Platform:
The built workflow is in a closed, immutable state. Adding the --keep-open option keeps the workflow open allowing you to edit the workflow from the DNAnexus UI.
Getting a Workflow
Similar to apps and applets, developers can use the command dx get to download the workflow description from the Platform, for example:
This creates a directory MyWorkflow (after the workflow's name) containing the workflow representation in the working directory. It can be used again to create a new workflow with dx build.
Last updated
Was this helpful?