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
864B

  1. task merge_mendelian {
  2. File D5_in
  3. File D6_in
  4. File family_in
  5. File D5_out
  6. File D6_out
  7. File family_out
  8. String family_name
  9. String docker
  10. String cluster_config
  11. String disk_size
  12. command <<<
  13. python /opt/merge_two_family_with_genotype.py -LCL5 ${D5_in} -LCL6 ${D6_in} -genotype ${family_in} -family ${family_name}.inside
  14. python /opt/merge_two_family_with_genotype.py -LCL5 ${D5_out} -LCL6 ${D6_out} -genotype ${family_out} -family ${family_name}.outside
  15. >>>
  16. runtime {
  17. docker:docker
  18. cluster: cluster_config
  19. systemDisk: "cloud_ssd 40"
  20. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  21. }
  22. output {
  23. File mendelian_in = "${family_name}.inside.txt"
  24. File mendelian_in_summary = "${family_name}.inside.summary.txt"
  25. File mendelian_out = "${family_name}.outside.txt"
  26. File mendelian_out_summary = "${family_name}.outside.summary.txt"
  27. }
  28. }