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.

5 年之前
5 年之前
4 年之前
5 年之前
5 年之前
5 年之前
5 年之前
12345678910111213141516171819202122232425
  1. task ballgown {
  2. File gene_abundance
  3. String base=basename(gene_abundance, ".gene.abundance.txt")
  4. String docker
  5. String cluster
  6. String disk_size
  7. Array[File] ballgown
  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. }