Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ballgown.wdl 630B

5 anos atrás
4 anos atrás
5 anos atrás
4 anos atrás
5 anos atrás
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. }