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.

27 lines
557B

  1. import "./tasks/deduped_Metrics.wdl" as deduped_Metrics
  2. workflow {{ project_name }} {
  3. File ref_dir
  4. String SENTIEON_INSTALL_DIR
  5. String sample
  6. String fasta
  7. File Dedup_bam
  8. File Dedup_bam_index
  9. String docker
  10. String cluster_config
  11. String disk_size
  12. call deduped_Metrics.deduped_Metrics as deduped_Metrics {
  13. input:
  14. ref_dir=ref_dir,
  15. SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
  16. sample=sample,
  17. fasta=fasta,
  18. Dedup_bam=Dedup_bam,
  19. Dedup_bam_index=Dedup_bam_index,
  20. docker=docker,
  21. cluster_config=cluster_config,
  22. disk_size=disk_size
  23. }
  24. }