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

13 lines
280 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { UNZIP } from '../../../modules/unzip/main.nf' addParams( options: [:] )
workflow test_unzip {
archive = file(params.test_data['sarscov2']['genome']['ncbi_taxmap_zip'], checkIfExists: true)
UNZIP ( archive )
}