A streamlined workflow and GUI for real-time species identification and pathogen characterization via nanopore sequencing data. Engineered for precision, speed, and user-friendliness, with offline functionality post-initialization.
GNU General Public License v3.0
15
stars
2
forks
source link
Refactor Config Loading and Update Tooltip Text in nanometa_gui.py #57
This PR incorporates changes to nanometa_gui.py aimed at improving code readability and maintainability. Specifically, it replaces the native config file loading logic with a function from a dedicated helper module and slightly modifies the tooltip text for a more intuitive UI.
Changes
Imported load_config from helpers.config_utils to handle config file loading.
Simplified the code for loading the config file by replacing the native logic with load_config(config_file_path).
Updated the tooltip text for update_toggle for a clearer and more intuitive explanation.
Summary
This PR incorporates changes to
nanometa_gui.py
aimed at improving code readability and maintainability. Specifically, it replaces the native config file loading logic with a function from a dedicated helper module and slightly modifies the tooltip text for a more intuitive UI.Changes
load_config
fromhelpers.config_utils
to handle config file loading.load_config(config_file_path)
.update_toggle
for a clearer and more intuitive explanation.