2021-03-24 05:05:45 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-07 09:10:18 +00:00
|
|
|
include { FLASH } from '../../../modules/flash/main.nf' addParams( options: [args:'-m 20 -M 100'] )
|
2021-03-24 05:05:45 +00:00
|
|
|
|
|
|
|
workflow test_flash {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-04-01 19:22:06 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-03-24 05:05:45 +00:00
|
|
|
|
|
|
|
FLASH ( input )
|
|
|
|
}
|