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.

19 lines
350B

  1. import "./tasks/split_gvcf_files.wdl" as split_gvcf_files
  2. workflow {{ project_name }} {
  3. File gvcf
  4. String chromo
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. call split_gvcf_files.split_gvcf_files as split_gvcf_files {
  9. input:
  10. gvcf=gvcf,
  11. chromo=chromo,
  12. docker=docker,
  13. cluster_config=cluster_config,
  14. disk_size=disk_size
  15. }
  16. }