Browse Source

fix bug

master
YaqingLiu 4 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

@@ -6,7 +6,7 @@ task MD5 {
String disk_size

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

runtime {
@@ -17,6 +17,6 @@ task MD5 {
}

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

Loading…
Cancel
Save