2021-02-04 19:42:08 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-07 09:10:18 +00:00
|
|
|
include { MINIMAP2_ALIGN } from '../../../../modules/minimap2/align/main.nf' addParams( options: [:] )
|
2021-02-04 19:42:08 +00:00
|
|
|
|
|
|
|
workflow test_minimap2_align_single_end {
|
|
|
|
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 09:53:41 +00:00
|
|
|
]
|
2021-04-13 17:03:09 +00:00
|
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
2021-03-24 09:53:41 +00:00
|
|
|
|
2021-02-04 19:42:08 +00:00
|
|
|
MINIMAP2_ALIGN ( input, fasta )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_minimap2_align_paired_end {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-04-09 12:47:05 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
2021-04-13 17:03:09 +00:00
|
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-04-13 17:03:09 +00:00
|
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
2021-03-24 09:53:41 +00:00
|
|
|
|
2021-02-04 19:42:08 +00:00
|
|
|
MINIMAP2_ALIGN ( input, fasta )
|
|
|
|
}
|