openms-insight 0.1.3__py3-none-any.whl → 0.1.5__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 +3 -1
- openms_insight/components/__init__.py +2 -0
- openms_insight/components/heatmap.py +348 -151
- openms_insight/components/volcanoplot.py +374 -0
- openms_insight/core/base.py +32 -10
- openms_insight/js-component/dist/assets/index.css +1 -1
- openms_insight/js-component/dist/assets/index.js +137 -128
- openms_insight/preprocessing/__init__.py +6 -0
- openms_insight/preprocessing/compression.py +55 -1
- openms_insight/preprocessing/scatter.py +136 -0
- openms_insight/rendering/bridge.py +23 -4
- {openms_insight-0.1.3.dist-info → openms_insight-0.1.5.dist-info}/METADATA +101 -2
- {openms_insight-0.1.3.dist-info → openms_insight-0.1.5.dist-info}/RECORD +15 -13
- {openms_insight-0.1.3.dist-info → openms_insight-0.1.5.dist-info}/WHEEL +0 -0
- {openms_insight-0.1.3.dist-info → openms_insight-0.1.5.dist-info}/licenses/LICENSE +0 -0
openms_insight/__init__.py
CHANGED
|
@@ -9,13 +9,14 @@ from .components.heatmap import Heatmap
|
|
|
9
9
|
from .components.lineplot import LinePlot
|
|
10
10
|
from .components.sequenceview import SequenceView, SequenceViewResult
|
|
11
11
|
from .components.table import Table
|
|
12
|
+
from .components.volcanoplot import VolcanoPlot
|
|
12
13
|
from .core.base import BaseComponent
|
|
13
14
|
from .core.cache import CacheMissError
|
|
14
15
|
from .core.registry import get_component_class, register_component
|
|
15
16
|
from .core.state import StateManager
|
|
16
17
|
from .rendering.bridge import clear_component_annotations, get_component_annotations
|
|
17
18
|
|
|
18
|
-
__version__ = "0.1.
|
|
19
|
+
__version__ = "0.1.5"
|
|
19
20
|
|
|
20
21
|
__all__ = [
|
|
21
22
|
# Core
|
|
@@ -28,6 +29,7 @@ __all__ = [
|
|
|
28
29
|
"Table",
|
|
29
30
|
"LinePlot",
|
|
30
31
|
"Heatmap",
|
|
32
|
+
"VolcanoPlot",
|
|
31
33
|
"SequenceView",
|
|
32
34
|
"SequenceViewResult",
|
|
33
35
|
# Utilities
|