Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

workflow.wdl 493B

4 år sedan
4 år sedan
4 år sedan
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. }