iskakov 0.2.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,89 @@
1
+ Metadata-Version: 2.4
2
+ Name: iskakov
3
+ Version: 0.2.0
4
+ Summary: Alias for own-baseline: does a single-cell potency score add anything beyond its own low-order primitive?
5
+ Author: Damir Iskakov
6
+ License: MIT License
7
+
8
+ Copyright (c) 2026 Damir Iskakov
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Project-URL: Homepage, https://iskakov.dev/ownbaseline
29
+ Project-URL: Repository, https://github.com/IskakovDamir/ownbaseline
30
+ Project-URL: Issues, https://github.com/IskakovDamir/ownbaseline/issues
31
+ Keywords: single-cell,scRNA-seq,potency,stemness,benchmarking,incremental-validity,null-calibration,CytoTRACE,SCENT
32
+ Classifier: Development Status :: 4 - Beta
33
+ Classifier: Environment :: Console
34
+ Classifier: Intended Audience :: Science/Research
35
+ Classifier: License :: OSI Approved :: MIT License
36
+ Classifier: Operating System :: OS Independent
37
+ Classifier: Programming Language :: Python :: 3
38
+ Classifier: Programming Language :: Python :: 3.10
39
+ Classifier: Programming Language :: Python :: 3.11
40
+ Classifier: Programming Language :: Python :: 3.12
41
+ Classifier: Programming Language :: Python :: 3.13
42
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
43
+ Requires-Python: >=3.10
44
+ Description-Content-Type: text/markdown
45
+ License-File: LICENSE
46
+ Requires-Dist: own-baseline>=0.2.0
47
+ Dynamic: license-file
48
+
49
+ # iskakov
50
+
51
+ `pip install iskakov` installs [`own-baseline`](https://pypi.org/project/own-baseline/)
52
+ and gives you its command line under a second name. The two names run the same
53
+ program:
54
+
55
+ ```bash
56
+ pip install iskakov
57
+
58
+ iskakov check cells.h5ad --score obs:ccat --ordinal obs:stage \
59
+ --primitive degree-corr --ordinal-source experimental
60
+ ownbaseline check ... # identical
61
+ ```
62
+
63
+ Import the real package in scripts:
64
+
65
+ ```python
66
+ from own_baseline import conditional_skill_report
67
+ ```
68
+
69
+ ## What the tool does
70
+
71
+ A potency score is supposed to order single cells by developmental potential.
72
+ Most published scores are built on a low-order primitive of the same expression
73
+ matrix: the number of genes detected, the correlation of a cell's profile with
74
+ network node degree, the Shannon entropy of the profile, the library size.
75
+ `own-baseline` asks whether the score orders a held-out ordinal any better than
76
+ that primitive does on its own. It rank-residualizes the score on its
77
+ author-declared primitive, takes Kendall's tau_b against the ordinal, and
78
+ compares the result against a measured floor from a 200-seed null grid indexed
79
+ by sample size, rank correlation, kernel and covariate count. The floor table
80
+ ships inside the wheel, so the answer does not depend on a network call.
81
+
82
+ Four verbs: `check`, `floors`, `primitives`, `verify`.
83
+
84
+ ## Where the code lives
85
+
86
+ Source, tests, the null grid and the documentation are in the `own-baseline`
87
+ repository. This distribution is 60 lines of forwarding.
88
+
89
+ MIT licensed.
@@ -0,0 +1,7 @@
1
+ iskakov.py,sha256=rrHINGOcoXSh1MEYOVEw7qbkO0aj_yb4mW2UXlrpMWM,886
2
+ iskakov-0.2.0.dist-info/licenses/LICENSE,sha256=nwndFT6C72mcQDzEyQHTXWza2Ahw3B1U5fBblwlerb0,1070
3
+ iskakov-0.2.0.dist-info/METADATA,sha256=85z2t6CfurJFMKrgL-b2V0R5QLwCQzTCs9Q3aBupsbE,3967
4
+ iskakov-0.2.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
5
+ iskakov-0.2.0.dist-info/entry_points.txt,sha256=eD7Z0kQ6ZfupPcoVrjN-vXloX-AZ-BmdMkpLKRUXQ0M,41
6
+ iskakov-0.2.0.dist-info/top_level.txt,sha256=T67btRA5jkG8bmwerGuW-4Rh8Ff1tfi1oMoU3vub0y4,8
7
+ iskakov-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (84.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ iskakov = iskakov:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Damir Iskakov
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.
@@ -0,0 +1 @@
1
+ iskakov
iskakov.py ADDED
@@ -0,0 +1,32 @@
1
+ """``pip install iskakov`` installs the own-baseline diagnostic.
2
+
3
+ This distribution carries no analysis code. It depends on ``own-baseline`` and
4
+ re-exports that package's command line under a second name, so ``iskakov`` and
5
+ ``ownbaseline`` are the same program. In scripts, import the real package:
6
+
7
+ from own_baseline import conditional_skill_report
8
+
9
+ This module exists for the console entry point.
10
+ """
11
+ from __future__ import annotations
12
+
13
+ __version__ = "0.2.0"
14
+
15
+ _MISSING = (
16
+ "iskakov is an alias for own-baseline, and own-baseline is not installed "
17
+ "in this environment.\n"
18
+ " pip install own-baseline"
19
+ )
20
+
21
+
22
+ def main() -> int:
23
+ """Run the own-baseline command line."""
24
+ try:
25
+ from own_baseline.cli import main as _main
26
+ except ImportError:
27
+ raise SystemExit(_MISSING)
28
+ return _main()
29
+
30
+
31
+ if __name__ == "__main__":
32
+ raise SystemExit(main())