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.

31 lines
459B

  1. task battenberg {
  2. String sample_id
  3. String docker
  4. String cluster
  5. String disk_size
  6. command <<<
  7. set -o pipefail
  8. set -e
  9. cp /software/TREC_script.Rscript ./
  10. >>>
  11. runtime {
  12. docker : docker
  13. cluster: cluster
  14. systemDisk: "cloud_ssd 40"
  15. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  16. }
  17. output {
  18. File subclones = "TREC_script.Rscript"
  19. }
  20. }