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
981f9413
Commit
981f9413
authored
Oct 14, 2014
by
Frédéric Escudié
Browse files
No commit message
No commit message
parent
93568abb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jflow/component.py
View file @
981f9413
...
...
@@ -177,7 +177,7 @@ class Component(object):
self
.
params_order
.
append
(
name
)
self
.
__setattr__
(
name
,
new_param
)
def
add_output_file_endswith
(
self
,
name
,
help
,
file_format
=
"any"
,
pattern
=
'.stderr'
,
behaviour
=
"include"
,
def
add_output_file_endswith
(
self
,
name
,
help
,
pattern
,
file_format
=
"any"
,
behaviour
=
"include"
,
group
=
"default"
,
display_name
=
None
,
add_to
=
None
):
new_param
=
OutputFilesEndsWith
(
name
,
help
,
self
.
output_directory
,
pattern
,
include
=
(
behaviour
==
"include"
),
file_format
=
file_format
,
group
=
group
,
display_name
=
display_name
)
...
...
@@ -192,7 +192,7 @@ class Component(object):
self
.
params_order
.
append
(
name
)
self
.
__setattr__
(
name
,
new_param
)
def
add_output_file_pattern
(
self
,
name
,
help
,
file_format
=
"any"
,
pattern
=
'.stderr$'
,
behaviour
=
"include"
,
def
add_output_file_pattern
(
self
,
name
,
help
,
pattern
,
file_format
=
"any"
,
behaviour
=
"include"
,
group
=
"default"
,
display_name
=
None
,
add_to
=
None
):
new_param
=
OutputFilesPattern
(
name
,
help
,
self
.
output_directory
,
pattern
,
include
=
(
behaviour
==
"exclude"
),
file_format
=
file_format
,
group
=
group
,
display_name
=
display_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