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 groupTuple, it's a good idea to use a size parameter to make sure the channel proceeds to the next step once you have all the elements. However, if the size is set too large, the channel will never be satisfied and the channel never emits the new element. This is expected behaviour, but it happens silently which can be confusing and not obvious for developers (myself and @maxulysse were stumped for a while by this).
nextflow run .
N E X T F L O W ~ version 23.10.0
Launching `./main.nf` [reverent_archimedes] DSL2 - revision: 55b759f45d
Suggest implementation
nextflow run .
N E X T F L O W ~ version 23.10.0
Launching `./main.nf` [reverent_archimedes] DSL2 - revision: 55b759f45d
WARNING: groupTuple never grouped the following elements
[[id:1], [shard:1]]
[[id:1], [shard:2]]
[[id:1], [shard:3]]
The text was updated successfully, but these errors were encountered:
New feature
When using groupTuple, it's a good idea to use a size parameter to make sure the channel proceeds to the next step once you have all the elements. However, if the size is set too large, the channel will never be satisfied and the channel never emits the new element. This is expected behaviour, but it happens silently which can be confusing and not obvious for developers (myself and @maxulysse were stumped for a while by this).
Usage scenario
Output:
Suggest implementation
The text was updated successfully, but these errors were encountered: