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 )
}