@@ -29,10 +29,10 @@ Working with Workflows
29
29
Install and start a workflow::
30
30
31
31
# validate a workflow
32
- cylc validate <name/ path>
32
+ cylc validate <name| path>
33
33
34
34
# install a workflow
35
- cylc install <name/ path>
35
+ cylc install <name| path>
36
36
37
37
# start a workflow
38
38
cylc play <id>
@@ -41,9 +41,9 @@ For convenience, these three operations can be combined with the ``cylc vip`` co
41
41
(vip = validate + install + play)::
42
42
43
43
# validate, install and play a workflow
44
- cylc vip <name/ path>
44
+ cylc vip <name| path>
45
45
46
- When you're done with a workflow, remove it with ``cylc clean ``::
46
+ When you're done with a workflow run , remove it with ``cylc clean ``::
47
47
48
48
# delete a workflow installation
49
49
cylc clean <id>
@@ -79,7 +79,7 @@ resume a workflow::
79
79
80
80
The Cylc play, pause and stop commands work similarly to the play, pause and
81
81
stop buttons on an old tape player. You can play, pause or stop a workflow as
82
- many times as you like, Cylc will never loose its place in the workflow.
82
+ many times as you like; Cylc will never lose its place in the workflow.
83
83
84
84
85
85
List Workflows
@@ -91,7 +91,7 @@ The ``cylc scan`` command can list your installed workflows::
91
91
cylc scan
92
92
93
93
# get information about running workflows
94
- cylc scan -t rich
94
+ cylc scan --format= rich
95
95
96
96
# list all installed workflows
97
97
cylc scan --states=all
@@ -142,48 +142,48 @@ Inspecting Workflows
142
142
143
143
Validate the workflow configuration (good for spotting errors)::
144
144
145
- cylc validate <path/ id>
145
+ cylc validate <path| id>
146
146
147
147
Check the workflow for common problems and code style::
148
148
149
- cylc lint <path/ id>
149
+ cylc lint <path| id>
150
150
151
151
View the workflow configuration *before * Cylc has parsed it
152
- (good for debugging Jinja2 errors)::
152
+ (but after pre-processing - good for debugging Jinja2 errors)::
153
153
154
- cylc view -p <path/ id>
154
+ cylc view -p <path| id>
155
155
156
156
View the workflow configuration *after * Cylc has parsed it
157
157
(good for debugging family inheritance)::
158
158
159
- cylc config <path/ id>
159
+ cylc config <path| id>
160
160
161
161
# view a specific task's configuration
162
- cylc config <path/ id> -i '[runtime][<task>]'
162
+ cylc config <path| id> -i '[runtime][<task>]'
163
163
164
164
# view the workflow configuration with defaults applied
165
- cylc config <path/ id> --defaults
165
+ cylc config <path| id> --defaults
166
166
167
167
Generate a graphical representation of the workflow's :term: `graph `
168
168
(a useful tool for developing workflow graphs)::
169
169
170
- cylc graph <path/ id>
170
+ cylc graph <path| id>
171
171
172
172
# render the graph between two cycle points
173
- cylc graph <path/ id> <cycle1> <cycle2>
173
+ cylc graph <path| id> <cycle1> <cycle2>
174
174
175
175
# render the graph transposed (can make it easier to read)
176
- cylc graph <path/ id> --transpose
176
+ cylc graph <path| id> --transpose
177
177
178
178
# group tasks by cycle point
179
- cylc graph <path/ id> --cycles
179
+ cylc graph <path| id> --cycles
180
180
181
181
# collapse tasks within a family (can reduce the number of tasks displayed)
182
- cylc graph <path/ id> --group=<family>
182
+ cylc graph <path| id> --group=<family>
183
183
184
184
List all tasks and families defined in a workflow::
185
185
186
- cylc list <path/ id>
186
+ cylc list <path| id>
187
187
188
188
189
189
Running Rose Stem Workflows
@@ -209,7 +209,7 @@ a Rose Stem workflow with ``cylc vip``.
209
209
Interventions
210
210
-------------
211
211
212
- You can intervene with the running a workflow, e.g. to re-run a task.
212
+ You can intervene in the running a workflow, e.g. to re-run a task.
213
213
214
214
Interventions are written up in :ref: `user-guide.interventions `. Here is a
215
215
quick summary:
@@ -238,7 +238,7 @@ the line in a task's script that caused the error.
238
238
239
239
Start a workflow in debug mode::
240
240
241
- $ cylc vip --debug <name/ path>
241
+ $ cylc vip --debug <name| path>
242
242
243
243
# OR
244
244
$ cylc play --debug <id>
@@ -262,10 +262,10 @@ Many Cylc commands can operate over multiple workflows::
262
262
cylc pause '*'
263
263
264
264
# re-run all failed tasks in all workflows
265
- cylc trigger ' *//*/*:failed'
265
+ cylc trigger " *//*/*:failed"
266
266
267
- The ``* `` characters in these examples are "globs", make sure you put quotes
268
- around them or they won't do what you're expecting .
267
+ The ``* `` characters in these examples are "globs". Make sure you put quotes
268
+ around them to prevent the shell from trying to expand them .
269
269
270
270
For more information on globs or the Cylc ID format, run ``cylc help id ``.
271
271
0 commit comments