mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
18 lines
526 B
Text
18 lines
526 B
Text
|
#!/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 )
|
||
|
}
|