Skip to content

Commit 796f7eb

Browse files
committed
Fix remainig failed merges
1 parent 4913782 commit 796f7eb

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

  • subworkflows/local

subworkflows/local/longread_hostremoval/main.nf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ workflow LONGREAD_HOSTREMOVAL {
4343
// Join BAI back to BAM for host removal statistics
4444
bam_bai = MINIMAP2_ALIGN.out.bam.join(MINIMAP2_ALIGN.out.index)
4545

46-
ch_stats = SAMTOOLS_STATS(bam_bai, [[], ch_reference, []])
46+
SAMTOOLS_STATS(bam_bai, [[], ch_reference, []])
47+
ch_stats = SAMTOOLS_STATS.out.stats
4748
ch_multiqc_files = ch_multiqc_files.mix(SAMTOOLS_STATS.out.stats)
4849

4950
// Generate unmapped reads FASTQ for downstream taxprofiling

subworkflows/local/shortread_hostremoval/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ workflow SHORTREAD_HOSTREMOVAL {
3434

3535
if (params.shortread_hostremoval_tool == 'bowtie2') {
3636
// Map, generate BAM with all reads and unmapped reads in FASTQ for downstream
37-
BOWTIE2_ALIGN(reads, ch_hostremoval_index, [[], ch_reference], true, true)
37+
BOWTIE2_ALIGN(ch_reads, ch_hostremoval_index, [[], ch_reference], true, true)
3838
ch_versions = ch_versions.mix(BOWTIE2_ALIGN.out.versions.first())
3939
ch_multiqc_files = ch_multiqc_files.mix(BOWTIE2_ALIGN.out.log)
4040

0 commit comments

Comments
 (0)