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
# This is a test of too many command sections in a task.

version 1.1

task test {
    command <<<>>>
    command <<<>>>
}

# A duplicate task should trigger a single error and then be ignored.
task test {
    command <<<>>>
    command <<<>>>
}