nf-core_modules/tests/modules/unzip/main.nf
James A. Fellows Yates 5758e9f451
Unzip update (#730)
* Specify more guidelines on input channels

* Linting

* Updates based on code review

* Update README.md

* Fix broken sentence

* Change test dataset
2021-09-22 11:02:32 +01:00

12 lines
280 B
Text

#!/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 )
}