From 04e8b1abb37d96ef2fa420672052e739a95069b6 Mon Sep 17 00:00:00 2001
From: Michael <m.langguth@fz-juelich.de>
Date: Fri, 11 Sep 2020 00:58:12 +0200
Subject: [PATCH] Remove usage of environmental variable SAVE_DIR since this is
 a very bad way for communication maong scripts.

---
 video_prediction_savp/HPC_scripts/DataPreprocess_template.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/video_prediction_savp/HPC_scripts/DataPreprocess_template.sh b/video_prediction_savp/HPC_scripts/DataPreprocess_template.sh
index 1628ae90..b686976e 100644
--- a/video_prediction_savp/HPC_scripts/DataPreprocess_template.sh
+++ b/video_prediction_savp/HPC_scripts/DataPreprocess_template.sh
@@ -46,8 +46,8 @@ min_year=`echo "${years[*]}" | sort -nr | tail -n1`
 # set some paths
 # note, that destination_dir is used during runtime to set a proper experiment directory
 exp_id=xxx                                          # experiment identifier is set by 'generate_workflow_runscripts.sh'
-source_dir=${SAVE_DIR}/extractedData
-destination_dir=${SAVE_DIR}/preprocessedData/era5-Y${min_year}to${max_year}M01to12
+source_dir=/p/project/deepacf/deeprain/video_prediction_shared_folder/extractedData
+destination_dir=/p/project/deepacf/deeprain/video_prediction_shared_folder/preprocessedData/era5-Y${min_year}to${max_year}M01to12
 script_dir=`pwd`
 
 # execute Python-scripts
-- 
GitLab