Browse Source

fix bug

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

+ 3
- 2
tasks/MD5.wdl View File

task MD5 { task MD5 {


File file File file
String name = basename(file)
String docker String docker
String cluster_config String cluster_config
String disk_size String disk_size


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


runtime { runtime {
} }


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

Loading…
Cancel
Save