mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 22:23:09 +00:00
9 lines
183 B
Text
9 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" )
|
|
}
|