wdl-analysis 0.22.0

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
## This is a test of using a task variable in an unsupported WDL version.

version 1.1

task test {
    command <<<
        echo "Hello from ~{task.name}!"
    >>>

    output {
        String name = task.name
    }
}