nf-core_modules/tests/software/tabix/bgziptabix/main.nf
Maxime U. Garcia 81aba5734c
Add modules bgziptabix (#544)
* feat: add modules bgziptabix

* fix: add module to config

* fix: lint

* fix: tests
2021-06-25 10:52:02 +02:00

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 )
}