mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-06 22:32:09 -05:00
17 lines
481 B
Text
17 lines
481 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { ABACAS } from '../../../software/abacas/main.nf' addParams ( options: ['args' : '-m -p nucmer'] )
|
||
|
|
||
|
workflow test_abacas {
|
||
|
|
||
|
input = [ [ id:'test', single_end:false ], // meta map
|
||
|
file(params.test_data['sarscov2']['genome']['scaffolds_fasta'], checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
||
|
|
||
|
ABACAS ( input, fasta )
|
||
|
}
|