nf-core_modules/tests/modules/hamronization/amrfinderplus/main.nf
louperelo 1368164eb5
add module hamronization/amrfinderplus (#1888)
* add module hamronization/amrfinderplus

* deleted comments

* Apply suggestions from code review

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
2022-07-15 10:54:42 +02:00

14 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' )
}