Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Thiseas C. Lamnidis <thisseass@gmail.com>
  • Loading branch information
jbv2 and TCLamnidis authored Feb 7, 2025
1 parent 76f01af commit 7fd821c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions subworkflows/local/merge_lanes_inputbam.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// Prepare reference indexing for downstream
//

include { SAMTOOLS_MERGE as SAMTOOLS_MERGE_LANES } from '../../modules/nf-core/samtools/merge/main'
include { SAMTOOLS_SORT as SAMTOOLS_SORT_MERGED_LANES } from '../../modules/nf-core/samtools/sort/main'
include { SAMTOOLS_INDEX as SAMTOOLS_INDEX_MERGED_LANES } from '../../modules/nf-core/samtools/index/main'
include { SAMTOOLS_FLAGSTAT as SAMTOOLS_FLAGSTAT_MAPPED } from '../../modules/nf-core/samtools/flagstat/main'
include { SAMTOOLS_MERGE as SAMTOOLS_MERGE_LANES } from '../../modules/nf-core/samtools/merge/main'
include { SAMTOOLS_SORT as SAMTOOLS_SORT_MERGED_LANES } from '../../modules/nf-core/samtools/sort/main'
include { SAMTOOLS_INDEX as SAMTOOLS_INDEX_MERGED_LANES } from '../../modules/nf-core/samtools/index/main'
include { SAMTOOLS_FLAGSTAT as SAMTOOLS_FLAGSTAT_MAPPED } from '../../modules/nf-core/samtools/flagstat/main'

workflow MERGE_LANES_INPUTBAM {
take:
Expand Down Expand Up @@ -50,7 +50,7 @@ workflow MERGE_LANES_INPUTBAM {

emit:
bam = ch_mapped_bam // [ [ meta ], bam ]
bai = ch_mapped_bai // [ [ meta ], bai ]
bai = ch_mapped_bai // [ [ meta ], bai/csi ]
flagstat = SAMTOOLS_FLAGSTAT_MAPPED.out.flagstat // [ [ meta ], stats ]
mqc = ch_multiqc_files
versions = ch_versions
Expand Down

0 comments on commit 7fd821c

Please sign in to comment.