wdl-analysis 0.19.1

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## This is a test of a missing call input in WDL 1.2.
## There should be no diagnostics for this test.

version 1.3

workflow test {
    String bar = "bar"
    call foo { foo = bar }
}

task foo {
    input {
        String foo
    }

    command <<<>>>
}