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.
@@ -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.0"
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
@@ -3,9 +3,11 @@
3
3
  from .heatmap import Heatmap
4
4
  from .lineplot import LinePlot
5
5
  from .table import Table
6
+ from .volcanoplot import VolcanoPlot
6
7
 
7
8
  __all__ = [
8
9
  "Table",
9
10
  "LinePlot",
10
11
  "Heatmap",
12
+ "VolcanoPlot",
11
13
  ]