You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using dxCompiler-2.10.4.jar, I've found a workflow level input type that does not appear to compile correctly. Array[String] testReq compiles correctly to [stage-common.testReq (array:string)] Array[String?] testOpcompiles incorrectly tostage-common.testOp (hash) and [stage-common.testOp___dxfiles (array:file)]
Here is a test wdl if you want to try yourself.
version 1.0
workflow Test {
input {
Array[String] testReq
Array[String?] testOp
}
}
This appears to be a bug report unless I'm missing something.
The text was updated successfully, but these errors were encountered:
When using dxCompiler-2.10.4.jar, I've found a workflow level input type that does not appear to compile correctly.
Array[String] testReq
compiles correctly to[stage-common.testReq (array:string)]
Array[String?] testOp
compiles incorrectly tostage-common.testOp (hash)
and[stage-common.testOp___dxfiles (array:file)]
Here is a test wdl if you want to try yourself.
This appears to be a bug report unless I'm missing something.
The text was updated successfully, but these errors were encountered: