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

15 lines
387 B
Text
Raw Normal View History

2021-01-30 03:38:35 +00: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 21:31:21 +00:00
BEDTOOLS_GENOMECOV ( input )
2021-01-30 03:38:35 +00:00
}