Nested scatter blocks
See original GitHub issueIt would be great if Cromwell supported nested scatter blocks. For example:
workflow wf {
Array[Array[String]] array
scatter (arr in array) {
scatter (i in arr) {
call foo {
input: str=i
}
}
}
}
Issue Analytics
- State:
- Created 7 years ago
- Reactions:6
- Comments:16 (4 by maintainers)
Top Results From Across the Web
d3 simple scatter plots from nested data - Popular Blocks
d3 simple scatter plots from nested data. 0 5 10 15 20 25 30 0 20 40 60 80 100 0 5 10...
Read more >Better solution instead of nested synchronized blocks in Java?
I have a Bank class with a list of Account . The bank has a transfer() method to transfer a value from one...
Read more >Stochastic block models reveal a robust nested pattern in ...
Stochastic block models reveal a robust nested pattern in healthy human gut ... Points in the scatter-plots indicate individual gut microbiome samples.
Read more >Nested variable expansion in WDL code block
I know this is because ~{adapter_file} is nested inside trim_program_array[0], so it's only expanding the “outer” variable.
Read more >Nesting Riser - Etsy
Check out our nesting riser selection for the very best in ... Set of 3- Distressed Black- Plant Risers- Solid Block Risers- Photo ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have managed to run nested scatters on Terra in Cromwell 67. So…that’s a yes!
This is what I have implemented in order to get around this but it adds significant complexity to code. I agree that support for a nested scatter option is an excellent idea and would save pipeline writers a lot of time.