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.

25 lines
554B

  1. task count_mendelian {
  2. File project_mendelian
  3. File vote_summary
  4. File family_vcf
  5. String family_name = basename(family_vcf,".vcf")
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. python /opt/count_mendelian.py ${project_mendelian} ${vote_summary} ${family_name}.mendelian.count.summary.txt
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File mendelian_summary = "${family_name}.mendelian.count.summary.txt"
  20. }
  21. }