Replies: 1 comment 4 replies
-
What warning did you get? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to write a pipeline that haplotypes some BAM files based on different varying VCF files. I cannot figure out how to put in the inputs in nice way. Initially I had something like
In process:
the through was to run the process twice, but I found out that Nextflow did allow processes to be run twice. So the idea was to create a channel with two elements that contained
and change the input to
but this produces a warning. So I am looking for advice on how such a situation should be handled properly. I am aware I could create a sub-module and import it under two different names, but this feels like a hack that is not very scalable.
Beta Was this translation helpful? Give feedback.
All reactions