nf-core_modules/tests/software/fastqc/main.nf

28 lines
770 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { FASTQC } from '../../../software/fastqc/main.nf' addParams( options: [:] )
/*
* Test with single-end data
*/
workflow test_fastqc_single_end {
def input = []
input = [ [ id:'test', single_end:true ], // meta map
2021-02-03 13:22:42 -06:00
[ file("${launchDir}/tests/data/fastq/rna/test_single_end.fastq.gz", checkIfExists: true) ] ]
FASTQC ( input )
}
/*
* Test with paired-end data
*/
workflow test_fastqc_paired_end {
def input = []
input = [[id: 'test', single_end: false], // meta map
2021-02-03 13:22:42 -06:00
[file("${launchDir}/tests/data/fastq/rna/test_R1.fastq.gz", checkIfExists: true),
file("${launchDir}/tests/data/fastq/rna/test_R2.fastq.gz", checkIfExists: true)]]
FASTQC (input)
2021-02-03 13:22:42 -06:00
}