mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
9c31cf1566
* Fix version commands: round 3 * Fix seqkit/split2 modules
12 lines
313 B
Text
12 lines
313 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { YARA_INDEX } from '../../../../modules/yara/index/main.nf' addParams( options: [publish_dir:'yara'] )
|
|
|
|
workflow test_yara_index {
|
|
|
|
input = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
YARA_INDEX ( input )
|
|
}
|