nf-core_modules/tests/modules/hamronization/fargene/main.nf

20 lines
669 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GUNZIP } from '../../../modules/gunzip/main.nf'
include { FARGENE } from '../../../modules/fargene/main.nf'
include { HAMRONIZATION_FARGENE } from '../../../../modules/hamronization/fargene/main.nf'
workflow test_hamronization_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'
GUNZIP ( input )
FARGENE ( GUNZIP.out.gunzip, hmm_model )
HAMRONIZATION_FARGENE ( FARGENE.out.hmm, 'tsv', '0.1', '0.1' )
}