Infer and visualize copy number from high-throughput DNA sequencing data.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
569B

  1. task export{
  2. Array[File] result
  3. String docker
  4. String cluster_config
  5. String disk_size
  6. command <<<
  7. mkdir -p /cromwell_root/tmp/cnvkit_export
  8. cp -r ${sep=" " result} /cromwell_root/tmp/cnvkit_export
  9. cd /cromwell_root/tmp/cnvkit_export
  10. # this version app just provides seg
  11. cnvkit.py export seg ./results/*.cns -o samples.seg
  12. >>>
  13. runtime {
  14. docker: docker
  15. cluster: cluster_config
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  18. }
  19. output {
  20. File seg = "samples.seg"
  21. }
  22. }