mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-23 11:38:17 +00:00
32 lines
1 KiB
Text
32 lines
1 KiB
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { UNTAR } from '../../../../modules/untar/main.nf'
|
|
include { KAIJU_KAIJU } from '../../../../modules/kaiju/kaiju/main.nf'
|
|
|
|
workflow test_kaiju_kaiju_single_end {
|
|
|
|
input = [
|
|
[ id:'test', single_end:true ], // meta map
|
|
file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)
|
|
]
|
|
db = [ [], file(params.test_data['sarscov2']['genome']['kaiju_tar_gz'], checkIfExists: true) ]
|
|
|
|
UNTAR ( db )
|
|
KAIJU_KAIJU ( input, UNTAR.out.untar.map{ it[1] } )
|
|
}
|
|
|
|
workflow test_kaiju_kaiju_paired_end {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
|
|
]
|
|
db = [ [], file(params.test_data['sarscov2']['genome']['kaiju_tar_gz'], checkIfExists: true) ]
|
|
|
|
UNTAR ( db )
|
|
KAIJU_KAIJU ( input, UNTAR.out.untar.map{ it[1] } )
|
|
|
|
}
|