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
14
15
16
17
18
## This is a test of struct metadata sections in a WDL 1.2 document.
## This test should have no diagnostics.

version 1.3

struct Foo {
    meta {
        foo: "bar"
    }

    parameter_meta {
        a: "foo"
        b: "bar"
    }

    Int a
    String b
}