John Didion
John Didion
See #426 Draft implementation: https://github.com/openwdl/wdl/tree/545-resolve
The `size` function is very useful for determining the sizes of inputs, such that the size requested in the `disks` runtime attribute can be determined dynamically. However, the usefulness of...
This is purely syntactic sugar for `select_first([x])` where `x` is a value that may be `None`. ``` Int? x = 5 Int x1 = x? Int? y = None Int...
Currently the spec does not state whether accessing an object member that does not exist results in a `None` or an error. E.g. ```wdl Object foo = object { a:...
In WDL 1.1, serialization/deserializaton of `Pair` is not supported. Since JSON arrays are allowed to be heterogeneous, we should support serialization of `Pair[X, Y]` to `[X, Y]` (as long as...
`Array[String] split(String, String)` Splits the first argument (`input`) each time it encounters the second argument (`pattern`), where `pattern` is a POSIX ERE. This is the inverse of the `sep` function...
From what I can gather, jip submits jobs to SGE by calling qsub with its arguments and then passing "exec jip exec --db " on stdin. This does not work,...
I apologize for asking a question here, but there is no dedicated support forum. The documentation is not clear on how to actually get JIP to submit jobs on a...