nf-core_modules/tests/software/dshbio/splitgff3/main.nf
Michael L Heuer e3cf4c822c
Update dsh-bio modules to version 2.0.4 (#482)
* Update dsh-bio modules to version 2.0.4

* update docker tag

* update md5 checksums

* Update software/dshbio/filtergff3/main.nf

* Update software/dshbio/splitgff3/main.nf

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-05-04 14:28:44 +01:00

13 lines
415 B
Text

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