mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
37bf3936f3
* add decompress possibilities to bgzip * spacing
21 lines
564 B
Text
21 lines
564 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { TABIX_BGZIP } from '../../../../modules/tabix/bgzip/main.nf'
|
|
|
|
workflow test_tabix_bgzip_compress {
|
|
input = [ [ id:'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['illumina']['test_vcf'], checkIfExists: true) ]
|
|
]
|
|
|
|
TABIX_BGZIP ( input )
|
|
}
|
|
|
|
workflow test_tabix_bgzip_decompress {
|
|
input = [ [ id:'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['genome']['test_bed_gz'], checkIfExists: true) ]
|
|
]
|
|
|
|
TABIX_BGZIP ( input )
|
|
}
|