Infer and visualize copy number from high-throughput DNA sequencing data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

export.wdl 618B

4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
4 anni fa
123456789101112131415161718192021222324252627
  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. cp -r ${sep=" " results} .
  9. # seg
  10. cnvkit.py export seg *.cns -o ${sample_id}.seg
  11. # heatmap
  12. cnvkit.py heatmap *.cns -o ${sample_id}.heatmap.pdf
  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 = "${sample_id}.seg"
  22. File heatmap = "${sample_id}.heatmap.pdf"
  23. }
  24. }