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.

23 lines
368B

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