nf-core_modules/tests/modules/bamtools/stats/main.nf
Francesco Lescai 77d5dd60eb
Adding module bamtools stats (#2104)
* added bamtools stats module and tested

* added bamtools stats module and tested

* fixing prettier complaints

* changed process tag to single
2022-09-27 06:24:43 +01:00

15 lines
368 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BAMTOOLS_STATS } from '../../../../modules/bamtools/stats/main.nf'
workflow test_bamtools_stats {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true)
]
BAMTOOLS_STATS ( input )
}