nf-core_modules/tests/modules/cnvkit/antitarget/main.nf
2022-05-23 16:52:06 +02:00

16 lines
370 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { CNVKIT_ANTITARGET } from '../../../../modules/cnvkit/antitarget/main.nf'
workflow test_cnvkit_antitarget {
input = [
[ id:'test' ], // meta map
file(params.test_data['homo_sapiens']['genome']['genome_21_multi_interval_bed'], checkIfExists: true)
]
CNVKIT_ANTITARGET ( input )
}