2020-11-25 02:56:03 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-02-03 16:02:58 +00:00
|
|
|
include { TRIMGALORE } from '../../../software/trimgalore/main.nf' addParams( options: [:] )
|
2020-11-25 02:56:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test with single-end data
|
|
|
|
*/
|
|
|
|
workflow test_trimgalore_single_end {
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
2021-03-24 18:28:54 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
|
|
|
|
2021-02-03 16:02:58 +00:00
|
|
|
TRIMGALORE ( input )
|
2020-11-25 02:56:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test with paired-end data
|
|
|
|
*/
|
|
|
|
workflow test_trimgalore_paired_end {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-03-24 18:28:54 +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
|
|
|
]
|
2020-11-25 02:56:03 +00:00
|
|
|
|
2021-02-03 16:02:58 +00:00
|
|
|
TRIMGALORE ( input )
|
2020-11-25 02:56:03 +00:00
|
|
|
}
|