mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
460 B
Text
16 lines
460 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { BEDTOOLS_COMPLEMENT } from '../../../../software/bedtools/complement/main.nf' addParams( options: [:] )
|
|
|
|
|
|
workflow test_bedtools_complement {
|
|
def input = []
|
|
input = [ [ id:'test'],
|
|
file("${launchDir}/tests/data/bed/A.bed", checkIfExists: true),
|
|
file("${launchDir}/tests/data/bed/genome.sizes", checkIfExists: true) ] //metamap
|
|
|
|
BEDTOOLS_COMPLEMENT( input )
|
|
}
|
|
|