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 lines
618B

  1. task FinalResult {
  2. File extracted_info
  3. File annotated_txt
  4. String prefix = basename(annotated_txt,".mendelian.txt")
  5. String sample
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. python /opt/FinalResult2VCF.py -vcfInfo ${extracted_info} -mendelianInfo ${annotated_txt} -prefix ${prefix} -sample ${sample}
  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 benchmarking_calls = "${prefix}_benchmarking_calls.vcf"
  20. File all_info = "${prefix}_all_sample_information.vcf"
  21. }
  22. }