-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpaths.py
More file actions
35 lines (24 loc) · 914 Bytes
/
paths.py
File metadata and controls
35 lines (24 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Contains *absolute* paths for all relevant folders, such as input files, raw data folder, source folders etc. for use in scripts
# Keeping all paths in one file allows for easy updating in all scripts
# Input files
inputPath = "/home/s194112/HESEL_input"
# Raw data
dataPath = "/home/s194112/HESEL_data"
# Post-processed data
processedPath = "/home/s194112/HESEL_processed"
# Logs
logPath = "/home/s194112/HESEL_logs"
# (HESEL) Source files
sourcePath = "/home/s194112"
# Scripts path
scriptPath = '/home/s194112/scripts'
# Job Scripts path
jobScriptPath = '/home/s194112/jobScripts'
# Template scripts path
templatePath = '/home/s194112/templates'
# Temp files folder
tempPath = '/home/s194112/tempFiles'
# Post-Processed data folder
postPath = "/home/s194112/postProcessed"
# Post-Processed figurer data folder
postFigsPath = "/home/s194112/postProcessed/Figurer"