Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
5904845a
Commit
5904845a
authored
Feb 24, 2015
by
bow
Browse files
Merge branch 'patch-summary_md5' into 'develop'
Patch summary md5 Fix on md5 in summary See merge request !107
parents
85b9861f
359dcab8
Changes
1
Show whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/summary/SummaryQScript.scala
View file @
5904845a
...
...
@@ -84,6 +84,11 @@ trait SummaryQScript extends BiopetQScript {
def
addChecksum
(
file
:
File
)
:
Unit
=
{
if
(
writeSummary
.
md5sum
&&
!
SummaryQScript
.
md5sumCache
.
contains
(
file
))
{
val
md5sum
=
Md5sum
(
this
,
file
)
// Need to not write a md5 file outside the outputDir
if
(!
file
.
getAbsolutePath
.
startsWith
(
outputDir
.
getAbsolutePath
))
md5sum
.
output
=
new
File
(
outputDir
,
".md5"
+
file
.
getAbsolutePath
+
".md5"
)
writeSummary
.
deps
:+=
md5sum
.
output
SummaryQScript
.
md5sumCache
+=
file
->
md5sum
.
output
add
(
md5sum
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment