Skip to content
GitLab
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
42472f08
Commit
42472f08
authored
Feb 26, 2015
by
bow
Browse files
Merge branch 'patch-summary' into 'develop'
Patch summary See merge request !108
parents
75029e8e
6cadcab7
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/summary/SummaryQScript.scala
View file @
42472f08
...
...
@@ -66,7 +66,7 @@ trait SummaryQScript extends BiopetQScript {
*/
def
addSummarizable
(
summarizable
:
Summarizable
,
name
:
String
,
sampleId
:
Option
[
String
],
libraryId
:
Option
[
String
])
:
Unit
=
{
if
(
libraryId
.
isDefined
)
require
(
sampleId
.
isDefined
)
// Library always require a sample
summarizables
.
get
(
(
name
,
sampleId
,
libraryId
)
).
foreach
(
summarizable
s
+=
(
name
,
sampleId
,
libraryId
)
->
_
)
summarizables
+=
(
name
,
sampleId
,
libraryId
)
->
(
summarizable
::
summarizables
.
getOrElse
(
(
name
,
sampleId
,
libraryId
)
,
Nil
)
)
}
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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