mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
7d98bf1d7d
* 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>
16 lines
461 B
Text
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 )
|
|
}
|