2021-11-15 15:43:06 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { GATK4_INDEXFEATUREFILE } from '../../../../modules/gatk4/indexfeaturefile/main.nf'
|
2021-11-15 15:43:06 +00:00
|
|
|
|
|
|
|
workflow test_gatk4_indexfeaturefile_bed {
|
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test' ], // meta map
|
|
|
|
file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
GATK4_INDEXFEATUREFILE ( input )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_gatk4_indexfeaturefile_bed_gz {
|
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test' ], // meta map
|
|
|
|
file(params.test_data['homo_sapiens']['genome']['genome_bed_gz'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
GATK4_INDEXFEATUREFILE ( input )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_gatk4_indexfeaturefile_vcf {
|
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test' ], // meta map
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
GATK4_INDEXFEATUREFILE ( input )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_gatk4_indexfeaturefile_vcf_gz {
|
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test' ], // meta map
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf_gz'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
GATK4_INDEXFEATUREFILE ( input )
|
|
|
|
}
|