mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 21:53:10 +00:00
32ad1746d1
* Add vsearch sintax process * Add tests for vsearch sintax * Add vsearch sintax process * Add tests for vsearch sintax * Update format with prettier * Remove trailing whitespace Co-authored-by: nvnieuwk <101190534+nvnieuwk@users.noreply.github.com>
13 lines
407 B
Text
13 lines
407 B
Text
#!/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 )
|
|
}
|