nf-core_modules/tests/software/bedtools/genomecov/main.nf

15 lines
387 B
Text
Raw Normal View History

2021-01-29 22:38:35 -05:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BEDTOOLS_GENOMECOV } from '../../../../software/bedtools/genomecov/main.nf' addParams( options: [:] )
workflow test_bedtools_genomecov {
def input = []
input = [ [ id:'test'],
file("${launchDir}/tests/data/bam/test.paired_end.name.sorted.bam", checkIfExists: true) ]
2021-02-07 16:31:21 -05:00
BEDTOOLS_GENOMECOV ( input )
2021-01-29 22:38:35 -05:00
}