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 630B

5 lat temu
5 lat temu
5 lat temu
123456789101112131415161718192021222324252627
  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. sed -i 's/"//g' ${base}.txt
  13. sed -i '1s/FPKM./GENE_ID\t/g' ${base}.txt
  14. >>>
  15. runtime {
  16. docker: docker
  17. cluster: cluster
  18. systemDisk: "cloud_ssd 40"
  19. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  20. }
  21. output {
  22. File mat_expression="${base}.txt"
  23. }
  24. }