Skip to content

Commit

Permalink
wip: adds post folder
Browse files Browse the repository at this point in the history
  • Loading branch information
pgierz committed Jan 29, 2025
1 parent a50060b commit ee93164
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions src/esm_runscripts/prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

import questionary
import yaml
from loguru import logger

import esm_parser
import esm_utilities
from esm_calendar import Calendar, Date
from esm_plugin_manager import install_missing_plugins
from loguru import logger

from . import batch_system, helpers

Expand Down Expand Up @@ -471,23 +471,24 @@ def _add_all_folders(config):
all_filetypes = [
"analysis",
"config",
"couple",
"ignore",
"log",
"mon",
"couple",
"post",
"scripts",
"ignore",
"unknown",
"src",
"unknown",
]
config["general"]["out_filetypes"] = [
"analysis",
"ignore",
"log",
"mon",
"scripts",
"ignore",
"unknown",
"outdata",
"restart_out",
"scripts",
"unknown",
]
config["general"]["in_filetypes"] = [
"scripts",
Expand All @@ -500,7 +501,7 @@ def _add_all_folders(config):
config["general"]["reusable_filetypes"] = config["general"].get(
"reusable_filetypes", ["bin", "src"]
)
# Define the files that could be reusable accross runs (external files)
# Define the files that could be reusable across runs (external files)
config["general"]["potentially_reusable_filetypes"] = (
all_filetypes + config["general"]["in_filetypes"]
)
Expand Down Expand Up @@ -533,16 +534,16 @@ def _add_all_folders(config):
"analysis",
"bin",
"config",
"couple",
"forcing",
"ignore",
"input",
"couple",
"log",
"mon",
"outdata",
"restart_in",
"restart_out",
"viz",
"ignore",
]

config["general"]["all_model_filetypes"] = all_model_filetypes
Expand Down

0 comments on commit ee93164

Please sign in to comment.