Skip to content

Commit

Permalink
fix parantheses
Browse files Browse the repository at this point in the history
  • Loading branch information
TeaganKing committed Feb 7, 2025
1 parent 28d6771 commit c07722e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helper_scripts/generate_ilamb_config_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ def generate_ilamb_model_setup(cesm_root, cupid_config_loc, run_type):
print("export ILAMB_ROOT=../ilamb_aux")
if run_type == "SP":
print(
f"ilamb-run --config {os.path.join(ilamb_config_loc, 'ilamb_nohoff_final_CLM_SP.cfg'} --build_dir {os.path.join(cupid_config_loc, 'ILAMB_output/')} --df_errs {os.path.join(ilamb_config_loc, 'quantiles_Whittaker_cmip5v6.parquet'} --define_regions {os.path.join(ilamb_config_loc, 'DATA/regions/LandRegions.nc'} {os.path.join(ilamb_config_loc, 'DATA/regions/Whittaker.nc'} --regions global --model_setup {os.path.join(cupid_config_loc, 'model_setup.txt')} --filter .clm2.h0.", # noqa: E501
f"ilamb-run --config {os.path.join(ilamb_config_loc, 'ilamb_nohoff_final_CLM_SP.cfg')} --build_dir {os.path.join(cupid_config_loc, 'ILAMB_output/')} --df_errs {os.path.join(ilamb_config_loc, 'quantiles_Whittaker_cmip5v6.parquet')} --define_regions {os.path.join(ilamb_config_loc, 'DATA/regions/LandRegions.nc')} {os.path.join(ilamb_config_loc, 'DATA/regions/Whittaker.nc')} --regions global --model_setup {os.path.join(cupid_config_loc, 'model_setup.txt')} --filter .clm2.h0.", # noqa: E501
)
elif run_type == "BGC":
print(
f"ilamb-run --config {os.path.join(ilamb_config_loc, 'ilamb_nohoff_final_CLM_BGC.cfg'} --build_dir {os.path.join(cupid_config_loc, 'ILAMB_output/')} --df_errs {os.path.join(ilamb_config_loc, 'quantiles_Whittaker_cmip5v6.parquet'} --define_regions {os.path.join(ilamb_config_loc, 'DATA/regions/LandRegions.nc'} {os.path.join(ilamb_config_loc, 'DATA/regions/Whittaker.nc'} --regions global --model_setup {os.path.join(cupid_config_loc, 'model_setup.txt')} --filter .clm2.h0.", # noqa: E501
f"ilamb-run --config {os.path.join(ilamb_config_loc, 'ilamb_nohoff_final_CLM_BGC.cfg')} --build_dir {os.path.join(cupid_config_loc, 'ILAMB_output/')} --df_errs {os.path.join(ilamb_config_loc, 'quantiles_Whittaker_cmip5v6.parquet')} --define_regions {os.path.join(ilamb_config_loc, 'DATA/regions/LandRegions.nc')} {os.path.join(ilamb_config_loc, 'DATA/regions/Whittaker.nc')} --regions global --model_setup {os.path.join(cupid_config_loc, 'model_setup.txt')} --filter .clm2.h0.", # noqa: E501
)
print("---------")

Expand Down

0 comments on commit c07722e

Please sign in to comment.