From 24c0a4796ffda14eae30e9897bccebf879b68ce4 Mon Sep 17 00:00:00 2001
From: Michael <m.langguth@fz-juelich.de>
Date: Fri, 12 Feb 2021 17:34:38 +0100
Subject: [PATCH] Generalized version of data_extraction_era5_template.sh.

---
 .../HPC_scripts/data_extraction_era5_template.sh          | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/video_prediction_tools/HPC_scripts/data_extraction_era5_template.sh b/video_prediction_tools/HPC_scripts/data_extraction_era5_template.sh
index a59585b6..9f33e259 100644
--- a/video_prediction_tools/HPC_scripts/data_extraction_era5_template.sh
+++ b/video_prediction_tools/HPC_scripts/data_extraction_era5_template.sh
@@ -8,9 +8,9 @@
 #SBATCH --output=data_extraction_era5-out.%j
 #SBATCH --error=data_extraction_era5-err.%j
 #SBATCH --time=04:20:00
-#SBATCH --partition=devel
+#SBATCH --partition=batch
 #SBATCH --mail-type=ALL
-#SBATCH --mail-user=b.gong@fz-juelich.de
+#SBATCH --mail-user=me@somewhere.com
 
 ######### Template identifier (don't remove) #########
 echo "Do not run the template scripts"
@@ -36,8 +36,8 @@ if [ -z ${VIRTUAL_ENV} ]; then
 fi
 
 # Declare path-variables (dest_dir will be set and configured automatically via generate_runscript.py)
-source_dir=/p/project/deepacf/deeprain/video_prediction_shared_folder/
-destination_dir=/p/project/deepacf/deeprain/video_prediction_shared_folder/
+source_dir=/my/path/to/era5
+destination_dir=/my/path/to/extracted/data
 
 # Run data extraction
 srun python ../main_scripts/main_data_extraction.py  --source_dir ${source_dir} --destination_dir ${destination_dir}
-- 
GitLab