nf-core_modules/tests/software/ivar/consensus/main.nf

14 lines
365 B
Text
Raw Normal View History

2021-02-09 18:26:35 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { IVAR_CONSENSUS } from '../../../../software/ivar/consensus/main.nf' addParams([:])
workflow test_ivar_consensus {
def input = []
input = [ [ id:'test'],
file("${launchDir}/tests/data/bam/test-sc2-artic-v3-sorted-trimmed.bam", checkIfExists: true) ]
IVAR_CONSENSUS ( input )
}