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
581319b3
Commit
581319b3
authored
Feb 28, 2017
by
Floreal Cabanettes
Browse files
Inputs/outputs/args remove quotes
parent
3421b31f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/weaver/function.py
View file @
581319b3
...
...
@@ -102,9 +102,9 @@ class Function(object):
This method requires the user to **explicitly** specify the `inputs`
and `outputs` to be used in the command string.
"""
inputs
=
"'"
+
"
' '
"
.
join
(
parse_string_list
(
inputs
))
+
"'"
outputs
=
"'"
+
"
' '
"
.
join
(
parse_string_list
(
outputs
))
+
"'"
arguments
=
"'"
+
"
' '
"
.
join
(
parse_string_list
(
arguments
))
+
"'"
inputs
=
' '
.
join
(
parse_string_list
(
inputs
))
outputs
=
' '
.
join
(
parse_string_list
(
outputs
))
arguments
=
' '
.
join
(
parse_string_list
(
arguments
))
return
self
.
cmd_format
.
format
(
executable
=
self
.
path
,
EXE
=
self
.
path
,
...
...
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