您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

43 行
687B

  1. task lohhla {
  2. String sample_id
  3. File normBAM
  4. File normBAM_bai
  5. File tumorBAM
  6. File tumorBAM_bai
  7. File hlas
  8. File ascat
  9. String docker
  10. String cluster
  11. String disk_size
  12. command <<<
  13. set -o pipefail
  14. set -e
  15. echo ${sample_id} >a.txt
  16. ls ${normBAM}
  17. ls ${normBAM_bai}
  18. ls ${tumorBAM}
  19. ls ${tumorBAM_bai}
  20. ls ${hlas}
  21. ls ${ascat}
  22. >>>
  23. runtime {
  24. docker : docker
  25. cluster: cluster
  26. systemDisk: "cloud_ssd 40"
  27. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  28. }
  29. output {
  30. Array[File] lohhla_xls = glob("*.txt")
  31. }
  32. }