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
bb12d6db
Commit
bb12d6db
authored
Mar 07, 2016
by
Peter van 't Hof
Browse files
Fixed layout
parent
42ebd301
Changes
1
Show whitespace changes
Inline
Side-by-side
public/biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/Reference.scala
View file @
bb12d6db
...
...
@@ -19,8 +19,8 @@ import java.io.File
import
htsjdk.samtools.reference.IndexedFastaSequenceFile
import
nl.lumc.sasc.biopet.core.summary.
{
SummaryQScript
,
Summarizable
}
import
nl.lumc.sasc.biopet.utils.
{
ConfigUtils
,
Logging
}
import
nl.lumc.sasc.biopet.utils.config.
{
Config
,
Configurable
}
import
nl.lumc.sasc.biopet.utils.
{
ConfigUtils
,
Logging
}
import
nl.lumc.sasc.biopet.utils.config.
{
Config
,
Configurable
}
import
scala.collection.JavaConversions._
...
...
@@ -81,10 +81,12 @@ trait Reference extends Configurable {
}
}
else
{
val
defaults
=
ConfigUtils
.
mergeMaps
(
this
.
defaults
,
this
.
internalDefaults
)
def
getReferences
(
map
:
Map
[
String
,
Any
])
:
Set
[(
String
,
String
)]
=
(
for
(
(
species
,
species_content
:
Map
[
String
,
Any
])
<-
map
.
getOrElse
(
"references"
,
Map
[
String
,
Any
]()).
asInstanceOf
[
Map
[
String
,
Any
]].
toList
;
(
reference_name
,
_
)
<-
species_content
.
toList
)
yield
(
species
,
reference_name
)).
toSet
val
references
=
getReferences
(
defaults
)
++
getReferences
(
Config
.
global
.
map
)
if
(!
references
.
contains
((
referenceSpecies
,
referenceName
)))
{
val
buffer
=
new
StringBuilder
()
...
...
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