nf-core_modules/tests/software/abacas/main.nf
Jose Espinosa-Carrasco 3ac21ff0dc
Add abacas module (#431)
* Add abacas module

* Add test for abacas module

* Add Harshil to authorship

* Updating test with the data uploaded to nf-core/datasets

* Apply suggestions from code review

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-04-12 15:37:08 +01:00

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