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.

29 lines
445B

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