wdl-engine 0.13.2

Execution engine for Workflow Description Language (WDL) documents.
Documentation
## This is a test of passing complex type inputs.
## No error should be present in `error.txt`.

version 1.3

struct Foo {
    Int foo
    String bar
    Bar baz
}

struct Bar {
    File foo
    Directory bar
    Baz baz
}

struct Baz {
    Boolean foo
    Float bar
}

task foo {
    input {
        Foo foo
    }

    command <<<>>>
}

workflow test {
    meta {
        allowNestedInputs: true
    }

    input {
        Foo foo
        Bar bar
        Baz baz
        Int? x
        Array[Float] y
    }

    call foo as my_call
}