2022-05-06 07:54:10 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { KAT_HIST } from '../../../../modules/kat/hist/main.nf'
|
|
|
|
|
|
|
|
workflow test_kat_hist_single_end {
|
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ], // meta map
|
2022-05-10 15:02:37 +00:00
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_1_fastq_gz'], checkIfExists: true)
|
2022-05-06 07:54:10 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
KAT_HIST ( input )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_kat_hist_paired_end {
|
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:false ], // meta map
|
|
|
|
[
|
2022-05-10 15:02:37 +00:00
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_2_fastq_gz'], checkIfExists: true),
|
2022-05-06 07:54:10 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
KAT_HIST ( input )
|
|
|
|
}
|