openms-insight 0.1.2__py3-none-any.whl → 0.1.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openms_insight/__init__.py +11 -7
- openms_insight/components/__init__.py +2 -2
- openms_insight/components/heatmap.py +433 -228
- openms_insight/components/lineplot.py +377 -82
- openms_insight/components/sequenceview.py +677 -213
- openms_insight/components/table.py +86 -58
- openms_insight/core/__init__.py +2 -2
- openms_insight/core/base.py +122 -54
- openms_insight/core/registry.py +6 -5
- openms_insight/core/state.py +33 -31
- openms_insight/core/subprocess_preprocess.py +1 -3
- openms_insight/js-component/dist/assets/index.css +1 -1
- openms_insight/js-component/dist/assets/index.js +105 -105
- openms_insight/preprocessing/__init__.py +5 -6
- openms_insight/preprocessing/compression.py +123 -67
- openms_insight/preprocessing/filtering.py +39 -13
- openms_insight/rendering/__init__.py +1 -1
- openms_insight/rendering/bridge.py +192 -42
- {openms_insight-0.1.2.dist-info → openms_insight-0.1.4.dist-info}/METADATA +163 -20
- openms_insight-0.1.4.dist-info/RECORD +28 -0
- openms_insight-0.1.2.dist-info/RECORD +0 -28
- {openms_insight-0.1.2.dist-info → openms_insight-0.1.4.dist-info}/WHEEL +0 -0
- {openms_insight-0.1.2.dist-info → openms_insight-0.1.4.dist-info}/licenses/LICENSE +0 -0
openms_insight/__init__.py
CHANGED
|
@@ -5,15 +5,15 @@ This package provides reusable, interactive Streamlit components backed by Vue.j
|
|
|
5
5
|
visualizations with cross-component selection state management.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
+
from .components.heatmap import Heatmap
|
|
9
|
+
from .components.lineplot import LinePlot
|
|
10
|
+
from .components.sequenceview import SequenceView, SequenceViewResult
|
|
11
|
+
from .components.table import Table
|
|
8
12
|
from .core.base import BaseComponent
|
|
9
|
-
from .core.state import StateManager
|
|
10
|
-
from .core.registry import register_component, get_component_class
|
|
11
13
|
from .core.cache import CacheMissError
|
|
12
|
-
|
|
13
|
-
from .
|
|
14
|
-
from .
|
|
15
|
-
from .components.heatmap import Heatmap
|
|
16
|
-
from .components.sequenceview import SequenceView
|
|
14
|
+
from .core.registry import get_component_class, register_component
|
|
15
|
+
from .core.state import StateManager
|
|
16
|
+
from .rendering.bridge import clear_component_annotations, get_component_annotations
|
|
17
17
|
|
|
18
18
|
__version__ = "0.1.0"
|
|
19
19
|
|
|
@@ -29,4 +29,8 @@ __all__ = [
|
|
|
29
29
|
"LinePlot",
|
|
30
30
|
"Heatmap",
|
|
31
31
|
"SequenceView",
|
|
32
|
+
"SequenceViewResult",
|
|
33
|
+
# Utilities
|
|
34
|
+
"get_component_annotations",
|
|
35
|
+
"clear_component_annotations",
|
|
32
36
|
]
|