File tree Expand file tree Collapse file tree 3 files changed +77
-0
lines changed
docs/sections/user_guide/cli/drivers/orog Expand file tree Collapse file tree 3 files changed +77
-0
lines changed Original file line number Diff line number Diff line change
1
+ usage: uw orog [-h] [--version] [--show-schema] TASK ...
2
+
3
+ Execute orog tasks
4
+
5
+ Optional arguments:
6
+ -h, --help
7
+ Show help and exit
8
+ --version
9
+ Show version info and exit
10
+ --show-schema
11
+ Show driver schema and exit
12
+
13
+ Positional arguments:
14
+ TASK
15
+ files_copied
16
+ Files copied for run
17
+ files_linked
18
+ Files linked for run
19
+ grid_file
20
+ The input grid file
21
+ input_config_file
22
+ The input config file
23
+ provisioned_rundir
24
+ Run directory provisioned with all required content
25
+ run
26
+ A run
27
+ runscript
28
+ The runscript
29
+ validate
30
+ Validate the UW driver config
Original file line number Diff line number Diff line change
1
+ usage: uw orog run [-h] [--version] [--config-file PATH] [--batch] [--dry-run]
2
+ [--graph-file PATH] [--key-path KEY[.KEY...]] [--quiet]
3
+ [--verbose]
4
+
5
+ A run
6
+
7
+ Optional arguments:
8
+ -h, --help
9
+ Show help and exit
10
+ --version
11
+ Show version info and exit
12
+ --config-file PATH, -c PATH
13
+ Path to UW YAML config file (default: read from stdin)
14
+ --batch
15
+ Submit run to batch scheduler
16
+ --dry-run
17
+ Only log info, making no changes
18
+ --graph-file PATH
19
+ Path to Graphviz DOT output [experimental]
20
+ --key-path KEY[.KEY...]
21
+ Dot-separated path of keys leading through the config to the driver's
22
+ configuration block
23
+ --quiet, -q
24
+ Print no logging messages
25
+ --verbose, -v
26
+ Print all logging messages
Original file line number Diff line number Diff line change
1
+ {
2
+ "properties": {
3
+ "orog": {
4
+ "additionalProperties": false,
5
+ "properties": {
6
+ "execution": {
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "batchargs": {
10
+ "additionalProperties": true,
11
+ ...
12
+ "rundir"
13
+ ],
14
+ "type": "object"
15
+ }
16
+ },
17
+ "required": [
18
+ "orog"
19
+ ],
20
+ "type": "object"
21
+ }
You can’t perform that action at this time.
0 commit comments