mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
14 lines
486 B
Text
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 )
|
|
}
|