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.

hrd_score.wdl 603B

123456789101112131415161718192021222324
  1. task HRD_score {
  2. String input_dir
  3. String Tumor_LogR_file
  4. String Tumor_BAF_file
  5. String Germline_LogR_file
  6. String Germline_BAF_file
  7. String output_file_prefix
  8. String docker
  9. String cluster_config
  10. String disk_size
  11. command {
  12. Rscript /opt/hrd_score/calculate_HRD.R ${input_dir} ${Tumor_LogR_file} ${Tumor_BAF_file} ${Germline_LogR_file} ${Germline_BAF_file} ${output_file_prefix}
  13. }
  14. runtime {
  15. docker:docker
  16. cluster: cluster_config
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  19. }
  20. output {
  21. File hrd_score = "${output_file_prefix}.txt"
  22. }
  23. }