wdl-engine 0.13.2

Execution engine for Workflow Description Language (WDL) documents.
Documentation
## This is a test of properly translating host to guest paths during JSON serialization.
version 1.3

struct Foo {
  File file
}

task test {
  input {
    Foo foo
  }

  command <<<
    cat "~{write_json(foo)}"
  >>>

  output {
    Foo out = read_json(stdout())
  }
}