Skip to content
GitLab
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
efba1798
Commit
efba1798
authored
Oct 19, 2016
by
Floreal Cabanettes
Browse files
Remove --no-logs option
parent
d551e7fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/jflow_cli.py
View file @
efba1798
...
...
@@ -88,8 +88,7 @@ if __name__ == '__main__':
sub_parser
=
subparsers
.
add_parser
(
"outputs"
,
help
=
"Print workflow outputs"
)
sub_parser
.
add_argument
(
"--workflow-id"
,
type
=
str
,
help
=
"Workflow for which display outputs"
,
required
=
True
,
dest
=
"workflow_id"
)
sub_parser
.
add_argument
(
"--logs"
,
help
=
"Include logs files"
,
dest
=
"logs"
,
action
=
"store_true"
)
sub_parser
.
add_argument
(
"--no-logs"
,
help
=
"Don't include logs files"
,
dest
=
"logs"
,
action
=
"store_false"
)
sub_parser
.
add_argument
(
"--logs"
,
help
=
"Include logs files"
,
dest
=
"logs"
,
action
=
"store_true"
,
default
=
False
)
sub_parser
.
set_defaults
(
logs
=
False
)
sub_parser
.
set_defaults
(
cmd_object
=
"outputs"
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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