nf-core_modules/tests/modules/yara/index/main.nf
Harshil Patel 9c31cf1566
Fix version commands: round 3 (#754)
* Fix version commands: round 3

* Fix seqkit/split2 modules
2021-09-28 14:37:47 +01:00

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 )
}