nf-core_modules/tests/modules/gatk4/splitncigarreads/main.nf

17 lines
714 B
Text
Raw Normal View History

2021-02-19 13:59:29 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GATK4_SPLITNCIGARREADS } from '../../../../modules/gatk4/splitncigarreads/main.nf' addParams( options: [:] )
2021-02-19 13:59:29 +00:00
workflow test_gatk4_splitncigarreads {
input = [ [ id:'test' ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true) ]
]
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
fai = file(params.test_data['sarscov2']['genome']['genome_fasta_fai'], checkIfExists: true)
dict = file(params.test_data['sarscov2']['genome']['genome_dict'], checkIfExists: true)
2021-02-19 13:59:29 +00:00
GATK4_SPLITNCIGARREADS ( input, fasta, fai, dict )
2021-02-19 13:59:29 +00:00
}