nf-core_modules/tests/modules/sequenzautils/gcwiggle/main.nf

14 lines
416 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SEQUENZAUTILS_GCWIGGLE } from '../../../../modules/sequenzautils/gcwiggle/main.nf' addParams( options: [ 'args': '-w 50' ] )
workflow test_sequenzautils_gcwiggle {
input = [ [ id:'test' ], // meta map
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
]
SEQUENZAUTILS_GCWIGGLE ( input )
}