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.

4 年之前
1234567891011121314151617
  1. import "./tasks/untar.wdl" as untar
  2. workflow {{ project_name }} {
  3. File tar_file
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. call untar.untar as untar {
  8. input:
  9. tar_file=tar_file,
  10. docker=docker,
  11. cluster_config=cluster_config,
  12. disk_size=disk_size
  13. }
  14. }