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.

workflow.wdl 202B

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