Skip to content
GitLab
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
c51f935a
Commit
c51f935a
authored
Jan 30, 2017
by
Floreal Cabanettes
Browse files
Remove quotes (test debug)
parent
f0ec396c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/weaver/function.py
View file @
c51f935a
...
...
@@ -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
Supports
Markdown
0%
Try again
or
attach a new 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