wdl-analysis 0.21.0

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
version 1.2

task test_runtime_info_task {
    # `task.return_code` is output-only, should fail
    command <<<
        echo ~{task.return_code}
    >>>

    output {
        # Should be fine
        Int return_code = task.return_code
    }
}