-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.yaml
More file actions
33 lines (31 loc) · 1.36 KB
/
meta.yaml
File metadata and controls
33 lines (31 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: esm-master
authors:
- Paul Gierz
url: https://github.com/esm-tools/esm_tools
description: |
Execute esm-master commands for Earth System Models using the esm-tools package.
This wrapper executes esm-master subcommands (get, conf, comp, clean, install,
recomp) for specific model versions, enabling automated management of Earth
System Models within Snakemake workflows.
Each subcommand performs a specific operation:
- get: Download model source code from repositories
- conf: Configure the model for compilation
- comp: Compile the model binaries
- clean: Clean build artifacts
- install: Complete installation (get + conf + comp)
- recomp: Reconfigure and recompile the model
input:
- None (esm-master commands do not require input files)
output:
- Model files in the esm-tools directory structure (operation dependent)
params:
- subcommand: ESM-Master operation to perform (default: "install")
- model: Model name (e.g., "awicm", "fesom")
- version: Model version (e.g., "2.0", "3.0")
- extra: Additional command-line arguments to pass to esm-master (optional)
notes: |
* The esm-master command operates on models in the configured esm-tools
directory structure.
* Model and version parameters are required and should match available
esm-master model configurations.
* Subcommand defaults to "install" for backward compatibility.