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
genotoul-bioinfo
jflow
Commits
17b1f35e
Commit
17b1f35e
authored
Jan 06, 2017
by
Floreal Cabanettes
Browse files
Args/inputs/outputs into quotes in Makeflow file
parent
24f0b196
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/weaver/util.py
View file @
17b1f35e
...
@@ -147,7 +147,7 @@ def parse_string_list(string_list):
...
@@ -147,7 +147,7 @@ def parse_string_list(string_list):
This is the same as :func:`parse_object_list` except it converts all
This is the same as :func:`parse_object_list` except it converts all
objects to strings.
objects to strings.
"""
"""
return
(
str
(
o
)
for
o
in
parse_object_list
(
string_list
))
return
(
"
\"
"
+
str
(
o
)
+
"
\"
"
for
o
in
parse_object_list
(
string_list
))
# Iterable utilities
# Iterable utilities
...
...
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