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.

32 lines
618B

  1. task merge_family {
  2. File D5_vcf
  3. File D6_vcf
  4. File F7_vcf
  5. File M8_vcf
  6. File D5_vcf_tbi
  7. File D6_vcf_tbi
  8. File F7_vcf_tbi
  9. File M8_vcf_tbi
  10. String project
  11. String docker
  12. String cluster_config
  13. String disk_size
  14. command <<<
  15. /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}
  16. gunzip ${project}.family.vcf.gz
  17. >>>
  18. runtime {
  19. docker:docker
  20. cluster: cluster_config
  21. systemDisk: "cloud_ssd 40"
  22. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  23. }
  24. output {
  25. File family_vcf = "${project}.family.vcf"
  26. }
  27. }