mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
17fbdf96cb
* Adding tar.gz kraken2 db to test data * Update test path files for untar module * Update test path files for kraken2/run module * Update test path files for cat/fastq module
11 lines
275 B
Text
11 lines
275 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { UNTAR } from '../../../software/untar/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_untar {
|
|
input = file(params.test_data['sarscov2']['genome']['kraken2_tar_gz'], checkIfExists: true)
|
|
|
|
UNTAR ( input )
|
|
}
|