Browse Source

fix bug

master
YaqingLiu 5 years ago
parent
commit
9482cc7108
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tasks/MD5.wdl

+ 2
- 2
tasks/MD5.wdl View File

String disk_size String disk_size


command <<< command <<<
md5sum ${file} > $(basename ${file}).md5
md5sum ${file} > $(basename ${file}.md5)
>>> >>>


runtime { runtime {
} }


output { output {
File MD5 = "$(basename ${file}).md5"
File MD5 = "$(basename ${file}.md5)"
} }
} }

Loading…
Cancel
Save