nf-core_modules/tests/modules/unzip/main.nf
James A. Fellows Yates e01a98a704
module: unzip (#642)
* Specify more guidelines on input channels

* Linting

* Updates based on code review

* Update README.md

* Fix broken sentence

* Add unzip module

* Remove missing TODOs update mtea

* Apply changes after code-review from @grst

* Account for user trying to supply two input archives

* Remove debugging test

* Update modules/unzip/main.nf

Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>

* Correct output path

Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
2021-08-02 09:40:57 +02:00

12 lines
281 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']['genome_fasta_zip'], checkIfExists: true)
UNZIP ( archive )
}