This article is now archived.
WDL articles now live in the openwdl/wdl-docs GitHub repository. Find the updated documentation on the wdl-docs website.
The workflow
component is a required top-level component of a WDL script. It contains call
statements that invoke task
components, as well as workflow-level input definitions.
There are various options for chaining tasks together through call
and other statements; these are all detailed in the Plumbing Options documentation.
Usage example
workflow myWorkflowName {
call my_task
}