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.

пре 4 година
пре 4 година
пре 4 година
пре 4 година
пре 4 година
1234567891011121314151617181920212223242526
  1. import "./tasks/depth.wdl" as depth
  2. workflow {{ project_name }} {
  3. File raw_bam
  4. File raw_bam_idx
  5. File deduped_bam
  6. File deduped_bam_idx
  7. String sample_id
  8. File regions
  9. String docker
  10. String cluster_config
  11. String disk_size
  12. call depth.depth as depth {
  13. input:
  14. raw_bam=raw_bam,
  15. raw_bam_idx=raw_bam_idx,
  16. deduped_bam=deduped_bam,
  17. deduped_bam_idx=deduped_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. }