Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Hervé MENAGER
galaxy-cwl-is-docker
Commits
2e533443
Commit
2e533443
authored
Jun 16, 2019
by
Hervé MENAGER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use CWL workflow label if present as Galaxy workflow name
parent
99b81bf7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
parser.py
parser.py
+2
-1
No files found.
parser.py
View file @
2e533443
...
...
@@ -760,7 +760,8 @@ class WorkflowProxy(object):
return
input_connections_by_step
def
to_dict
(
self
):
name
=
os
.
path
.
basename
(
self
.
_workflow_path
or
'TODO - derive a name from ID'
)
#name = os.path.basename(self._workflow_path or 'TODO - derive a name from ID')
name
=
os
.
path
.
basename
(
self
.
_workflow
.
tool
.
get
(
'label'
)
or
self
.
_workflow_path
or
'TODO - derive a name from ID'
)
steps
=
{}
step_proxies
=
self
.
step_proxies
()
...
...
Write
Preview
Markdown
is supported
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