Skip to content

Commit

Permalink
Merge branch 'config_yaml' of github.com:C2SM/processing-chain into c…
Browse files Browse the repository at this point in the history
…onfig_yaml
  • Loading branch information
mjaehn committed Sep 30, 2023
2 parents 9262fc1 + 5a88f6b commit 3d928a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jobs/cosmo.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def set_cfg_variables(cfg, model_cfg):

# Number of tracers
if 'tracers' in model_cfg['models'][cfg.model]['features']:
tracer_csvfile = os.path.join(cfg.chain_src_dir, 'cases',
cfg.casename, 'cosmo_tracers.csv')
tracer_csvfile = os.path.join(cfg.chain_src_dir, 'cases', cfg.casename,
'cosmo_tracers.csv')
if os.path.isfile(tracer_csvfile):
with open(tracer_csvfile, 'r') as csv_file:
reader = csv.DictReader(csv_file, delimiter=',')
Expand Down
1 change: 1 addition & 0 deletions jobs/int2lm.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def set_cfg_variables(cfg):

return cfg


def main(starttime, hstart, hstop, cfg, model_cfg):
"""Setup the namelist for **int2lm** and submit the job to the queue.
Expand Down

0 comments on commit 3d928a3

Please sign in to comment.