Skip to content

Commit 2e25821

Browse files
committed
forgot to add this file
1 parent 320f493 commit 2e25821

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

checker/md5sum-checker.wdl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
task checkerTask {
2+
File inputFile
3+
String expectedMd5sum
4+
5+
command {
6+
/bin/check_md5sum --input-file ${inputFile} --md5 ${expectedMd5sum}
7+
}
8+
9+
runtime {
10+
docker: "quay.io/agduncan94/checker-md5sum"
11+
}
12+
}

0 commit comments

Comments
 (0)