nf-core_modules/tests/software/ivar/consensus/main.nf
Anders Goncalves da Silva 68de6fef0d
Fix indentation
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-02-10 12:04:15 -08:00

13 lines
365 B
Text

#!/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 )
}