nf-core_modules/tests/software/untar/main.nf

12 lines
275 B
Text
Raw Normal View History

2021-02-09 10:50:32 +00:00
#!/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)
2021-02-09 10:50:32 +00:00
UNTAR ( input )
}