Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.bio.base
Merge requests
!155
Write parameters in a temporary config file to enable chain loading
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Write parameters in a temporary config file to enable chain loading
chain
into
master
Overview
11
Commits
2
Pipelines
4
Changes
3
All threads resolved!
Show all comments
Merged
Write parameters in a temporary config file to enable chain loading
Amir MOHAMMADI
requested to merge
chain
into
master
May 18, 2018
Overview
11
Commits
2
Pipelines
4
Changes
3
All threads resolved!
Show all comments
Fixes
#116 (closed)
Edited
May 18, 2018
by
Amir MOHAMMADI
0
0
Merge request reports
Compare
master
version 3
5e74916c
May 23, 2018
version 2
db79dbcb
May 23, 2018
version 1
dec5fa81
May 18, 2018
master (base)
and
latest version
latest version
449a70c5
2 commits,
May 23, 2018
version 3
5e74916c
2 commits,
May 23, 2018
version 2
db79dbcb
2 commits,
May 23, 2018
version 1
dec5fa81
1 commit,
May 18, 2018
3 files
+
47
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
bob/bio/base/baseline/Baseline.py
+
1
−
1
View file @ 449a70c5
Edit in single-file editor
Open in Web IDE
Show comments on this file
Show full file
@@ -34,7 +34,7 @@ def get_available_databases():
available_databases
[
database
][
"
groups
"
]
=
[]
# Searching for database groups
try
:
groups
=
list
(
database_entry_point
.
groups
())
groups
=
list
(
database_entry_point
.
groups
())
or
[
"
dev
"
]
for
g
in
[
"
dev
"
,
"
eval
"
]:
available_databases
[
database
][
"
groups
"
]
+=
[
g
]
if
g
in
groups
else
[]
except
Exception
:
Loading