arvados-cli 0.1.20151119022705 → 0.1.20151125183724

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/arv-run-pipeline-instance +22 -58
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e808a29e3ab7953dd3d9cf28b65a3d1c7e22fc2d
4
- data.tar.gz: 857ef732034d334611af54a9f5153f9d0ef9c08a
3
+ metadata.gz: d32481a59099873345949689584d8a5cc1d87633
4
+ data.tar.gz: 464a0137b6f1bda89eb4cc455e286a4df0af2eca
5
5
  SHA512:
6
- metadata.gz: b1c39f409fe91db77d840fc07b9696d9e0eb3c80f869e41ec11ca9ecb0f2c79b971c5d4c514d56ceb54963915df2b8f83f03a4a976ffd565a7a772cac2c449a8
7
- data.tar.gz: 7740c4b9f1efc62cc85dfa0826263b228902a034c0262e6a9b036460d7b0f7d133172d0e033a4cac923fe24b0f8743441f95b73142caa37c9c74adca3558b92d
6
+ metadata.gz: 9aa9bcfd65096c81033843eb0f36591d7c18184aede5ee88149a9704a60365cc8a3e8354fe2132e3f3c00d366d1f06ce6a155e3989638b7cfe5ee28ec6b853a9
7
+ data.tar.gz: c23b9715c930cc19b18f3d226922cf4fcde5ff0e67cd2800463edae8bab62da7f31e95f617b326336e0f89a9922f91d2f41fc4527f31797ea3ae7f5876ccbf7e
@@ -1,63 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # == Synopsis
4
- #
5
- # arv-run-pipeline-instance --template pipeline-template-uuid [options] [--] [parameters]
6
- # arv-run-pipeline-instance --instance pipeline-instance-uuid [options]
7
- #
8
- # Satisfy a pipeline template by finding or submitting a mapreduce job
9
- # for each pipeline component.
10
- #
11
- # == Options
12
- #
13
- # [--template uuid] Use the specified pipeline template.
14
- #
15
- # [--template path] Load the pipeline template from the specified
16
- # local file.
17
- #
18
- # [--instance uuid] Use the specified pipeline instance.
19
- #
20
- # [-n, --dry-run] Do not start any new jobs or wait for existing jobs
21
- # to finish. Just find out whether jobs are finished,
22
- # queued, or running for each component
23
- #
24
- # [--submit] Do not try to satisfy any components. Just
25
- # create an instance, print its UUID to
26
- # stdout, and exit.
27
- #
28
- # [--no-wait] Make only as much progress as possible without entering
29
- # a sleep/poll loop.
30
- #
31
- # [--no-reuse] Do not reuse existing jobs to satisfy pipeline
32
- # components. Submit a new job for every component.
33
- #
34
- # [--debug] Print extra debugging information on stderr.
35
- #
36
- # [--debug-level N] Increase amount of debugging information. Default
37
- # 1, possible range 0..3.
38
- #
39
- # [--status-text path] Print plain text status report to a file or
40
- # fifo. Default: /dev/stdout
41
- #
42
- # [--status-json path] Print JSON status report to a file or
43
- # fifo. Default: /dev/null
44
- #
45
- # [--description] Description for the pipeline instance.
46
- #
47
- # == Parameters
48
- #
49
- # [param_name=param_value]
50
- #
51
- # [param_name param_value] Set (or override) the default value for
52
- # every parameter with the given name.
53
- #
54
- # [component_name::param_name=param_value]
55
- # [component_name::param_name param_value]
56
- # [--component_name::param_name=param_value]
57
- # [--component_name::param_name param_value] Set the value of a
58
- # parameter for a single
59
- # component.
60
- #
61
3
  class WhRunPipelineInstance
62
4
  end
63
5
 
@@ -92,6 +34,28 @@ end
92
34
 
93
35
  p = Trollop::Parser.new do
94
36
  version __FILE__
37
+ banner(<<EOF)
38
+
39
+ Usage:
40
+ arv-run-pipeline-instance --template TEMPLATE_UUID [options] [--] [parameters]
41
+ arv-run-pipeline-instance --instance INSTANCE_UUID [options] [--] [parameters]
42
+
43
+ Parameters:
44
+ param_name=param_value
45
+ param_name param_value
46
+ Set (or override) the default value for every
47
+ pipeline component parameter with the given
48
+ name.
49
+
50
+ component_name::param_name=param_value
51
+ component_name::param_name param_value
52
+ --component_name::param_name=param_value
53
+ --component_name::param_name param_value
54
+ Set the value of a parameter for a single
55
+ pipeline component.
56
+
57
+ Options:
58
+ EOF
95
59
  opt(:dry_run,
96
60
  "Do not start any new jobs or wait for existing jobs to finish. Just find out whether jobs are finished, queued, or running for each component.",
97
61
  :type => :boolean,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arvados-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.20151119022705
4
+ version: 0.1.20151125183724
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arvados Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-19 00:00:00.000000000 Z
11
+ date: 2015-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: arvados
@@ -178,7 +178,7 @@ dependencies:
178
178
  - - "<"
179
179
  - !ruby/object:Gem::Version
180
180
  version: 1.0.0
181
- description: Arvados command line tools, git commit d6f163ed99c6ae234c551bb3ecd23c7af8610c8f
181
+ description: Arvados command line tools, git commit 593ed179715e007763a027919b38b69b8bb7d59d
182
182
  email: gem-dev@curoverse.com
183
183
  executables:
184
184
  - arv