mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-22 10:49:55 +00:00
Apply review suggestions
This commit is contained in:
parent
30af26a8b3
commit
481f90589c
2 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ workflow LONGREAD_HOSTREMOVAL {
|
|||
ch_versions = ch_versions.mix( SAMTOOLS_INDEX.out.versions.first() )
|
||||
|
||||
bam_bai = MINIMAP2_ALIGN.out.bam
|
||||
.join(SAMTOOLS_INDEX.out.bai,by:[0], remainder: true)
|
||||
.join(SAMTOOLS_INDEX.out.bai, remainder: true)
|
||||
|
||||
SAMTOOLS_STATS ( bam_bai, reference )
|
||||
ch_versions = ch_versions.mix(SAMTOOLS_STATS.out.versions.first())
|
||||
|
|
|
@ -42,7 +42,7 @@ workflow SHORTREAD_HOSTREMOVAL {
|
|||
ch_versions = ch_versions.mix( SAMTOOLS_INDEX.out.versions.first() )
|
||||
|
||||
bam_bai = BOWTIE2_ALIGN.out.bam
|
||||
.join(SAMTOOLS_INDEX.out.bai, by:[0], remainder: true)
|
||||
.join(SAMTOOLS_INDEX.out.bai, remainder: true)
|
||||
|
||||
SAMTOOLS_STATS ( bam_bai, reference )
|
||||
ch_versions = ch_versions.mix(SAMTOOLS_STATS.out.versions.first())
|
||||
|
|
Loading…
Reference in a new issue