nf-core_modules/tests/software/ivar/trim/main.nf
Anders Goncalves da Silva ed74d366bf
Clean up ivar trim main.nf
2021-02-12 16:03:07 -08:00

16 lines
449 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { IVAR_TRIM } from '../../../../software/ivar/trim/main.nf' addParams([:])
workflow test_ivar_trim {
bed_file = file("${launchDir}/tests/data/bed/test-sc2-artic-v3.bed", checkIfExists: true)
def input = []
input = [ [ id:'test'],
file("${launchDir}/tests/data/bam/test-sc2-artic-v3.bam", checkIfExists: true) ]
main:
IVAR_TRIM ( input, bed_file )
}