1
0
Fork 0
mirror of https://github.com/MillironX/nf-core_modules.git synced 2025-01-13 08:56:28 -05:00
nf-core_modules/tests/modules/last/dotplot/main.nf

14 lines
365 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { LAST_DOTPLOT } from '../../../../modules/last/dotplot/main.nf' addParams( options: [:] )
workflow test_last_dotplot {
input = [ [ id:'test' ], // meta map
file(params.test_data['sarscov2']['genome']['contigs_genome_maf_gz'], checkIfExists: true) ]
LAST_DOTPLOT ( input, "png" )
}