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
d7f169cd
Commit
d7f169cd
authored
Dec 05, 2014
by
Ibouniyamine Nabihoudine
Browse files
parameters for get_files_fn
parent
eb7d32f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jflow/parameter.py
View file @
d7f169cd
...
...
@@ -769,9 +769,9 @@ class InputDirectory(StrParameter, LinkTraceback):
return
None
return
os
.
path
.
abspath
(
input
)
def
get_files
(
self
):
def
get_files
(
self
,
*
args
):
files
=
[]
for
file
in
self
.
get_files_fn
(
self
):
for
file
in
self
.
get_files_fn
(
self
,
*
args
):
files
.
append
(
IOFile
(
os
.
path
.
join
(
self
,
file
),
"any"
,
self
.
linkTrace_nameid
,
None
)
)
return
files
...
...
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