-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitialization.py
55 lines (37 loc) · 1.71 KB
/
initialization.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os, subprocess, json, tqdm
from pymgipsim.Utilities.units_conversions_constants import DEFAULT_RANDOM_SEED
from pymgipsim.Utilities.paths import results_path
_ = """
######################################################################
Defining Paths and Default Settings
######################################################################
"""
if not os.path.exists(os.getcwd() + '\\SimulationResults\\'):
os.mkdir(os.getcwd() + '\\SimulationResults\\')
subprocess.run(['python', 'scenarios_default.py'])
from pymgipsim.Utilities.paths import default_settings_path, results_path, simulator_path
for path in [default_settings_path, results_path, simulator_path]:
assert os.path.isdir(path), f"Required path {path} does not exist. Verify files."
_ = """
######################################################################
Verify Folders
######################################################################
"""
with open(default_settings_path + "\\scenario_default.json","r") as f:
default_settings = json.load(f)
f.close()
for folder in ['InputGeneration', 'ModelSolver', 'ODESolvers', 'Plotting', 'Settings', 'Utilities', 'VirtualPatient']:
assert os.path.exists(simulator_path + f'\\{folder}'), f"Required folder {folder} does not exist. Verify files."
"""
######################################################################
Delete the undesirable folders and files
######################################################################
"""
subprocess.run(['python', 'clear_pycache.py'])
"""
######################################################################
Setting Random Seed
######################################################################
"""
import numpy as np
np.random.seed(DEFAULT_RANDOM_SEED)