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.

34 lines
648B

  1. import "./tasks/depth.wdl" as depth
  2. import "./tasks/count.wdl" as count
  3. workflow {{ project_name }} {
  4. File bam
  5. File bai
  6. String sample_id
  7. File bed
  8. String samtools_docker
  9. String count_docker
  10. String cluster_config
  11. String disk_size
  12. call depth.depth as depth {
  13. input:
  14. bam=bam,
  15. bai=bai,
  16. sample_id=sample_id,
  17. bed=bed,
  18. docker=samtools_docker,
  19. cluster_config=cluster_config,
  20. disk_size=disk_size
  21. }
  22. call count.count as count {
  23. input:
  24. readcount=depth.bam_depth,
  25. bed=bed,
  26. docker=count_docker,
  27. disk_size=disk_size,
  28. cluster_config=cluster_config,
  29. sample_id=sample_id
  30. }
  31. }