nf-core_modules/tests/modules/bandage/image/main.nf
Harshil Patel 43c2779258
Fix version commands (#749)
* Fix version commands

* Fix version commands: again
2021-09-27 22:10:37 +01:00

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 )
}