Infer and visualize copy number from high-throughput DNA sequencing data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

export.wdl 659B

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