From 14e96e9d80e6ee7e6754f6806f451613c94990d1 Mon Sep 17 00:00:00 2001 From: lukas leufen <l.leufen@fz-juelich.de> Date: Fri, 17 Jul 2020 17:05:01 +0200 Subject: [PATCH] updated wrong default paths --- src/configuration/path_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configuration/path_config.py b/src/configuration/path_config.py index 7af25875..29dcd24e 100644 --- a/src/configuration/path_config.py +++ b/src/configuration/path_config.py @@ -31,13 +31,13 @@ def prepare_host(create_new=True, data_path=None, sampling="daily") -> str: elif hostname == "zam347": path = f"/home/{user}/Data/toar_{sampling}/" elif hostname == "linux-aa9b": - path = f"/home/{user}/machinelearningtools/data/toar_{sampling}/" + path = f"/home/{user}/mlair/data/toar_{sampling}/" elif (len(hostname) > 2) and (hostname[:2] == "jr"): path = f"/p/project/cjjsc42/{user}/DATA/toar_{sampling}/" elif (len(hostname) > 2) and (hostname[:2] in ['jw', 'ju'] or hostname[:5] in ['hdfml']): path = f"/p/project/deepacf/intelliaq/{user}/DATA/toar_{sampling}/" elif runner_regex.match(hostname) is not None: - path = f"/home/{user}/machinelearningtools/data/toar_{sampling}/" + path = f"/home/{user}/mlair/data/toar_{sampling}/" else: raise OSError(f"unknown host '{hostname}'") if not os.path.exists(path): -- GitLab