2021-02-01 13:02:06 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-07 09:10:18 +00:00
|
|
|
include { FASTP } from '../../../modules/fastp/main.nf' addParams( options: [:] )
|
2021-02-01 13:02:06 +00:00
|
|
|
|
2021-05-12 13:56:46 +00:00
|
|
|
//
|
|
|
|
// Test with single-end data
|
|
|
|
//
|
2021-02-03 16:02:58 +00:00
|
|
|
workflow test_fastp_single_end {
|
2021-02-01 13:02:06 +00:00
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
2021-03-24 13:07:37 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-07-21 08:00:48 +00:00
|
|
|
save_trimmed_fail = false
|
2021-03-24 09:53:41 +00:00
|
|
|
|
2021-07-21 08:00:48 +00:00
|
|
|
FASTP ( input, save_trimmed_fail )
|
2021-02-01 13:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-05-12 13:56:46 +00:00
|
|
|
//
|
|
|
|
// Test with paired-end data
|
|
|
|
//
|
2021-02-03 16:02:58 +00:00
|
|
|
workflow test_fastp_paired_end {
|
2021-02-01 13:02:06 +00:00
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-03-24 13:07:37 +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-07-21 08:00:48 +00:00
|
|
|
save_trimmed_fail = false
|
2021-05-12 13:56:46 +00:00
|
|
|
|
2021-07-21 08:00:48 +00:00
|
|
|
FASTP ( input, save_trimmed_fail )
|
2021-02-01 13:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-07-21 08:00:48 +00:00
|
|
|
//
|
|
|
|
// Test with single-end data with saving trimming fails
|
|
|
|
//
|
|
|
|
workflow test_fastp_single_end_trim_fail {
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
|
|
|
]
|
|
|
|
save_trimmed_fail = true
|
|
|
|
|
|
|
|
FASTP ( input, save_trimmed_fail )
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Test with paired-end data with saving trimming fails
|
|
|
|
//
|
|
|
|
workflow test_fastp_paired_end_trim_fail {
|
|
|
|
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) ]
|
|
|
|
]
|
|
|
|
save_trimmed_fail = true
|
|
|
|
|
|
|
|
FASTP ( input, save_trimmed_fail )
|
|
|
|
}
|