mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
057a889d3b
* new module hamronization/rgi * remove comments * Update modules/hamronization/rgi/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
16 lines
505 B
Text
16 lines
505 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
include { RGI_MAIN } from '../../../../modules/rgi/main/main.nf'
|
|
include { HAMRONIZATION_RGI } from '../../../../modules/hamronization/rgi/main.nf'
|
|
|
|
workflow test_hamronization_rgi {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['haemophilus_influenzae']['genome']['genome_fna_gz'], checkIfExists: true)
|
|
]
|
|
|
|
RGI_MAIN ( input )
|
|
HAMRONIZATION_RGI ( RGI_MAIN.out.tsv, 'tsv', '1.0.2', '3.2.3' )
|
|
}
|