Calculate the MD5 of INPUT files in bulk.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

13 lines
202B

  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. }