mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
28 lines
718 B
Text
28 lines
718 B
Text
#!/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
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_1_fastq_gz'], checkIfExists: true)
|
|
]
|
|
|
|
KAT_HIST ( input )
|
|
}
|
|
|
|
workflow test_kat_hist_paired_end {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
[
|
|
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),
|
|
]
|
|
]
|
|
|
|
KAT_HIST ( input )
|
|
}
|