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.

33 satır
634B

  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. >>>
  17. runtime {
  18. docker:docker
  19. cluster: cluster_config
  20. systemDisk: "cloud_ssd 40"
  21. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  22. }
  23. output {
  24. File merged_vcf = "${project}.family.vcf"
  25. }
  26. }