Calculate the MD5 of INPUT files in bulk.
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.

16 lines
258B

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