1
0
Fork 0
mirror of https://github.com/MillironX/nf-core_modules.git synced 2025-01-13 00:46:29 -05:00
nf-core_modules/tests/modules/bedtools/bamtobed/main.nf

14 lines
387 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BEDTOOLS_BAMTOBED } from '../../../../modules/bedtools/bamtobed/main.nf' addParams( options: [:] )
workflow test_bedtools_bamtobed {
input = [ [ id:'test'], //meta map
file(params.test_data['sarscov2']['illumina']['test_single_end_bam'], checkIfExists: true)
]
BEDTOOLS_BAMTOBED ( input )
}