mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
8c8be7d7c6
* Add gatherpileupsummaries * fix checksum * Update modules/gatk4/gatherpileupsummaries/main.nf * Add in when
18 lines
632 B
Text
18 lines
632 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { GATK4_GATHERPILEUPSUMMARIES } from '../../../../modules/gatk4/gatherpileupsummaries/main.nf'
|
|
|
|
workflow test_gatk4_gatherpileupsummaries {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
[file(params.test_data['homo_sapiens']['illumina']['test_pileups_table'], checkIfExists: true)]
|
|
//file(params.test_data['homo_sapiens']['illumina']['test_pileups_table'], checkIfExists: true)]
|
|
]
|
|
|
|
dict = file(params.test_data['homo_sapiens']['genome']['genome_21_dict'], checkIfExists: true)
|
|
|
|
GATK4_GATHERPILEUPSUMMARIES ( input, dict )
|
|
}
|