wdl-analysis 0.24.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
#@ except: UnusedDeclaration
## This is a test of coercing the result of an expression in a string interpolation.

version 1.1

task test {
    Array[String] a = ["foo", "bar"]

    # NOT OK
    String x = "foo ${a}"

    # OK
    String y = "foo ${sep="," a}"

    command <<<>>>
}