2021-02-01 13:02:06 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { FASTP } from '../../../software/fastp/main.nf' addParams( options: [:] )
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
def input = []
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
|
|
|
[ file("${launchDir}/tests/data/fastq/rna/test_single_end.fastq.gz", checkIfExists: true) ] ]
|
2021-02-03 16:02:58 +00:00
|
|
|
FASTP ( input )
|
2021-02-01 13:02:06 +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
|
|
|
|
|
|
|
def input = []
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
|
|
[ file("${launchDir}/tests/data/fastq/rna/test_R1.fastq.gz", checkIfExists: true),
|
|
|
|
file("${launchDir}/tests/data/fastq/rna/test_R2.fastq.gz", checkIfExists: true) ] ]
|
2021-02-03 16:02:58 +00:00
|
|
|
FASTP ( input )
|
2021-02-01 13:02:06 +00:00
|
|
|
}
|
|
|
|
|