wdl-format 0.18.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
version 1.3

task foo {
    input {
        String ccc
        String bbb
        String aaa
    }

    parameter_meta {
        ccc: "ccc"
        bbb: "bbb"
        aaa: "aaa"
    }
    command <<<>>>
}