nf-core_modules/tests/software/mash/sketch/main.nf
Thanh Lee ec15bae344
🏋️‍♀️ new submodule mash/sketch🕺 (#426)
* new submodule mash/sketch

* fixed submodule naming

* OK, tag is diff to keyword

* OK  another round 🤣

* removed TODO comments

* updated as per review comments 🙆‍♂️

* updated functions.nf 😁

* Update software/mash/sketch/main.nf

* Update main.nf

Removed blank line at the 12th

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-04-10 16:24:23 +01:00

16 lines
506 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { MASH_SKETCH } from '../../../../software/mash/sketch/main.nf' addParams( options: [:] )
workflow test_mash_sketch {
input = [ [ id:'test', single_end:false], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true)
]
]
MASH_SKETCH ( input )
}