mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
592 B
Text
16 lines
592 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { FASTQC } from '../../../software/fastqc/main.nf' addParams( options: [:] )
|
|
include { MULTIQC } from '../../../software/multiqc/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_multiqc {
|
|
|
|
def input = []
|
|
input = [ [ id: 'test', single_end: false ],
|
|
[ 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 )
|
|
MULTIQC ( FASTQC.out.zip.collect { it[1] } )
|
|
}
|