nf-core_modules/tests/modules/qualimap/bamqc/main.nf
2022-02-18 09:43:53 +01:00

14 lines
408 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { QUALIMAP_BAMQC } from '../../../../modules/qualimap/bamqc/main.nf'
workflow test_qualimap_bamqc {
input = [ [ id:'test', single_end:false ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true) ]
]
gff = []
QUALIMAP_BAMQC ( input, gff )
}