wdl-engine 0.14.0

Execution engine for Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## This is a test to ensure the `size` function coerces `String` arguments correctly.
## See: https://github.com/stjude-rust-labs/sprocket/issues/575
version 1.2

task repro {
    input {
        File file
    }

    String file2 = file

    command <<<>>>

    output {
        Float size = size(file2)
    }
}