Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ballgown.wdl 565B

il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
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. }