2021-01-29 08:33:45 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { CUTADAPT } from '../../../software/cutadapt/main.nf' addParams( options: [ args:'-q 25' ] )
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test with single-end data
|
|
|
|
*/
|
2021-02-03 16:02:58 +00:00
|
|
|
workflow test_cutadapt_single_end {
|
|
|
|
|
2021-01-29 08:33:45 +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) ] ]
|
|
|
|
CUTADAPT( input )
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test with paired-end data
|
|
|
|
*/
|
|
|
|
|
2021-02-03 16:02:58 +00:00
|
|
|
workflow test_cutadapt_paired_end {
|
|
|
|
|
2021-01-29 08:33:45 +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) ] ]
|
|
|
|
CUTADAPT( input )
|
|
|
|
}
|
|
|
|
|