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.

36 lines
605B

  1. task battenberg {
  2. String sample_id
  3. File tumor_bam
  4. String normal_id
  5. File normal_bam
  6. String docker
  7. String cluster
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. cp ${normal_bam} ./${normal_id}.bam
  13. cp ${tumor_bam} ./${sample_id}.bam
  14. >>>
  15. runtime {
  16. docker : docker
  17. cluster: cluster
  18. systemDisk: "cloud_ssd 40"
  19. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  20. }
  21. output {
  22. File tumor_bam_data = "${normal_id}.bam"
  23. File normal_bam_data = "${sample_id}.bam"
  24. }
  25. }