選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

24 行
565B

  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. }