mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 13:23:09 +00:00
14 lines
395 B
Text
14 lines
395 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { TABIX_BGZIPTABIX } from '../../../../software/tabix/bgziptabix/main.nf' addParams( options: ['args2': '-p vcf'] )
|
||
|
|
||
|
workflow test_tabix_bgziptabix {
|
||
|
input = [ [ id:'test' ], // meta map
|
||
|
[ file(params.test_data['sarscov2']['illumina']['test_vcf'], checkIfExists: true) ]
|
||
|
]
|
||
|
|
||
|
TABIX_BGZIPTABIX ( input )
|
||
|
}
|