mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
04c3684db7
* initial 'modules create' of minia * fixed tests * finished meta.yml * fixed filters.yml * resolved issues in pytest_software.yml * add newline * Update software/minia/main.nf * fixing a bunch of module tests * remove vscode * fixed minia Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
14 lines
485 B
Text
14 lines
485 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SEQWISH_INDUCE } from '../../../../software/seqwish/induce/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_seqwish_induce {
|
|
input = [ [ id:'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['genome']['transcriptome_paf'], checkIfExists: true)],
|
|
[ file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true) ]
|
|
]
|
|
|
|
SEQWISH_INDUCE ( input )
|
|
}
|