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.

access.wdl 609B

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
4 anni fa
12345678910111213141516171819202122232425262728
  1. task access {
  2. File faidx
  3. File fasta
  4. String method
  5. String min_gap_size
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. if [ ${method}=="amplicon" ]; then
  11. touch access-mappable.bed
  12. else
  13. cnvkit.py access -s ${min_gap_size} -o access-mappable.bed ${fasta}
  14. fi
  15. >>>
  16. runtime {
  17. docker: docker
  18. cluster: cluster_config
  19. systemDisk: "cloud_ssd 40"
  20. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  21. }
  22. output {
  23. File access_bed = "access-mappable.bed"
  24. }
  25. }