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.

24 lines
587B

  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/ballgown
  9. cp -r ${sep=" " ballgown} /cromwell_root/tmp/ballgown
  10. Rscript /usr/bin/ballgown.R /cromwell_root/tmp/ballgown ${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. }