nf-core_modules/tests/modules/gunzip/main.nf

14 lines
315 B
Text
Raw Normal View History

2021-02-09 04:05:55 -05:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GUNZIP } from '../../../modules/gunzip/main.nf' addParams( options: [:] )
2021-02-09 04:05:55 -05:00
workflow test_gunzip {
input = [ [],
file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)
]
2021-02-09 04:05:55 -05:00
GUNZIP ( input )
}