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.

25 lines
553B

  1. import "./tasks/general.wdl" as general
  2. import "./tasks/specific.wdl" as specific
  3. workflow {{ project_name }} {
  4. File input_file
  5. call general.general as general {
  6. input:
  7. output_dir='general',
  8. input_file=input_file,
  9. docker=docker,
  10. cluster_config=cluster_config
  11. }
  12. {% if genelist %}
  13. call specific.specific as specific {
  14. input:
  15. output_dir='specific',
  16. input_file=input_file,
  17. docker=docker,
  18. cluster_config=cluster_config
  19. }
  20. {% endif %}
  21. }