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.

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