nf-core_modules/tests/modules/bedtools/complement/main.nf

15 lines
485 B
Text
Raw Normal View History

2021-01-29 00:41:49 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BEDTOOLS_COMPLEMENT } from '../../../../modules/bedtools/complement/main.nf' addParams( options: [suffix: '_out'] )
2021-01-29 00:41:49 +00:00
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)
2021-01-29 00:41:49 +00:00
BEDTOOLS_COMPLEMENT ( input, sizes )
2021-01-29 00:41:49 +00:00
}