nf-core_modules/tests/modules/agrvate/main.nf
Abhinav Sharma 1840289068
module for agrvate (#693)
* 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>
2021-09-16 12:42:23 +02:00

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 )
}