Tuple channel doesn't spawn separate processes #3667
-
I have a channel that takes an input input file:
The channel will look like this:
I also have an additional channel that takes the params.input as-is:
Then I have a process that I want to run separately on each sample that takes the tuple and the file as input:
However, when I run it, it only spawns a single process with sample1, but ignores sample2 (and any additional samples I may have). What am I missing here? I am using nextflow version 21.0.6. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Got an answer to this on the Nextflow Help slack channel by Marc Hoeppner: You can either combine the channels into a tuple, or
|
Beta Was this translation helpful? Give feedback.
Got an answer to this on the Nextflow Help slack channel by Marc Hoeppner:
You can either combine the channels into a tuple, or
collect()
theinput_list_ch
if you want to use it several times: