Skip to content
Snippets Groups Projects
Commit 12b2af39 authored by bow's avatar bow
Browse files

Use correct config name for Md5sum override in SummaryQScript

parent 128aa21f
No related branches found
No related tags found
No related merge requests found
......@@ -84,6 +84,7 @@ trait SummaryQScript extends BiopetQScript {
def addChecksum(file: File): Unit = {
if (writeSummary.md5sum && !SummaryQScript.md5sumCache.contains(file)) {
val md5sum = new Md5sum(this) {
override def configName = "md5sum"
override def cmdLine: String = super.cmdLine + " || " +
required("echo") + required("error_on_capture " + input.toString) + " > " + required(output)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment