2021-03-24 16:14:52 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
|
2021-09-28 19:25:10 +00:00
|
|
|
include { YARA_INDEX } from '../../../../modules/yara/index/main.nf' addParams(options: ['args': '-e 3'])
|
|
|
|
include { YARA_MAPPER } from '../../../../modules/yara/mapper/main.nf' addParams(options: ['args': '-e 3'])
|
2021-03-24 16:14:52 +00:00
|
|
|
|
|
|
|
workflow test_yara_single_end {
|
|
|
|
|
2021-04-13 17:03:09 +00:00
|
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
2021-03-24 16:14:52 +00:00
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
2021-04-13 17:03:09 +00:00
|
|
|
file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
|
|
|
|
2021-03-24 16:14:52 +00:00
|
|
|
|
2021-04-13 17:03:09 +00:00
|
|
|
YARA_INDEX ( fasta )
|
2021-03-24 16:14:52 +00:00
|
|
|
YARA_MAPPER ( input, YARA_INDEX.out.index )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_yara_paired_end {
|
|
|
|
|
2021-04-13 17:03:09 +00:00
|
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
2021-03-24 16:14:52 +00:00
|
|
|
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-04-13 17:03:09 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ] ]
|
2021-03-24 16:14:52 +00:00
|
|
|
|
2021-04-13 17:03:09 +00:00
|
|
|
YARA_INDEX ( fasta )
|
2021-03-24 16:14:52 +00:00
|
|
|
YARA_MAPPER ( input, YARA_INDEX.out.index )
|
|
|
|
}
|