2022-05-31 10:08:13 -04:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { GATK4_COMPOSESTRTABLEFILE } from '../../../../modules/gatk4/composestrtablefile/main.nf'
|
|
|
|
|
|
|
|
workflow test_gatk4_composestrtablefile {
|
|
|
|
|
2022-06-01 03:20:20 -04:00
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
2022-06-01 03:17:05 -04:00
|
|
|
|
2022-06-01 03:20:20 -04:00
|
|
|
fasta_fai = file(params.test_data['homo_sapiens']['genome']['genome_fasta_fai'], checkIfExists: true)
|
2022-06-01 03:17:05 -04:00
|
|
|
|
2022-06-01 03:20:20 -04:00
|
|
|
dict = file(params.test_data['homo_sapiens']['genome']['genome_dict'], checkIfExists: true)
|
2022-05-31 10:08:13 -04:00
|
|
|
|
2022-06-01 03:17:05 -04:00
|
|
|
GATK4_COMPOSESTRTABLEFILE ( fasta, fasta_fai, dict )
|
2022-05-31 10:08:13 -04:00
|
|
|
}
|