Coverage for openhcs/processing/backends/experimental_analysis/__init__.py: 100.0%

4 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2025-10-01 18:33 +0000

1""" 

2Experimental analysis backend system for OpenHCS. 

3 

4This module provides a unified, registry-based system for processing experimental 

5analysis data from multiple microscope formats (CX5, MetaXpress) with automatic 

6format detection, configuration management, and statistical analysis. 

7 

8Key components: 

9- Format registry system for automatic microscope format detection 

10- Unified analysis engine with configurable processing pipelines 

11- Integration with OpenHCS configuration and registry systems 

12- Backward compatibility with existing experimental analysis workflows 

13""" 

14 

15from .format_registry import MicroscopeFormatRegistryBase, MicroscopeFormatConfig 

16from .format_registry_service import FormatRegistryService 

17from .unified_analysis_engine import ExperimentalAnalysisEngine 

18 

19__all__ = [ 

20 'MicroscopeFormatRegistryBase', 

21 'MicroscopeFormatConfig', 

22 'FormatRegistryService', 

23 'ExperimentalAnalysisEngine' 

24]