Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
biopet.biopet
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirrors
biopet.biopet
Commits
fdf13694
Commit
fdf13694
authored
9 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Added manual path set to config
parent
92985895
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/config/Configurable.scala
+7
-5
7 additions, 5 deletions
.../scala/nl/lumc/sasc/biopet/core/config/Configurable.scala
with
7 additions
and
5 deletions
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/config/Configurable.scala
+
7
−
5
View file @
fdf13694
...
...
@@ -52,7 +52,7 @@ trait Configurable extends ImplicitConversions {
* @param submodule
* @return
*/
def
p
ath
(
sample
:
String
=
null
,
library
:
String
=
null
,
submodule
:
String
=
null
)
=
{
def
getConfigP
ath
(
sample
:
String
=
null
,
library
:
String
=
null
,
submodule
:
String
=
null
)
=
{
(
if
(
sample
!=
null
)
"samples"
::
sample
::
Nil
else
Nil
)
:::
(
if
(
library
!=
null
)
"libraries"
::
library
::
Nil
else
Nil
)
:::
(
if
(
submodule
!=
null
)
configPath
:::
configName
::
Nil
else
configPath
)
...
...
@@ -91,11 +91,12 @@ trait Configurable extends ImplicitConversions {
submodule
:
String
=
null
,
freeVar
:
Boolean
=
true
,
sample
:
String
=
null
,
library
:
String
=
null
)
:
ConfigValue
=
{
library
:
String
=
null
,
path
:
List
[
String
]
=
null
)
:
ConfigValue
=
{
val
s
=
if
(
sample
!=
null
||
defaultSample
.
isEmpty
)
sample
else
defaultSample
.
get
val
l
=
if
(
library
!=
null
||
defaultLibrary
.
isEmpty
)
library
else
defaultLibrary
.
get
val
m
=
if
(
submodule
!=
null
)
submodule
else
configName
val
p
=
p
ath
(
s
,
l
,
submodule
)
val
p
=
if
(
path
==
null
)
getConfigP
ath
(
s
,
l
,
submodule
)
else
path
val
d
=
{
val
value
=
Config
.
getValueFromMap
(
defaults
.
toMap
,
ConfigValueIndex
(
m
,
p
,
key
,
freeVar
))
if
(
value
.
isDefined
)
value
.
get
.
value
else
default
...
...
@@ -117,11 +118,12 @@ trait Configurable extends ImplicitConversions {
submodule
:
String
=
null
,
freeVar
:
Boolean
=
true
,
sample
:
String
=
null
,
library
:
String
=
null
)
=
{
library
:
String
=
null
,
path
:
List
[
String
]
=
null
)
=
{
val
s
=
if
(
sample
!=
null
||
defaultSample
.
isEmpty
)
sample
else
defaultSample
.
get
val
l
=
if
(
library
!=
null
||
defaultLibrary
.
isEmpty
)
library
else
defaultLibrary
.
get
val
m
=
if
(
submodule
!=
null
)
submodule
else
configName
val
p
=
p
ath
(
s
,
l
,
submodule
)
val
p
=
if
(
path
==
null
)
getConfigP
ath
(
s
,
l
,
submodule
)
else
path
globalConfig
.
contains
(
m
,
p
,
key
,
freeVar
)
||
!(
Config
.
getValueFromMap
(
defaults
.
toMap
,
ConfigValueIndex
(
m
,
p
,
key
,
freeVar
))
==
None
)
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment