nf-core_modules/tests/modules/gunc/run/main.nf

18 lines
526 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GUNC_RUN } from '../../../../modules/gunc/run/main.nf' addParams( options: [:] )
include { GUNC_DOWNLOADDB } from '../../../../modules/gunc/downloaddb/main.nf' addParams( options: [:] )
workflow test_gunc_run {
input = [ [ id:'test', single_end:false ], // meta map
file(params.test_data['sarscov2']['illumina']['contigs_fasta'], checkIfExists: true) ]
GUNC_DOWNLOADDB('progenomes')
GUNC_RUN ( input, GUNC_DOWNLOADDB.out.db )
}