mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
527ccdb419
* add racon * add miniasm module * edit miniasm module * edit miniasm module * Update tests/modules/racon/main.nf Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com> * Update tests/modules/racon/test.yml Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com> * Update modules/miniasm/meta.yml Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com> * Update main.nf Add some spaces. * Update meta.yml Correct DOI * Update main.nf * Apply suggestions from code review * Update tests/modules/miniasm/test.yml Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com> Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
15 lines
503 B
Text
15 lines
503 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { MINIASM } from '../../../modules/miniasm/main.nf' addParams( options: [suffix:'.assembly'] )
|
|
|
|
workflow test_miniasm {
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
|
file(params.test_data['bacteroides_fragilis']['nanopore']['test_fastq_gz'], checkIfExists: true),
|
|
file(params.test_data['bacteroides_fragilis']['nanopore']['overlap_paf'], checkIfExists: true)
|
|
]
|
|
|
|
MINIASM ( input )
|
|
}
|