mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
a9fcbd93cc
* FIx plasmidid tests for new contigs.fasta file * Fixing two md5sum hashes * Update test path in config for illumina assembly files * Update modules using assembly files * Correctly setting path of assembly files * Update tests/config/test_data.config Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
16 lines
483 B
Text
16 lines
483 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { ABACAS } from '../../../software/abacas/main.nf' addParams ( options: ['args' : '-m -p nucmer'] )
|
|
|
|
workflow test_abacas {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['sarscov2']['illumina']['scaffolds_fasta'], checkIfExists: true)
|
|
]
|
|
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
ABACAS ( input, fasta )
|
|
}
|