nf-core_modules/tests/modules/vsearch/sintax/main.nf

14 lines
407 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { VSEARCH_SINTAX } from '../../../../modules/vsearch/sintax/main.nf'
workflow test_vsearch_sintax {
query = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
db = file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true)
VSEARCH_SINTAX ( [[id:'test'], query], db )
}