-
Notifications
You must be signed in to change notification settings - Fork 22
#701 edit configure-yaml tool for yaml changes #802
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a96eca1
cc5da53
47e871c
ec79e4b
d56310f
4b0080d
760b730
4993d20
3bb376e
9576f08
3200069
cf5a891
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,14 @@ | ||
| #c96_amip_directories: | ||
| directories: | ||
| history_dir: !join [/archive/$USER/, *FRE_STEM, /, *name, /, *platform, -, *target, /, history] | ||
| history_dir_refined: !join [/archive/$USER/, *FRE_STEM, /, *name, /, *platform, -, *target, /, history_dir_refined] | ||
| pp_dir: !join [/archive/$USER/, *FRE_STEM, /, *name, /, *platform, -, *target, /, pp] | ||
| analysis_dir: !join [/nbhome/$USER/, *FRE_STEM, /, *name] | ||
| ptmp_dir: "/xtmp/$USER/ptmp" | ||
|
|
||
| #c96_amip_postprocess: | ||
| postprocess: | ||
| settings: &shared_settings | ||
| settings: | ||
| history_segment: "P1Y" | ||
| site: "ppan" | ||
| pp_start: *ANA_AMIP_START | ||
|
|
@@ -16,9 +17,23 @@ postprocess: | |
| - *PP_AMIP_CHUNK96 | ||
| pp_grid_spec: *GRID_SPEC96 | ||
| switches: &shared_switches | ||
| clean_work: True | ||
| do_refinediag: False | ||
| clean_work: True | ||
| do_atmos_plevel_masking: True | ||
| do_preanalysis: False | ||
| do_analysis: True | ||
| do_analysis_only: False | ||
| do_analysis: True | ||
| do_analysis_only: False | ||
| preanalysis: | ||
| vitals: | ||
| script: "/path/to/vitals-script" | ||
| input: ['atmos_month', 'aerosol_month'] | ||
| do_preanalysis: True | ||
| refinediag: | ||
| ocean: | ||
| script: "/path/to/ocean-script" | ||
| input: ['ocean_monthly', 'ocean_bgc'] | ||
| output: ['ocean_refined'] | ||
| do_refinediag: True | ||
| aerosol: | ||
| script: "/path/to/aerosol-script" | ||
| input: ['aerosol_month'] | ||
| output: ['aerosol_refined'] | ||
| do_refinediag: True | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This example yaml looks good, but it won't actually work because the scripts aren't there yet. The test cases can come later we agreed.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right, yeah, just wanted to get the example started |
||
Uh oh!
There was an error while loading. Please reload this page.