nf-core_modules/tests/modules/bwamem2/mem/main.nf

34 lines
1.2 KiB
Text
Raw Normal View History

2021-02-12 14:24:09 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BWAMEM2_INDEX } from '../../../../modules/bwamem2/index/main.nf' addParams( options: [:] )
include { BWAMEM2_MEM } from '../../../../modules/bwamem2/mem/main.nf' addParams( options: [:] )
2021-02-12 14:24:09 +00:00
//
// Test with single-end data
//
2021-02-12 14:24:09 +00:00
workflow test_bwamem2_mem_single_end {
input = [ [ id:'test', single_end:true ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
]
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
2021-02-12 14:24:09 +00:00
BWAMEM2_INDEX ( fasta )
BWAMEM2_MEM ( input, BWAMEM2_INDEX.out.index )
2021-02-12 14:24:09 +00:00
}
//
// Test with paired-end data
//
2021-02-12 14:24:09 +00:00
workflow test_bwamem2_mem_paired_end {
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) ]
]
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
2021-02-12 14:24:09 +00:00
BWAMEM2_INDEX ( fasta )
BWAMEM2_MEM ( input, BWAMEM2_INDEX.out.index )
2021-02-12 14:24:09 +00:00
}