[ARVADOS] updated: 60152eec3b8852169bd4121513a25479471d10e5
git at public.curoverse.com
git at public.curoverse.com
Tue Oct 14 10:59:06 EDT 2014
Summary of changes:
sdk/python/arvados/commands/run.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
via 60152eec3b8852169bd4121513a25479471d10e5 (commit)
from 7fadfb046ace2dbda699037545c5504e99446046 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 60152eec3b8852169bd4121513a25479471d10e5
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date: Tue Oct 14 10:14:47 2014 -0400
3609: Add command line help strings
diff --git a/sdk/python/arvados/commands/run.py b/sdk/python/arvados/commands/run.py
index 7e95083..05a3c0c 100644
--- a/sdk/python/arvados/commands/run.py
+++ b/sdk/python/arvados/commands/run.py
@@ -15,10 +15,10 @@ import logging
logger = logging.getLogger('arvados.arv-run')
arvrun_parser = argparse.ArgumentParser()
-arvrun_parser.add_argument('--dry-run', action="store_true")
-arvrun_parser.add_argument('--local', action="store_true")
-arvrun_parser.add_argument('--docker-image', type=str, default="arvados/jobs")
-arvrun_parser.add_argument('--git-dir', type=str, default="")
+arvrun_parser.add_argument('--dry-run', action="store_true", help="Print out the pipeline that would be submitted and exit")
+arvrun_parser.add_argument('--local', action="store_true", help="Run locally using arv-crunch-job")
+arvrun_parser.add_argument('--docker-image', type=str, default="arvados/jobs", help="Docker image to use, default arvados/jobs")
+arvrun_parser.add_argument('--git-dir', type=str, default="", help="Git directory to use to find run-command when using --local")
arvrun_parser.add_argument('args', nargs=argparse.REMAINDER)
class ArvFile(object):
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list