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
86b67132
Commit
86b67132
authored
Sep 03, 2014
by
Jerome Mariette
Browse files
No commit message
No commit message
parent
3a7c680f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jflow/workflow.py
View file @
86b67132
...
...
@@ -233,16 +233,10 @@ class Workflow(threading.Thread):
choices
=
param
.
choices
,
required
=
param
.
required
,
flag
=
param
.
flag
,
group
=
param
.
group
,
display_name
=
param
.
display_name
)
self
.
__setattr__
(
param
.
name
,
new_param
)
elif
param
.
__class__
==
InputFileList
:
if
args
[
param
.
name
]:
self
.
__setattr__
(
param
.
name
,
param
.
prepare_input_files
(
args
[
param
.
name
]))
else
:
self
.
__setattr__
(
param
.
name
,
[])
elif
param
.
__class__
==
ParameterList
:
if
args
[
param
.
name
]:
elif
param
.
__class__
==
InputFileList
and
args
[
param
.
name
]:
self
.
__setattr__
(
param
.
name
,
param
.
prepare_input_files
(
args
[
param
.
name
]))
elif
param
.
__class__
==
ParameterList
and
args
[
param
.
name
]:
self
.
__setattr__
(
param
.
name
,
args
[
param
.
name
])
else
:
self
.
__setattr__
(
param
.
name
,
[])
elif
param
.
__class__
==
MultiParameter
:
sub_args
=
{}
for
sarg
in
args
[
param
.
name
]:
...
...
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