Skip to content
Snippets Groups Projects
Verified Commit 92e0e00a authored by Laurent Modolo's avatar Laurent Modolo
Browse files

fix emit: for named workflow

parent e363dd6f
No related branches found
No related tags found
No related merge requests found
...@@ -10,8 +10,8 @@ workflow mapping { ...@@ -10,8 +10,8 @@ workflow mapping {
index_fasta(fasta) index_fasta(fasta)
mapping_fastq(index_fasta.out.index.collect(), fastq) mapping_fastq(index_fasta.out.index.collect(), fastq)
emit: emit:
bam: mapping_fastq.out.bam bam = mapping_fastq.out.bam
report: mapping_fastq.out.report report = mapping_fastq.out.report
} }
......
...@@ -39,7 +39,7 @@ workflow germline_cohort_data_variant_calling { ...@@ -39,7 +39,7 @@ workflow germline_cohort_data_variant_calling {
fasta_idx fasta_idx
) )
emit: emit:
vcf: call_variants_all_sample.out.vcf vcf = call_variants_all_sample.out.vcf
} }
/*******************************************************************/ /*******************************************************************/
...@@ -62,7 +62,7 @@ workflow base_quality_recalibrator{ ...@@ -62,7 +62,7 @@ workflow base_quality_recalibrator{
compute_base_recalibration.out.table compute_base_recalibration.out.table
) )
emit: emit:
bam: apply_base_recalibration.out.bam bam = apply_base_recalibration.out.bam
} }
process index_vcf { process index_vcf {
...@@ -195,7 +195,7 @@ workflow call_variants_all_sample { ...@@ -195,7 +195,7 @@ workflow call_variants_all_sample {
fasta_idx fasta_idx
) )
emit: emit:
vcf: genomic_db_call.out.vcf vcf = genomic_db_call.out.vcf
} }
process consolidate_gvcf { process consolidate_gvcf {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment