mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
15 lines
496 B
Text
15 lines
496 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
include { HAMRONIZATION_AMRFINDERPLUS } from '../../../../modules/hamronization/amrfinderplus/main.nf'
|
||
|
|
||
|
workflow test_hamronization_amrfinderplus {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test', single_end:false ], // meta map
|
||
|
file("https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/delete_me/amrfinderplus/test_output.tsv", checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
HAMRONIZATION_AMRFINDERPLUS ( input, 'tsv', '3.10.30', '2022-05-26.1' )
|
||
|
}
|