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
#@ except: UnusedCall
## This is a test of having an unknown input in a call statement.

version 1.3

task my_task {
    command <<<>>>
}

workflow test {
    call my_task { input: x = 1 }
    call my_task as my_task2 { x = 1 }
    call my_task as my_task3 { input: x }
    call my_task as my_task4 { x }
}