Many of the imported files start with loading the cluster configuration from the .toml file:
from ..utils import load_mle_toolbox_config
# Import cluster credentials/settings - SGE or Slurm scheduling system
cc = load_mle_toolbox_config()
This is redundant since the config doesn't change during one mle <subcommand> execution. Instead I want to load it only once in the utils and then import the loaded config DotMap object instance. Also for better readability rename all cc to mle_config.
Many of the imported files start with loading the cluster configuration from the
.toml
file:This is redundant since the config doesn't change during one
mle <subcommand>
execution. Instead I want to load it only once in theutils
and then import the loaded configDotMap
object instance. Also for better readability rename allcc
tomle_config
.