bamdst is a lightweight tool to stat the depth coverage of target regions of bam file(s).
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

21 lines
388B

  1. import "./tasks/bamdst.wdl" as bamdst
  2. workflow {{ project_name }} {
  3. File bam
  4. File bed
  5. String sample
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. call bamdst.bamdst as bamdst {
  10. input:
  11. bam=bam,
  12. bed=bed,
  13. sample=sample,
  14. docker=docker,
  15. disk_size=disk_size,
  16. cluster_config=cluster_config
  17. }
  18. }