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.

ballgown.wdl 600B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
12345678910111213141516171819202122232425
  1. task ballgown {
  2. File gene_abundance
  3. String base = basename(gene_abundance, ".gene.abundance.txt")
  4. Array[File] ballgown
  5. String docker
  6. String cluster
  7. String disk_size
  8. command <<<
  9. mkdir -p /cromwell_root/tmp/${base}
  10. cp -r ${sep=" " ballgown} /cromwell_root/tmp/${base}
  11. ballgown /cromwell_root/tmp/${base} ${base}.txt
  12. >>>
  13. runtime {
  14. docker: docker
  15. cluster: cluster
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  18. }
  19. output {
  20. File mat_expression = "${base}.txt"
  21. }
  22. }