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.

26 lines
391B

  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. String docker
  8. String cluster
  9. String disk_size
  10. call rmats.rmats as rmats {
  11. input:
  12. vcf1 = vcf1,
  13. vcf2 = vcf2,
  14. SDF = SDF,
  15. sample_id = sample_id,
  16. CSTAT = CSTAT,
  17. docker = docker,
  18. cluster = cluster,
  19. disk_size = disk_size
  20. }
  21. }