wdl-analysis 0.19.1

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
#@ except: UnusedDeclaration
## This is a simple test of identifying the inner type of an array.

version 1.3

task test {
    String? opt_string = "foo"
    Array[String?] x = [opt_string, "hi", 1]
    command <<<>>>
}