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.

35 line
669B

  1. task merge_family {
  2. File LCL5_vcf_gz
  3. File LCL5_vcf_idx
  4. File LCL6_vcf_gz
  5. File LCL6_vcf_idx
  6. File LCL7_vcf_gz
  7. File LCL7_vcf_idx
  8. File LCL8_vcf_gz
  9. File LCL8_vcf_idx
  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 ${LCL5_vcf_gz} ${LCL6_vcf_gz} ${LCL7_vcf_gz} ${LCL8_vcf_gz}
  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 merged_vcf = "${project}.family.vcf"
  26. }
  27. }