2021-02-19 13:59:29 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { GATK4_SPLITNCIGARREADS } from '../../../../software/gatk4/splitncigarreads/main.nf' addParams( options: [:] )
|
|
|
|
|
|
|
|
workflow test_gatk4_splitncigarreads {
|
|
|
|
input = [ [ id:'test' ], // meta map
|
2021-03-26 11:46:46 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-03-26 11:46:46 +00:00
|
|
|
fasta = [ file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['genome']['genome_fasta_fai'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['genome']['genome_dict'], checkIfExists: true)
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-02-19 13:59:29 +00:00
|
|
|
|
2021-02-22 12:31:54 +00:00
|
|
|
GATK4_SPLITNCIGARREADS ( input, fasta )
|
2021-02-19 13:59:29 +00:00
|
|
|
}
|