Skip to content

Commit 124c862

Browse files
committed
Clean up prelim results generator
1 parent 77875cc commit 124c862

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

examples/prelim_results/results_generator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
residence_time_analysis = {
1515
'meta': {
1616
'name': name,
17-
'run_full': False,
17+
'run_full': True,
1818
'run_post': False,
1919
'overwrite': True,
2020
},
@@ -175,8 +175,8 @@ def set_data(new_data: dict, dir_path: str, idx: int, combination: tuple) -> tup
175175
filename = 'input.json'
176176
file_dir = dir_path / str(idx)
177177
file_path = file_dir / filename
178-
new_data['file_options']['processed_data_dir'] = str(file_dir)
179-
new_data['file_options']['output_dir'] = str(file_dir)
178+
new_data['file_options']['processed_data_dir'] = str(file_dir) + '/'
179+
new_data['file_options']['output_dir'] = str(file_dir) + '/'
180180
new_data['file_options']['log_file'] = str(file_dir) + '/log.log'
181181
new_data['name'] = str(combination)
182182
if analysis['meta']['run_full']:

0 commit comments

Comments
 (0)