mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
43c2779258
* Fix version commands * Fix version commands: again
14 lines
363 B
Text
14 lines
363 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { BANDAGE_IMAGE } from '../../../../modules/bandage/image/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_bandage_image {
|
|
input = [
|
|
[ id:'B-3106' ], // meta map
|
|
file( params.test_data['sarscov2']['illumina']['assembly_gfa'], checkIfExists: true)
|
|
]
|
|
|
|
BANDAGE_IMAGE ( input )
|
|
}
|