Skip to content

Commit

Permalink
Fixed fasta channel
Browse files Browse the repository at this point in the history
  • Loading branch information
svarona committed Dec 27, 2023
1 parent 78a4143 commit 661ec68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/variants_bcftools.nf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ workflow VARIANTS_BCFTOOLS {
//
BCFTOOLS_MPILEUP (
bam.map{ meta, bam_file -> [ meta, bam_file, [] ] },
fasta,
fasta.map { [ [:], it ] },
params.save_mpileup
)
ch_versions = ch_versions.mix(BCFTOOLS_MPILEUP.out.versions.first())
Expand Down Expand Up @@ -57,7 +57,7 @@ workflow VARIANTS_BCFTOOLS {
//
BCFTOOLS_NORM (
ch_vcf.join(ch_tbi, by: [0]),
fasta
fasta.map { [ [:], it ] }
)
ch_versions = ch_versions.mix(BCFTOOLS_NORM.out.versions.first())

Expand Down

0 comments on commit 661ec68

Please sign in to comment.