Calculate the MD5 of INPUT files in bulk.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

workflow.wdl 268B

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
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. }