mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
10 lines
183 B
Text
10 lines
183 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { ARIBA_GETREF } from '../../../../modules/ariba/getref/main.nf'
|
||
|
|
||
|
workflow test_ariba_getref {
|
||
|
ARIBA_GETREF ( "card" )
|
||
|
}
|