mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
0337916f8a
* Initial work on yara module * Adding in index basics * Updated the index stuff * Adding in proper tests * Fix editorconfig * Odd paths * that should do it * Fix tests * Fix tests * FFS * Once more * Mapping is not deterministic
12 lines
310 B
Text
12 lines
310 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { YARA_INDEX } from '../../../../software/yara/index/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_yara_index {
|
|
|
|
def input = file("${launchDir}/tests/data/genomics/sarscov2/genome/genome.fasta", checkIfExists: true)
|
|
|
|
YARA_INDEX ( input )
|
|
}
|