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
428B

  1. import "./tasks/battenberg.wdl" as battenberg
  2. workflow {{ project_name }} {
  3. String sample_id
  4. String battenberg_docker
  5. String battenberg_cluster
  6. String disk_size
  7. call battenberg.battenberg as battenberg {
  8. input:
  9. sample_id=sample_id,
  10. docker=battenberg_docker,
  11. cluster=battenberg_cluster,
  12. disk_size=disk_size
  13. }
  14. }