Skip to content

Commit

Permalink
fix channel name
Browse files Browse the repository at this point in the history
  • Loading branch information
FriederikeHanssen committed Dec 10, 2024
1 parent 78cfeca commit 6dc5f99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions subworkflows/local/bam_variant_calling_germline_all/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ workflow BAM_VARIANT_CALLING_GERMLINE_ALL {
gvcf_sentieon_dnascope = Channel.empty()
gvcf_sentieon_haplotyper = Channel.empty()

indexcov_output = Channel.empty()
out_indexcov = Channel.empty()
vcf_deepvariant = Channel.empty()
vcf_freebayes = Channel.empty()
vcf_haplotypecaller = Channel.empty()
Expand Down Expand Up @@ -199,7 +199,7 @@ workflow BAM_VARIANT_CALLING_GERMLINE_ALL {
fasta_fai
)

indexcov_output = BAM_VARIANT_CALLING_INDEXCOV.out.indexcov_output
out_indexcov = BAM_VARIANT_CALLING_INDEXCOV.out.out_indexcov
versions = versions.mix(BAM_VARIANT_CALLING_INDEXCOV.out.versions)
}

Expand Down Expand Up @@ -368,7 +368,7 @@ workflow BAM_VARIANT_CALLING_GERMLINE_ALL {
emit:
gvcf_sentieon_dnascope
gvcf_sentieon_haplotyper
indexcov_output
out_indexcov
vcf_all
vcf_deepvariant
vcf_freebayes
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/bam_variant_calling_indexcov/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ workflow BAM_VARIANT_CALLING_INDEXCOV {

emit:

indexcov_output = goleft_ch.output
out_indexcov = goleft_ch.output
versions
}
4 changes: 2 additions & 2 deletions subworkflows/local/bam_variant_calling_somatic_all/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ workflow BAM_VARIANT_CALLING_SOMATIC_ALL {
out_msisensorpro = Channel.empty()
vcf_mutect2 = Channel.empty()
vcf_tiddit = Channel.empty()
indexcov_output = Channel.empty()
out_indexcov = Channel.empty()

if (tools.split(',').contains('ascat')) {
BAM_VARIANT_CALLING_SOMATIC_ASCAT(
Expand Down Expand Up @@ -165,7 +165,7 @@ workflow BAM_VARIANT_CALLING_SOMATIC_ALL {
fasta_fai
)

indexcov_output = BAM_VARIANT_CALLING_INDEXCOV.out.indexcov_output
out_indexcov = BAM_VARIANT_CALLING_INDEXCOV.out.out_indexcov
versions = versions.mix(BAM_VARIANT_CALLING_INDEXCOV.out.versions)
}

Expand Down

0 comments on commit 6dc5f99

Please sign in to comment.