openms-insight 0.1.0__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 +32 -0
- openms_insight/components/__init__.py +11 -0
- openms_insight/components/heatmap.py +823 -0
- openms_insight/components/lineplot.py +492 -0
- openms_insight/components/sequenceview.py +384 -0
- openms_insight/components/table.py +400 -0
- openms_insight/core/__init__.py +14 -0
- openms_insight/core/base.py +413 -0
- openms_insight/core/cache.py +39 -0
- openms_insight/core/registry.py +82 -0
- openms_insight/core/state.py +215 -0
- openms_insight/js-component/dist/assets/index.css +5 -0
- openms_insight/js-component/dist/assets/index.js +4220 -0
- openms_insight/js-component/dist/assets/materialdesignicons-webfont.eot +0 -0
- openms_insight/js-component/dist/assets/materialdesignicons-webfont.ttf +0 -0
- openms_insight/js-component/dist/assets/materialdesignicons-webfont.woff +0 -0
- openms_insight/js-component/dist/assets/materialdesignicons-webfont.woff2 +0 -0
- openms_insight/js-component/dist/index.html +14 -0
- openms_insight/preprocessing/__init__.py +22 -0
- openms_insight/preprocessing/compression.py +338 -0
- openms_insight/preprocessing/filtering.py +316 -0
- openms_insight/rendering/__init__.py +8 -0
- openms_insight/rendering/bridge.py +312 -0
- openms_insight-0.1.0.dist-info/METADATA +256 -0
- openms_insight-0.1.0.dist-info/RECORD +27 -0
- openms_insight-0.1.0.dist-info/WHEEL +4 -0
- openms_insight-0.1.0.dist-info/licenses/LICENSE +29 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Streamlit Vue Components - Interactive visualization components for Streamlit.
|
|
3
|
+
|
|
4
|
+
This package provides reusable, interactive Streamlit components backed by Vue.js
|
|
5
|
+
visualizations with cross-component selection state management.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from .core.base import BaseComponent
|
|
9
|
+
from .core.state import StateManager
|
|
10
|
+
from .core.registry import register_component, get_component_class
|
|
11
|
+
from .core.cache import CacheMissError
|
|
12
|
+
|
|
13
|
+
from .components.table import Table
|
|
14
|
+
from .components.lineplot import LinePlot
|
|
15
|
+
from .components.heatmap import Heatmap
|
|
16
|
+
from .components.sequenceview import SequenceView
|
|
17
|
+
|
|
18
|
+
__version__ = "0.1.0"
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
# Core
|
|
22
|
+
"BaseComponent",
|
|
23
|
+
"StateManager",
|
|
24
|
+
"register_component",
|
|
25
|
+
"get_component_class",
|
|
26
|
+
"CacheMissError",
|
|
27
|
+
# Components
|
|
28
|
+
"Table",
|
|
29
|
+
"LinePlot",
|
|
30
|
+
"Heatmap",
|
|
31
|
+
"SequenceView",
|
|
32
|
+
]
|