multiscoresplot 1.0.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.
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.4
2
+ Name: multiscoresplot
3
+ Version: 1.0.0
4
+ Summary: Multi-dimensional gene set scoring and visualization for single-cell transcriptomics
5
+ Project-URL: Homepage, https://github.com/andrecmacedo/multiscoresplot
6
+ Project-URL: Repository, https://github.com/andrecmacedo/multiscoresplot
7
+ Project-URL: Issues, https://github.com/andrecmacedo/multiscoresplot/issues
8
+ Author: Andre Macedo
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
20
+ Classifier: Topic :: Scientific/Engineering :: Visualization
21
+ Classifier: Typing :: Typed
22
+ Requires-Python: >=3.10
23
+ Requires-Dist: anndata>=0.10
24
+ Requires-Dist: matplotlib>=3.7
25
+ Requires-Dist: numpy>=1.24
26
+ Requires-Dist: pyucell>=0.5
27
+ Requires-Dist: scanpy>=1.9
28
+ Requires-Dist: scikit-learn>=1.3
29
+ Provides-Extra: interactive
30
+ Requires-Dist: plotly>=5.0; extra == 'interactive'
31
+ Description-Content-Type: text/markdown
32
+
33
+ # multiscoresplot
34
+
35
+ [![CI](https://github.com/andrecmacedo/multiscoresplot/actions/workflows/ci.yml/badge.svg)](https://github.com/andrecmacedo/multiscoresplot/actions/workflows/ci.yml)
36
+ [![PyPI](https://img.shields.io/pypi/v/multiscoresplot)](https://pypi.org/project/multiscoresplot/)
37
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
38
+
39
+ Multi-dimensional gene set scoring and visualization for single-cell transcriptomics.
40
+
41
+ Color dimensionality reduction plots (UMAP, PCA, etc.) using a multi-dimensional color space derived from gene set scores.
42
+
43
+ ## Installation
44
+
45
+ ```bash
46
+ pip install multiscoresplot
47
+ ```
48
+
49
+ ## Quick Start
50
+
51
+ ```python
52
+ import multiscoresplot # more to come!
53
+ ```
54
+
55
+ ## Pipeline
56
+
57
+ 1. **Score** -- Calculate gene set scores per cell
58
+ 2. **Color space** -- Build a color space where each axis/vertex maps to a gene set
59
+ 3. **Project** -- Map each cell into the color space based on its scores
60
+ 4. **Plot** -- Color dimensionality reduction coordinates using the projected colors
61
+ 5. **Legend** -- Render a simplex/ternary plot as the colorbar
62
+
63
+ ## Development
64
+
65
+ ```bash
66
+ # Install in editable mode with all dev dependencies
67
+ pip install -e ".[dev,test,type]"
68
+
69
+ # Run tests
70
+ pytest
71
+
72
+ # Lint & format
73
+ ruff check src/ tests/
74
+ ruff format src/ tests/
75
+
76
+ # Type check
77
+ mypy src/
78
+
79
+ # Set up pre-commit hooks
80
+ pre-commit install
81
+ ```
82
+
83
+ ## License
84
+
85
+ [MIT](LICENSE)
@@ -0,0 +1,11 @@
1
+ multiscoresplot/__init__.py,sha256=nGCGFe9K9g4aQxLrd07kkGq7IdLhpTvn9bODMGvBt1Q,737
2
+ multiscoresplot/_colorspace.py,sha256=pyvGX1aL61K7SY29P6tViWXpGeNytbSUaToHbnp-6c8,9640
3
+ multiscoresplot/_interactive.py,sha256=6qEoi4a2FmNXlE9SeA05qkp-_sO1tZLMSmHqhKKTBps,10506
4
+ multiscoresplot/_legend.py,sha256=d-3elrmN1W4gE4KMalvbE3vCtgOmSFRQm2fV_Ep52Xc,9848
5
+ multiscoresplot/_plotting.py,sha256=YlksslHDZLrVuDdrHoJdlkme2SzrsJSMT_DOr7UVYp4,8035
6
+ multiscoresplot/_scoring.py,sha256=V2v1zc8iQOLv1YPigE9EZmUKgKiKHsHkAwN0x_YEmo8,2941
7
+ multiscoresplot/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ multiscoresplot-1.0.0.dist-info/METADATA,sha256=ZhBXaFavXewj523stCokj9Sa-5NEqf5ZfIisK8IL1KI,2721
9
+ multiscoresplot-1.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
10
+ multiscoresplot-1.0.0.dist-info/licenses/LICENSE,sha256=hExw76pnFdcG1kix13qFnKXR5mXtBKJa5euOM0k-yU4,1069
11
+ multiscoresplot-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Andre Macedo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.