You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- task merge_family {
- File D5_vcf
- File D6_vcf
- File F7_vcf
- File M8_vcf
- File D5_vcf_tbi
- File D6_vcf_tbi
- File F7_vcf_tbi
- File M8_vcf_tbi
- String project
- String docker
- String cluster_config
- String disk_size
-
- command <<<
-
- /opt/rtg-tools/dist/rtg-tools-3.10.1-4d58ead/rtg vcfmerge --force-merge-all -o ${project}.family.vcf.gz ${D5_vcf} ${D6_vcf} ${F7_vcf} ${M8_vcf}
- gunzip ${project}.family.vcf.gz
-
- >>>
-
- runtime {
- docker:docker
- cluster: cluster_config
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
- }
- output {
- File family_vcf = "${project}.family.vcf"
- }
- }
|