Phil Shapiro
Phil Shapiro
I agree with @rhpvorderman 's last comment. In the WDL I've worked on the current behavior hasn't been a big enough obstacle to require a change to the WDL language....
The spec seems clear to me. The type of an argument is separate from it having a default. You cannot pass a `String?` input to a task that requires a...
I tried out your example, after adding `version 1.0` and fixing a typo. miniwdl check rejects it (correctly), cromwell allows it (incorrectly). To me this looks like a bug in...
Not sure, but WDL 1.1 deprecated `object` in favor of [a specific struct type](https://github.com/openwdl/wdl/blob/main/versions/1.1/SPEC.md#custom-types-structs). I would try using the newer form instead. (It _should_ be supported as it's deprecated in...
It is not yet supported in cromwell. See https://github.com/broadinstitute/cromwell/issues/6221 https://broadworkbench.atlassian.net/browse/CROM-6710
I'm not wild about this because it creates a special case that isn't covered by the type rules. To be specific, I'm referring to the case where you declare a...
Have you looked at the spec for Java text blocks? The java spec supports both automatically stripping newlines and preserving relative indent and doesn't require a lot of extra syntax....
For my usage, here's an example of the level of detail that would be helpful for me. This is the output of "womtool graph" on an older version of the...
I can't tell from this fragment what the problem you're seeing is. This workflow worked as expected for me. I tried running it using `miniwdl run` and `java -jar cromwell.jar...