nf-core_modules/tests/modules/nucmer/main.nf
Sateesh d5f6985607
add new nucmer module (#945)
* add new nucmer module

* Apply suggestions from code review

Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>

* update tests with file produced by input

* Update main.nf

* Update meta.yml

Co-authored-by: Michael Cipriano <mcipriano@gmail.com>
Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-11-15 22:05:34 +00:00

14 lines
444 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { NUCMER } from '../../../modules/nucmer/main.nf' addParams( options: [:] )
workflow test_nucmer {
input = [ [ id:'test', single_end:false ], // meta map
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true),
file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true) ]
NUCMER ( input )
}