mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
81aba5734c
* feat: add modules bgziptabix * fix: add module to config * fix: lint * fix: tests
13 lines
395 B
Text
13 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 )
|
|
}
|