mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
d5f6985607
* 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>
14 lines
444 B
Text
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 )
|
|
}
|