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.

28 lines
457B

  1. import "./tasks/vcfeval.wdl" as vcfeval
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File vcf1
  5. File vcf2
  6. File SDF
  7. File vcf_tbi1
  8. File vcf_tbi2
  9. String docker
  10. String cluster
  11. String disk_size
  12. call vcfeval.vcfeval as vcfeval {
  13. input:
  14. vcf1 = vcf1,
  15. vcf2 = vcf2,
  16. vcf_tbi1 = vcf_tbi1,
  17. vcf_tbi2 = vcf_tbi2,
  18. SDF = SDF,
  19. sample_id = sample_id,
  20. docker = docker,
  21. cluster = cluster,
  22. disk_size = disk_size
  23. }
  24. }