mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
e31f1ff3b1
Co-authored-by: Maxime U. Garcia <max.u.garcia@gmail.com>
14 lines
408 B
Text
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 )
|
|
}
|