mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 23:33:09 +00:00
61 lines
2.3 KiB
Text
61 lines
2.3 KiB
Text
//
|
|
// Remove host reads via alignment and export off-target reads
|
|
//
|
|
|
|
include { MINIMAP2_INDEX } from '../../modules/nf-core/minimap2/index/main'
|
|
include { MINIMAP2_ALIGN } from '../../modules/nf-core/minimap2/align/main'
|
|
include { SAMTOOLS_VIEW } from '../../modules/nf-core/samtools/view/main'
|
|
include { SAMTOOLS_BAM2FQ } from '../../modules/nf-core/samtools/bam2fq/main'
|
|
include { SAMTOOLS_INDEX } from '../../modules/nf-core/samtools/index/main'
|
|
include { SAMTOOLS_STATS } from '../../modules/nf-core/samtools/stats/main'
|
|
|
|
workflow LONGREAD_HOSTREMOVAL {
|
|
take:
|
|
reads // [ [ meta ], [ reads ] ]
|
|
reference // /path/to/fasta
|
|
index // /path/to/index
|
|
|
|
main:
|
|
ch_versions = Channel.empty()
|
|
ch_multiqc_files = Channel.empty()
|
|
|
|
if ( !params.longread_hostremoval_index ) {
|
|
ch_minimap2_index = MINIMAP2_INDEX ( [ [], reference ] ).index.map { it[1] }
|
|
ch_versions = ch_versions.mix( MINIMAP2_INDEX.out.versions )
|
|
} else {
|
|
ch_minimap2_index = index
|
|
}
|
|
|
|
MINIMAP2_ALIGN ( reads, ch_minimap2_index, true, false, false )
|
|
ch_versions = ch_versions.mix( MINIMAP2_ALIGN.out.versions.first() )
|
|
ch_minimap2_mapped = MINIMAP2_ALIGN.out.bam
|
|
.map {
|
|
meta, reads ->
|
|
[ meta, reads, [] ]
|
|
}
|
|
|
|
|
|
SAMTOOLS_VIEW ( ch_minimap2_mapped , [], [] )
|
|
ch_versions = ch_versions.mix( SAMTOOLS_VIEW.out.versions.first() )
|
|
|
|
SAMTOOLS_BAM2FQ ( SAMTOOLS_VIEW.out.bam, false )
|
|
ch_versions = ch_versions.mix( SAMTOOLS_BAM2FQ.out.versions.first() )
|
|
|
|
SAMTOOLS_INDEX ( SAMTOOLS_VIEW.out.bam )
|
|
ch_versions = ch_versions.mix( SAMTOOLS_INDEX.out.versions.first() )
|
|
|
|
bam_bai = MINIMAP2_ALIGN.out.bam
|
|
.join(SAMTOOLS_INDEX.out.bai, remainder: true)
|
|
|
|
SAMTOOLS_STATS ( bam_bai, reference )
|
|
ch_versions = ch_versions.mix(SAMTOOLS_STATS.out.versions.first())
|
|
ch_multiqc_files = ch_multiqc_files.mix( SAMTOOLS_STATS.out.stats )
|
|
|
|
|
|
emit:
|
|
stats = SAMTOOLS_STATS.out.stats //channel: [val(meta), [reads ] ]
|
|
reads = SAMTOOLS_BAM2FQ.out.reads // channel: [ val(meta), [ reads ] ]
|
|
versions = ch_versions // channel: [ versions.yml ]
|
|
mqc = ch_multiqc_files
|
|
}
|
|
|