No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

ballgown.wdl 595B

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