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
f2be7d7a
Commit
f2be7d7a
authored
Mar 02, 2013
by
Jerome Mariette
Browse files
handle append from ui
parent
b7b12dae
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jflow/workflow.py
View file @
f2be7d7a
...
...
@@ -195,8 +195,10 @@ class Workflow(threading.Thread):
if
args
.
has_key
(
param
.
name
):
# if it's an append parameter, the result should be a list
if
param
.
action
==
"append"
:
try
:
value
=
args
[
param
.
name
].
split
(
","
)
except
:
value
=
args
[
param
.
name
]
if
args
[
param
.
name
]:
try
:
value
=
args
[
param
.
name
].
split
(
","
)
except
:
value
=
args
[
param
.
name
]
else
:
value
=
[]
extended_args
[
param
.
name
]
=
value
# if it's a date
elif
param
.
type
==
date
:
...
...
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