wdl-format 0.20.1

Formatting of WDL (Workflow Description Language) documents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version 1.3

task foo {
    parameter_meta {
        ccc: "ccc"
        bbb: "bbb"
        aaa: "aaa"
    }

    input {
        String ccc
        String bbb
        String aaa
    }

    command <<<
    >>>
}