2021-03-24 16:14:52 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { YARA_INDEX } from '../../../../modules/yara/index/main.nf'
|
|
|
|
include { YARA_MAPPER } from '../../../../modules/yara/mapper/main.nf'
|
2021-03-24 16:14:52 +00:00
|
|
|
|
|
|
|
workflow test_yara_single_end {
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ], // meta map
|
|
|
|
[
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
]
|
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
|
|
|
|
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-11-26 07:58:40 +00:00
|
|
|
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)
|
|
|
|
]
|
|
|
|
]
|
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
|
|
|
|
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 )
|
|
|
|
}
|