|
44 | 44 | # Third Party Imports
|
45 | 45 |
|
46 | 46 | # Local View Imports
|
47 |
| -from aslm.view.main_application_window import MainApp as view |
48 |
| -from aslm.view.popups.camera_view_popup_window import CameraViewPopupWindow |
49 |
| -from aslm.view.popups.feature_list_popup import FeatureListPopup |
| 47 | +from navigate.view.main_application_window import MainApp as view |
| 48 | +from navigate.view.popups.camera_view_popup_window import CameraViewPopupWindow |
| 49 | +from navigate.view.popups.feature_list_popup import FeatureListPopup |
50 | 50 |
|
51 | 51 | # Local Sub-Controller Imports
|
52 |
| -from aslm.controller.configuration_controller import ConfigurationController |
53 |
| -from aslm.controller.sub_controllers import ( |
| 52 | +from navigate.controller.configuration_controller import ConfigurationController |
| 53 | +from navigate.controller.sub_controllers import ( |
54 | 54 | KeystrokeController,
|
55 | 55 | WaveformTabController,
|
56 | 56 | StageController,
|
|
65 | 65 | # AdaptiveOpticsPopupController,
|
66 | 66 | )
|
67 | 67 |
|
68 |
| -from aslm.controller.thread_pool import SynchronizedThreadPool |
| 68 | +from navigate.controller.thread_pool import SynchronizedThreadPool |
69 | 69 |
|
70 | 70 | # Local Model Imports
|
71 |
| -from aslm.model.model import Model |
72 |
| -from aslm.model.concurrency.concurrency_tools import ObjectInSubprocess |
| 71 | +from navigate.model.model import Model |
| 72 | +from navigate.model.concurrency.concurrency_tools import ObjectInSubprocess |
73 | 73 |
|
74 | 74 | # Misc. Local Imports
|
75 |
| -from aslm.config.config import ( |
| 75 | +from navigate.config.config import ( |
76 | 76 | load_configs,
|
77 | 77 | update_config_dict,
|
78 | 78 | verify_experiment_config,
|
79 | 79 | verify_waveform_constants,
|
80 |
| - get_aslm_path, |
| 80 | + get_navigate_path, |
81 | 81 | )
|
82 |
| -from aslm.tools.file_functions import create_save_path, save_yaml_file |
83 |
| -from aslm.tools.common_dict_tools import update_stage_dict |
84 |
| -from aslm.tools.multipos_table_tools import update_table |
85 |
| -from aslm.tools.common_functions import combine_funcs |
| 82 | +from navigate.tools.file_functions import create_save_path, save_yaml_file |
| 83 | +from navigate.tools.common_dict_tools import update_stage_dict |
| 84 | +from navigate.tools.multipos_table_tools import update_table |
| 85 | +from navigate.tools.common_functions import combine_funcs |
86 | 86 |
|
87 | 87 | # Logger Setup
|
88 | 88 | import logging
|
@@ -809,7 +809,7 @@ def execute(self, command, *args):
|
809 | 809 | # self.menu_controller.feature_id_val.set(0)
|
810 | 810 |
|
811 | 811 | self.update_experiment_setting()
|
812 |
| - file_directory = os.path.join(get_aslm_path(), "config") |
| 812 | + file_directory = os.path.join(get_navigate_path(), "config") |
813 | 813 | save_yaml_file(
|
814 | 814 | file_directory=file_directory,
|
815 | 815 | content_dict=self.configuration["experiment"],
|
|
0 commit comments