mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
c5a5e25129
* Updata test data paths. * Remove quote * Revert quast * Fix broken test * Update md5
15 lines
528 B
Text
15 lines
528 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
params.save_mpileup = true
|
|
include { IVAR_CONSENSUS } from '../../../../software/ivar/consensus/main.nf' addParams( [ options: [args2: '-aa -A -d 0 -Q 0'] ] )
|
|
|
|
workflow test_ivar_consensus {
|
|
input = [ [ id:'test'],
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true)
|
|
]
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
IVAR_CONSENSUS ( input, fasta )
|
|
}
|