mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
12 lines
210 B
Text
12 lines
210 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { AMRFINDERPLUS_UPDATE } from '../../../../modules/amrfinderplus/update/main.nf'
|
||
|
|
||
|
workflow test_amrfinderplus_update {
|
||
|
|
||
|
AMRFINDERPLUS_UPDATE ( )
|
||
|
|
||
|
}
|