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.

30 line
648B

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