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.

27 line
784B

  1. task merge_mendelian {
  2. File D5_trio_vcf
  3. File D6_trio_vcf
  4. File family_vcf
  5. String project
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. cat ${D5_trio_vcf} | grep -v '##' > ${project}.D5.txt
  11. cat ${D6_trio_vcf} | grep -v '##' > ${project}.D6.txt
  12. cat ${family_vcf} | grep -v '##' > ${project}.consensus.txt
  13. python /opt/merge_two_family_with_genotype.py -LCL5 ${project}.D5.txt -LCL6 ${project}.D6.txt -genotype ${project}.consensus.txt -family ${project}.mendelian
  14. >>>
  15. runtime {
  16. docker:docker
  17. cluster: cluster_config
  18. systemDisk: "cloud_ssd 40"
  19. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  20. }
  21. output {
  22. File project_mendelian = "${project}.mendelian.txt"
  23. File project_mendelian_summary = "${project}.mendelian.summary.txt"
  24. }
  25. }