Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gga_load_data
Manage
Activity
Members
Labels
Plan
Issues
12
Issue boards
Milestones
Wiki
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
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
abims
e-infra
gga_load_data
Merge requests
!5
Workflow v2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Workflow v2
workflow_v2
into
dev
Overview
2
Commits
15
Pipelines
0
Changes
5
2 unresolved threads
Hide all comments
Merged
Loraine Gueguen
requested to merge
workflow_v2
into
dev
3 years ago
Overview
2
Commits
15
Pipelines
0
Changes
1
2 unresolved threads
Hide all comments
Expand
👍
0
👎
0
Merge request reports
Compare
version 9
version 10
f3644d24
3 years ago
version 9
aa412602
3 years ago
version 8
8d50f6e9
3 years ago
version 7
2eed9230
3 years ago
version 6
3a5a747b
3 years ago
version 5
e96ba393
3 years ago
version 4
dbd5d298
3 years ago
version 3
696dea98
3 years ago
version 2
08074e9b
3 years ago
version 1
6af39982
3 years ago
dev (base)
and
version 10
latest version
29933ed3
15 commits,
3 years ago
version 10
f3644d24
14 commits,
3 years ago
version 9
aa412602
13 commits,
3 years ago
version 8
8d50f6e9
12 commits,
3 years ago
version 7
2eed9230
11 commits,
3 years ago
version 6
3a5a747b
10 commits,
3 years ago
version 5
e96ba393
9 commits,
3 years ago
version 4
dbd5d298
8 commits,
3 years ago
version 3
696dea98
7 commits,
3 years ago
version 2
08074e9b
6 commits,
3 years ago
version 1
6af39982
5 commits,
3 years ago
Show latest version
1 file
+
1
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
run_workflow_phaeoexplorer.py
+
1
−
2
Options
@@ -987,7 +987,7 @@ if __name__ == "__main__":
logging
.
info
(
"
Input organism %s: 2 species detected in input dictionary
"
%
k
)
# Set workflow path (2 organisms)
workflow_path
=
os
.
path
.
join
(
os
.
path
.
abspath
(
script_dir
),
"
workflows_phaeoexplorer/Galaxy-Workflow-chado_load_tripal_synchronize_jbrowse_2org_v
3
.ga
"
)
workflow_path
=
os
.
path
.
join
(
os
.
path
.
abspath
(
script_dir
),
"
workflows_phaeoexplorer/Galaxy-Workflow-chado_load_tripal_synchronize_jbrowse_2org_v
2
.ga
"
)
# Instance object required variables
instance_url
,
email
,
password
=
None
,
None
,
None
@@ -1084,7 +1084,6 @@ if __name__ == "__main__":
# Look for empty parameters values, throw a critical error if a parameter value is invalid
for
param_name
,
param_value
in
org2_parameters_dict
.
items
():
logging
.
info
(
"
Parameters for organism 1 (%s)
"
%
org2_full_name
)
if
param_value
is
None
or
param_value
==
""
:
logging
.
critical
(
"
Empty parameter found for organism {0} (parameter: {1}, parameter value: {2})
"
.
format
(
org2_full_name
,
param_name
,
param_value
))
sys
.
exit
()
Loading