nf-core_modules/tests/software/dshbio/splitgff3/main.nf

14 lines
415 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { DSHBIO_SPLITGFF3 } from '../../../../software/dshbio/splitgff3/main.nf' addParams( options: [suffix: '.', args: '--records 15'] )
workflow test_dshbio_splitgff3 {
input = [ [ id:'test' ], // meta map
[ file(params.test_data['sarscov2']['genome']['genome_gff3_gz'], checkIfExists: true) ]
]
DSHBIO_SPLITGFF3 ( input )
}