選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

48 行
1.0KB

  1. import "./tasks/raw_depth.wdl" as raw_depth
  2. import "./tasks/deduped_depth.wdl" as deduped_depth
  3. import "./tasks/depth.wdl" as depth
  4. workflow {{ project_name }} {
  5. File raw_bam
  6. File raw_bam_idx
  7. File deduped_bam
  8. File deduped_bam_idx
  9. String sample_id
  10. File regions
  11. String docker
  12. String cluster_config
  13. String disk_size
  14. call raw_depth.raw_depth as raw_depth {
  15. input:
  16. raw_bam=raw_bam,
  17. raw_bam_idx=raw_bam_idx,
  18. sample_id=sample_id,
  19. regions=regions,
  20. docker=docker,
  21. cluster_config=cluster_config,
  22. disk_size=disk_size
  23. }
  24. call deduped_depth.deduped_depth as deduped_depth {
  25. input:
  26. deduped_bam=deduped_bam,
  27. deduped_bam_idx=deduped_bam_idx,
  28. sample_id=sample_id,
  29. regions=regions,
  30. docker=docker,
  31. cluster_config=cluster_config,
  32. disk_size=disk_size
  33. }
  34. call depth.depth as depth {
  35. input:
  36. bam_raw_depth=raw_depth.bam_raw_depth,
  37. bam_deduped_depth=deduped_depth.bam_deduped_depth,
  38. sample_id=sample_id,
  39. regions=regions,
  40. docker=docker,
  41. cluster_config=cluster_config,
  42. disk_size=disk_size
  43. }
  44. }