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
b0c88685
Commit
b0c88685
authored
Jan 22, 2015
by
Jerome Mariette
Browse files
handle handsontable values if empty
parent
d199b90b
Changes
1
Show whitespace changes
Inline
Side-by-side
src/jflow/workflow.py
View file @
b0c88685
...
...
@@ -349,6 +349,7 @@ class Workflow(threading.Thread):
elif
param
.
__class__
==
MultiParameterList
:
new_param
=
MultiParameterList
(
param
.
name
,
param
.
help
,
required
=
param
.
required
,
flag
=
param
.
flag
,
group
=
param
.
group
,
display_name
=
param
.
display_name
)
new_param
.
sub_parameters
=
param
.
sub_parameters
if
args
.
has_key
(
param
.
name
):
for
idx
,
sargs
in
enumerate
(
args
[
param
.
name
]):
new_multi_param
=
MultiParameter
(
param
.
name
+
'_'
+
str
(
idx
),
''
,
required
=
False
,
flag
=
None
,
group
=
"default"
,
display_name
=
None
)
sub_args
=
{}
...
...
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