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.

workflow.wdl 636B

5 years ago
1234567891011121314151617181920212223242526272829
  1. import "./tasks/replicate_consensus.wdl" as replicate_consensus
  2. import "./tasks/mendelian.wdl" as mendelian
  3. workflow {{ project_name }} {
  4. File ref_dir
  5. String fasta
  6. File chromo_file
  7. String chromo
  8. String cluster_config
  9. String disk_size
  10. call replicate_consensus.replicate_consensus as replicate_consensus {
  11. input:
  12. chromo_file=chromo_file,
  13. chromo=chromo,
  14. cluster_config=cluster_config,
  15. disk_size=disk_size
  16. }
  17. call mendelian.mendelian as mendelian {
  18. input:
  19. consensus_vcf=replicate_consensus.consensus_vcf,
  20. ref_dir=ref_dir,
  21. fasta=fasta,
  22. chromo=chromo,
  23. cluster_config=cluster_config,
  24. disk_size=disk_size
  25. }
  26. }