mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
e3cf4c822c
* 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>
13 lines
404 B
Text
13 lines
404 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { DSHBIO_SPLITBED } from '../../../../software/dshbio/splitbed/main.nf' addParams( options: [suffix: '.', args: '--records 2'] )
|
|
|
|
workflow test_dshbio_splitbed {
|
|
input = [ [ id:'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true) ]
|
|
]
|
|
|
|
DSHBIO_SPLITBED ( input )
|
|
}
|