Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

ballgown.wdl 565B

5 lat temu
5 lat temu
5 lat temu
123456789101112131415161718192021222324
  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. command <<<
  8. mkdir -p /cromwell_root/tmp/${base}
  9. cp -r ${sep=" " ballgown} /cromwell_root/tmp/${base}
  10. ballgown /cromwell_root/tmp/${base} ${base}.txt
  11. >>>
  12. runtime {
  13. docker: docker
  14. cluster: cluster
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd 150 /cromwell_root/"
  17. }
  18. output {
  19. File mat_expression = "${base}.txt"
  20. }
  21. }