mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
ec15bae344
* 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>
16 lines
506 B
Text
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 )
|
|
}
|