mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
81232af296
Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
13 lines
314 B
Text
13 lines
314 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { MCRONI } from '../../../modules/mcroni/main.nf'
|
|
|
|
workflow test_mcroni {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true) ]
|
|
|
|
MCRONI ( input )
|
|
}
|