Replies: 1 comment 1 reply
-
This makes no sense
I guess you wanted to do
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For some reason it looks like Nextflow doesn't wait for an output channel of a process to be populated with value when it is used in a
map
function called on another channel.Consider this snippet:
Here's the output Nextflow produces when running it:
I expected that Nextflow would wait until
produce_and_wait
process is completed and only then it will print the result of the transformed channel. But in fact, first it prints the transformed channel (which has null value at this moment), then it completes theproduce_and_wait
process and after that it prints the originalresults
channel.Am I misunderstanding how channels work or is this is bug?
Beta Was this translation helpful? Give feedback.
All reactions