mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
e01a98a704
* 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>
12 lines
281 B
Text
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 )
|
|
}
|