bamdst is a lightweight tool to stat the depth coverage of target regions of bam file(s).
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.

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. }