Skip to content

Commit

Permalink
Fix and improve help text for recent shed command additions.
Browse files Browse the repository at this point in the history
These could still use some work - but it is an improvement.

Closes #223.
  • Loading branch information
jmchilton committed May 27, 2015
1 parent b129279 commit 99300cb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
9 changes: 7 additions & 2 deletions planemo/commands/cmd_shed_serve.py
Expand Up @@ -20,8 +20,13 @@
)
@pass_context
def cli(ctx, paths, **kwds):
""" Serve a transient Galaxy instance after installing repositories
from a remote Tool Shed.
""" Serve a transient Galaxy with published repositories installed.
This command will start a Galaxy instance configured to target the
specified shed, find published artifacts (tools and dependencies)
corresponding to command-line arguments and ``.shed.yml`` file(s),
install these artifacts, and serve a Galaxy instances that can be
logged into an explored interactively.

This comment has been minimized.

Copy link
@nsoranzo

nsoranzo May 27, 2015

Member

s/an/and/ ?

"""
install_args_list = shed.install_arg_lists(ctx, paths, **kwds)
with galaxy_serve.shed_serve(ctx, install_args_list, **kwds) as config:
Expand Down
10 changes: 8 additions & 2 deletions planemo/commands/cmd_shed_test.py
Expand Up @@ -23,8 +23,14 @@
)
@pass_context
def cli(ctx, paths, **kwds):
""" Serve a transient Galaxy instance after installing repositories
from a remote Tool Shed.
""" Run tests of published shed artifacts.
This command will start a Galaxy instance configured to target the
specified shed, find published artifacts (tools and dependencies)
corresponding to command-line arguments and ``.shed.yml`` file(s),
install these artifacts, and run the tool tests for these commands.
This command requires the target to be version 15.07 or newer.
"""
galaxy_test.process_defaults(ctx, kwds)
install_args_list = shed.install_arg_lists(ctx, paths, **kwds)
Expand Down

0 comments on commit 99300cb

Please sign in to comment.