mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
15 lines
406 B
Text
15 lines
406 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { FARGENE } from '../../../modules/fargene/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow test_fargene {
|
||
|
|
||
|
input = [ [ id:'test', single_end:false ], // meta map
|
||
|
file(params.test_data['bacteroides_fragilis']['illumina']['test1_contigs_fa_gz'], checkIfExists: true) ]
|
||
|
hmm_model = 'class_a'
|
||
|
|
||
|
FARGENE ( input, hmm_model )
|
||
|
}
|