nf-core_modules/tests/software/bedtools/complement/main.nf
2021-03-24 14:14:19 +00:00

14 lines
486 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BEDTOOLS_COMPLEMENT } from '../../../../software/bedtools/complement/main.nf' addParams( options: [suffix: '_out'] )
workflow test_bedtools_complement {
input = [ [ id:'test'],
file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true)
]
sizes = file(params.test_data['sarscov2']['genome']['genome_sizes'], checkIfExists: true)
BEDTOOLS_COMPLEMENT ( input, sizes )
}