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

16 lines
487 B
Text
Raw Normal View History

2021-01-30 03:38:35 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BEDTOOLS_SLOP } from '../../../../modules/bedtools/slop/main.nf' addParams( options: [args: '-l 15 -r 30', suffix: '_out'] )
2021-01-30 03:38:35 +00:00
workflow test_bedtools_slop {
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_SLOP ( input, sizes )
2021-01-30 03:38:35 +00:00
}