nf-core_modules/tests/modules/untar/main.nf
2022-06-02 11:09:55 +02:00

24 lines
474 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { UNTAR } from '../../../modules/untar/main.nf'
workflow test_untar {
input = [
[],
file(params.test_data['sarscov2']['genome']['kraken2_tar_gz'], checkIfExists: true)
]
UNTAR ( input )
}
workflow test_untar_different_output_path {
input = [
[],
file(params.test_data['homo_sapiens']['illumina']['test_flowcell'], checkIfExists: true)
]
UNTAR ( input )
}