nf-core_modules/tests/modules/mashtree/main.nf
Robert A. Petit III 7d98bf1d7d
add mashtree module (#767)
* add mashtree module

* remove todo

* whitespace adjustment

* remove un-reproducible md5sum

* Update main.nf

* Update main.nf

* Update meta.yml

* Apply suggestions from code review

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-10-05 21:27:30 +01:00

16 lines
461 B
Text

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