2020-12-01 01:49:52 -05:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-02-03 12:43:14 -05:00
|
|
|
include { FASTQC } from '../../../software/fastqc/main.nf' addParams( options: [:] )
|
|
|
|
include { MULTIQC } from '../../../software/multiqc/main.nf' addParams( options: [:] )
|
2020-12-04 01:55:16 -05:00
|
|
|
|
2020-12-01 01:49:52 -05:00
|
|
|
workflow test_multiqc {
|
2021-02-03 12:43:14 -05:00
|
|
|
input = [ [ id: 'test', single_end: false ],
|
2021-03-24 05:53:41 -04:00
|
|
|
[ file("${launchDir}/tests/data/genomics/sarscov2/illumina/fastq/test_1.fastq.gz", checkIfExists: true),
|
|
|
|
file("${launchDir}/tests/data/genomics/sarscov2/illumina/fastq/test_2.fastq.gz", checkIfExists: true) ]
|
|
|
|
]
|
|
|
|
|
2021-02-03 12:43:14 -05:00
|
|
|
FASTQC ( input )
|
|
|
|
MULTIQC ( FASTQC.out.zip.collect { it[1] } )
|
2020-12-01 01:49:52 -05:00
|
|
|
}
|