--
You received this message because you are subscribed to the Google Groups "Nextflow" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nextflow+u...@googlegroups.com.
Visit this group at https://groups.google.com/group/nextflow.
For more options, visit https://groups.google.com/d/optout.
process run_sub_pipeline_whatever {
input:
file file_for_pipeline from some_channel
output:
file file_from_pipeline into some_other_channel
"""
some_syntax_for_executing_pipeline($file_for_pipeline)
"""
}
process A {input:..output:..'''nextflow run $baseDir/alpha.nf'''}process B {input:..output:..'''nextflow run $baseDir/omega.nf'''