resolutiontree 0.1.0__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.
- resolutiontree-0.1.0/LICENSE +0 -0
- resolutiontree-0.1.0/PKG-INFO +29 -0
- resolutiontree-0.1.0/README.md +0 -0
- resolutiontree-0.1.0/pyproject.toml +39 -0
- resolutiontree-0.1.0/setup.cfg +4 -0
- resolutiontree-0.1.0/setup.py +53 -0
- resolutiontree-0.1.0/src/resolutiontree/__init__.py +14 -0
- resolutiontree-0.1.0/src/resolutiontree/core.py +1331 -0
- resolutiontree-0.1.0/src/resolutiontree/utils.py +377 -0
- resolutiontree-0.1.0/src/resolutiontree.egg-info/PKG-INFO +29 -0
- resolutiontree-0.1.0/src/resolutiontree.egg-info/SOURCES.txt +14 -0
- resolutiontree-0.1.0/src/resolutiontree.egg-info/dependency_links.txt +1 -0
- resolutiontree-0.1.0/src/resolutiontree.egg-info/top_level.txt +1 -0
- resolutiontree-0.1.0/tests/test_cluster_resolution.py +157 -0
- resolutiontree-0.1.0/tests/test_cluster_tree.py +217 -0
- resolutiontree-0.1.0/tests/test_installation.py +30 -0
|
File without changes
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: resolutiontree
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Systematic exploration of clustering resolutions in single-cell analysis
|
|
5
|
+
Home-page: https://github.com/joe-jhou2/resolutiontree
|
|
6
|
+
Author: Joe Hou
|
|
7
|
+
Author-email: Joe Hou <joseph.houjue@gmail.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/joe-jhou2/resolutiontree
|
|
10
|
+
Project-URL: Documentation, https://resolutiontree.readthedocs.io/
|
|
11
|
+
Project-URL: Repository, https://github.com/joe-jhou2/resolutiontree
|
|
12
|
+
Project-URL: Bug Tracker, https://github.com/joe-jhou2/resolutiontree/issues
|
|
13
|
+
Keywords: single-cell,clustering,resolution,scanpy,leiden,visualization
|
|
14
|
+
Classifier: Development Status :: 4 - Beta
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
17
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Requires-Python: >=3.8
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Dynamic: author
|
|
27
|
+
Dynamic: home-page
|
|
28
|
+
Dynamic: license-file
|
|
29
|
+
Dynamic: requires-python
|
|
File without changes
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "resolutiontree"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "Systematic exploration of clustering resolutions in single-cell analysis"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Joe Hou", email = "joseph.houjue@gmail.com"},
|
|
14
|
+
]
|
|
15
|
+
keywords = ["single-cell", "clustering", "resolution", "scanpy", "leiden", "visualization"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Science/Research",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Bio-Informatics",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.8",
|
|
23
|
+
"Programming Language :: Python :: 3.9",
|
|
24
|
+
"Programming Language :: Python :: 3.10",
|
|
25
|
+
"Programming Language :: Python :: 3.11",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://github.com/joe-jhou2/resolutiontree"
|
|
30
|
+
Documentation = "https://resolutiontree.readthedocs.io/"
|
|
31
|
+
Repository = "https://github.com/joe-jhou2/resolutiontree"
|
|
32
|
+
"Bug Tracker" = "https://github.com/joe-jhou2/resolutiontree/issues"
|
|
33
|
+
|
|
34
|
+
[tool.setuptools.packages.find]
|
|
35
|
+
where = ["src"]
|
|
36
|
+
include = ["resolutiontree*"]
|
|
37
|
+
|
|
38
|
+
[tool.setuptools.package-dir]
|
|
39
|
+
"" = "src"
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="resolutiontree",
|
|
8
|
+
version="0.1.0",
|
|
9
|
+
author="Joe Hou",
|
|
10
|
+
author_email="joseph.houjue@gmail..com",
|
|
11
|
+
description="Systematic exploration of clustering resolutions in single-cell analysis",
|
|
12
|
+
long_description=long_description,
|
|
13
|
+
long_description_content_type="text/markdown",
|
|
14
|
+
url="https://github.com/joe-jhou2/resolutiontree",
|
|
15
|
+
packages=find_packages(where="src"),
|
|
16
|
+
package_dir={"": "src"},
|
|
17
|
+
classifiers=[
|
|
18
|
+
"Development Status :: 4 - Beta",
|
|
19
|
+
"Intended Audience :: Science/Research",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Bio-Informatics",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.8",
|
|
24
|
+
"Programming Language :: Python :: 3.9",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Programming Language :: Python :: 3.13",
|
|
29
|
+
],
|
|
30
|
+
python_requires=">=3.8",
|
|
31
|
+
install_requires = [
|
|
32
|
+
"numpy>=1.19.0",
|
|
33
|
+
"pandas>=1.3.0",
|
|
34
|
+
"scipy>=1.7.0",
|
|
35
|
+
"matplotlib>=3.3.0",
|
|
36
|
+
"seaborn>=0.11.0",
|
|
37
|
+
"scanpy>=1.8.0",
|
|
38
|
+
"anndata>=0.8.0",
|
|
39
|
+
"igraph>=0.9.0",
|
|
40
|
+
"networkx>=2.6.0",
|
|
41
|
+
"leidenalg>=0.8.0",
|
|
42
|
+
],
|
|
43
|
+
extras_require={
|
|
44
|
+
"dev": [
|
|
45
|
+
"pytest>=6.0",
|
|
46
|
+
"pytest-cov",
|
|
47
|
+
"black",
|
|
48
|
+
"flake8",
|
|
49
|
+
"sphinx",
|
|
50
|
+
],
|
|
51
|
+
},
|
|
52
|
+
keywords="single-cell, clustering, resolution, scanpy, leiden, visualization",
|
|
53
|
+
)
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""
|
|
2
|
+
ResolutionTree: Systematic exploration of clustering resolutions in single-cell analysis
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
__version__ = "0.1.0"
|
|
6
|
+
__author__ = "Joe Hou"
|
|
7
|
+
|
|
8
|
+
from .utils import cluster_resolution_finder
|
|
9
|
+
from .core import cluster_decision_tree
|
|
10
|
+
|
|
11
|
+
__all__ = [
|
|
12
|
+
"cluster_resolution_finder",
|
|
13
|
+
"cluster_decision_tree",
|
|
14
|
+
]
|