mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
1840289068
* initiate agrvate module * remove todos [ci skip] * remove todos and fix containers [ci skip] * ready for testing Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
13 lines
365 B
Text
13 lines
365 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { AGRVATE } from '../../../modules/agrvate/main.nf' addParams( options: ["args": "--mummer"] )
|
|
|
|
workflow test_agrvate {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true) ]
|
|
|
|
AGRVATE ( input )
|
|
}
|