openms-insight 0.1.7__tar.gz → 0.1.9__tar.gz

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.
Files changed (33) hide show
  1. {openms_insight-0.1.7 → openms_insight-0.1.9}/PKG-INFO +3 -3
  2. {openms_insight-0.1.7 → openms_insight-0.1.9}/README.md +2 -2
  3. openms_insight-0.1.9/openms_insight/components/table.py +903 -0
  4. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/core/base.py +20 -0
  5. openms_insight-0.1.9/openms_insight/core/state.py +335 -0
  6. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/js-component/dist/assets/index.js +113 -113
  7. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/rendering/bridge.py +274 -157
  8. {openms_insight-0.1.7 → openms_insight-0.1.9}/pyproject.toml +1 -1
  9. openms_insight-0.1.7/openms_insight/components/table.py +0 -441
  10. openms_insight-0.1.7/openms_insight/core/state.py +0 -217
  11. {openms_insight-0.1.7 → openms_insight-0.1.9}/.gitignore +0 -0
  12. {openms_insight-0.1.7 → openms_insight-0.1.9}/LICENSE +0 -0
  13. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/__init__.py +0 -0
  14. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/components/__init__.py +0 -0
  15. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/components/heatmap.py +0 -0
  16. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/components/lineplot.py +0 -0
  17. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/components/sequenceview.py +0 -0
  18. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/components/volcanoplot.py +0 -0
  19. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/core/__init__.py +0 -0
  20. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/core/cache.py +0 -0
  21. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/core/registry.py +0 -0
  22. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/core/subprocess_preprocess.py +0 -0
  23. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/js-component/dist/assets/index.css +0 -0
  24. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/js-component/dist/assets/materialdesignicons-webfont.eot +0 -0
  25. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/js-component/dist/assets/materialdesignicons-webfont.ttf +0 -0
  26. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/js-component/dist/assets/materialdesignicons-webfont.woff +0 -0
  27. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/js-component/dist/assets/materialdesignicons-webfont.woff2 +0 -0
  28. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/js-component/dist/index.html +0 -0
  29. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/preprocessing/__init__.py +0 -0
  30. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/preprocessing/compression.py +0 -0
  31. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/preprocessing/filtering.py +0 -0
  32. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/preprocessing/scatter.py +0 -0
  33. {openms_insight-0.1.7 → openms_insight-0.1.9}/openms_insight/rendering/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openms-insight
3
- Version: 0.1.7
3
+ Version: 0.1.9
4
4
  Summary: Interactive visualization components for mass spectrometry data in Streamlit
5
5
  Project-URL: Homepage, https://github.com/t0mdavid-m/OpenMS-Insight
6
6
  Project-URL: Documentation, https://github.com/t0mdavid-m/OpenMS-Insight#readme
@@ -47,7 +47,7 @@ Interactive visualization components for mass spectrometry data in Streamlit, ba
47
47
  - **Memory-efficient preprocessing** via subprocess isolation
48
48
  - **Automatic disk caching** with config-based invalidation
49
49
  - **Cache reconstruction** - components can be restored from cache without re-specifying configuration
50
- - **Table component** (Tabulator.js) with filtering, sorting, go-to, pagination, CSV export
50
+ - **Table component** (Tabulator.js) with server-side pagination, filtering, sorting, go-to, CSV export
51
51
  - **Line plot component** (Plotly.js) with highlighting, annotations, zoom
52
52
  - **Heatmap component** (Plotly scattergl) with multi-resolution downsampling for millions of points
53
53
  - **Volcano plot component** for differential expression visualization with significance thresholds
@@ -167,7 +167,7 @@ Table(
167
167
  - `index_field`: Column used as unique row identifier (default: 'id')
168
168
  - `go_to_fields`: Columns available in "Go to" navigation
169
169
  - `initial_sort`: Default sort configuration
170
- - `pagination`: Enable pagination for large tables (default: True)
170
+ - `pagination`: Enable server-side pagination (default: True). Only the current page of data is sent to the browser, dramatically reducing memory usage for large datasets.
171
171
  - `page_size`: Rows per page (default: 100)
172
172
 
173
173
  **Custom formatters:**
@@ -12,7 +12,7 @@ Interactive visualization components for mass spectrometry data in Streamlit, ba
12
12
  - **Memory-efficient preprocessing** via subprocess isolation
13
13
  - **Automatic disk caching** with config-based invalidation
14
14
  - **Cache reconstruction** - components can be restored from cache without re-specifying configuration
15
- - **Table component** (Tabulator.js) with filtering, sorting, go-to, pagination, CSV export
15
+ - **Table component** (Tabulator.js) with server-side pagination, filtering, sorting, go-to, CSV export
16
16
  - **Line plot component** (Plotly.js) with highlighting, annotations, zoom
17
17
  - **Heatmap component** (Plotly scattergl) with multi-resolution downsampling for millions of points
18
18
  - **Volcano plot component** for differential expression visualization with significance thresholds
@@ -132,7 +132,7 @@ Table(
132
132
  - `index_field`: Column used as unique row identifier (default: 'id')
133
133
  - `go_to_fields`: Columns available in "Go to" navigation
134
134
  - `initial_sort`: Default sort configuration
135
- - `pagination`: Enable pagination for large tables (default: True)
135
+ - `pagination`: Enable server-side pagination (default: True). Only the current page of data is sent to the browser, dramatically reducing memory usage for large datasets.
136
136
  - `page_size`: Rows per page (default: 100)
137
137
 
138
138
  **Custom formatters:**