Skip to content

Commit eda8878

Browse files
Major refractor
1 parent fc6a10c commit eda8878

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1245
-685491
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ workflow_visualization/*.svg
44
workflow_visualization/*.pdf
55
workflow_visualization/plantuml.jar
66
workflow_visualization/*.class
7+
*.png
8+
*.puml
9+
10+
# Pipeline output and intermediate files
11+
test_results.txt
12+
.benchmarks/
13+
mumdia.egg-info/
14+
mzml_files/
15+
notebook_helpers/
716

817
# Byte-compiled / optimized / DLL files
918
__pycache__/

config.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def load_config_from_json(json_path: str) -> 'MuMDIAConfig':
103103

104104
# Check if this is the old nested format
105105
if "sage_basic" in config_data or "sage" in config_data or "mumdia" in config_data:
106-
print(f"🔄 Converting legacy config format to new simplified format...")
106+
print("Converting legacy config format to new simplified format...")
107107
config_data = convert_legacy_config(config_data)
108108

109109
# Filter out comment fields (fields starting with _comment)
@@ -532,9 +532,9 @@ def get_config() -> MuMDIAConfig:
532532
print(f" deisotope: {full['deisotope']}")
533533
print()
534534

535-
print("Simplified configuration with smart defaults!")
536-
print("Automatic initial vs full search differentiation!")
537-
print("Override system working!")
538-
535+
print("Simplified configuration with smart defaults!")
536+
print("Automatic initial vs full search differentiation!")
537+
print("Override system working!")
538+
539539
except SystemExit:
540-
print("Configuration validation failed")
540+
print("Configuration validation failed")

config_manager.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)