nf-core_modules/tests/modules/gatk4/gatherpileupsummaries/main.nf
FriederikeHanssen 8c8be7d7c6
Add gatherpileupsummaries (#1311)
* Add gatherpileupsummaries

* fix checksum

* Update modules/gatk4/gatherpileupsummaries/main.nf

* Add in when
2022-02-17 15:05:21 +01:00

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 )
}