nf-core_modules/tests/software/ivar/consensus/main.nf
Anders Goncalves da Silva 8f546a1f95 Add ivar consensus
2021-02-09 10:26:35 -08:00

19 lines
No EOL
534 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
params.publish_dir_mode = 'link'
params.enable_conda = false
include { IVAR_CONSENSUS } from '../../../../software/ivar/consensus/main.nf' addParams([:])
workflow test_ivar_consensus {
bam = file("${launchDir}/tests/data/bam/test-sc2-artic-v3.bam", checkIfExists: true)
def input = []
input = [ [ id:'test'],
file("${launchDir}/tests/data/bam/test-sc2-artic-v3-sorted-trimmed.bam", checkIfExists: true) ]
main:
IVAR_CONSENSUS ( input )
}