python-katlas 2025.10.20__tar.gz → 2025.10.20.2__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.
- {python_katlas-2025.10.20/python_katlas.egg-info → python_katlas-2025.10.20.2}/PKG-INFO +6 -5
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/README.md +5 -4
- python_katlas-2025.10.20.2/katlas/__init__.py +1 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2/python_katlas.egg-info}/PKG-INFO +6 -5
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/settings.ini +1 -1
- python_katlas-2025.10.20/katlas/__init__.py +0 -1
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/LICENSE +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/MANIFEST.in +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/_modidx.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/clustering.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/common.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/core.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/data.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/dnn.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/feature.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/pathway.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/plot.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/pssm.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/score.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/statistics.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/train.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/katlas/utils.py +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/pyproject.toml +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/SOURCES.txt +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/dependency_links.txt +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/entry_points.txt +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/not-zip-safe +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/requires.txt +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/top_level.txt +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/setup.cfg +0 -0
- {python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-katlas
|
|
3
|
-
Version: 2025.10.20
|
|
3
|
+
Version: 2025.10.20.2
|
|
4
4
|
Summary: tools for predicting kinome specificities
|
|
5
5
|
Home-page: https://github.com/sky1ove/katlas
|
|
6
6
|
Author: lily
|
|
@@ -98,8 +98,6 @@ helpful to your research.
|
|
|
98
98
|
Follow the instructions in katlas_raw:
|
|
99
99
|
https://github.com/sky1ove/katlas_raw
|
|
100
100
|
|
|
101
|
-
Need to install the package via: `pip install 'python-katlas[dev]' -U`
|
|
102
|
-
|
|
103
101
|
## Web applications
|
|
104
102
|
|
|
105
103
|
Users can now run the analysis directly on the web without needing to
|
|
@@ -113,15 +111,18 @@ Check out our latest web platform:
|
|
|
113
111
|
UV:
|
|
114
112
|
|
|
115
113
|
``` bash
|
|
116
|
-
uv add -U
|
|
114
|
+
uv add -U python-katlas
|
|
117
115
|
```
|
|
118
116
|
|
|
119
117
|
pip:
|
|
120
118
|
|
|
121
119
|
``` bash
|
|
122
|
-
pip install -U
|
|
120
|
+
pip install -U python-katlas
|
|
123
121
|
```
|
|
124
122
|
|
|
123
|
+
If using machine-learning related modules, need to install development
|
|
124
|
+
verison: `pip install -U "python-katlas[dev]"`
|
|
125
|
+
|
|
125
126
|
## Import
|
|
126
127
|
|
|
127
128
|
``` python
|
|
@@ -39,8 +39,6 @@ helpful to your research.
|
|
|
39
39
|
Follow the instructions in katlas_raw:
|
|
40
40
|
https://github.com/sky1ove/katlas_raw
|
|
41
41
|
|
|
42
|
-
Need to install the package via: `pip install 'python-katlas[dev]' -U`
|
|
43
|
-
|
|
44
42
|
## Web applications
|
|
45
43
|
|
|
46
44
|
Users can now run the analysis directly on the web without needing to
|
|
@@ -54,15 +52,18 @@ Check out our latest web platform:
|
|
|
54
52
|
UV:
|
|
55
53
|
|
|
56
54
|
``` bash
|
|
57
|
-
uv add -U
|
|
55
|
+
uv add -U python-katlas
|
|
58
56
|
```
|
|
59
57
|
|
|
60
58
|
pip:
|
|
61
59
|
|
|
62
60
|
``` bash
|
|
63
|
-
pip install -U
|
|
61
|
+
pip install -U python-katlas
|
|
64
62
|
```
|
|
65
63
|
|
|
64
|
+
If using machine-learning related modules, need to install development
|
|
65
|
+
verison: `pip install -U "python-katlas[dev]"`
|
|
66
|
+
|
|
66
67
|
## Import
|
|
67
68
|
|
|
68
69
|
``` python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2025.10.20"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-katlas
|
|
3
|
-
Version: 2025.10.20
|
|
3
|
+
Version: 2025.10.20.2
|
|
4
4
|
Summary: tools for predicting kinome specificities
|
|
5
5
|
Home-page: https://github.com/sky1ove/katlas
|
|
6
6
|
Author: lily
|
|
@@ -98,8 +98,6 @@ helpful to your research.
|
|
|
98
98
|
Follow the instructions in katlas_raw:
|
|
99
99
|
https://github.com/sky1ove/katlas_raw
|
|
100
100
|
|
|
101
|
-
Need to install the package via: `pip install 'python-katlas[dev]' -U`
|
|
102
|
-
|
|
103
101
|
## Web applications
|
|
104
102
|
|
|
105
103
|
Users can now run the analysis directly on the web without needing to
|
|
@@ -113,15 +111,18 @@ Check out our latest web platform:
|
|
|
113
111
|
UV:
|
|
114
112
|
|
|
115
113
|
``` bash
|
|
116
|
-
uv add -U
|
|
114
|
+
uv add -U python-katlas
|
|
117
115
|
```
|
|
118
116
|
|
|
119
117
|
pip:
|
|
120
118
|
|
|
121
119
|
``` bash
|
|
122
|
-
pip install -U
|
|
120
|
+
pip install -U python-katlas
|
|
123
121
|
```
|
|
124
122
|
|
|
123
|
+
If using machine-learning related modules, need to install development
|
|
124
|
+
verison: `pip install -U "python-katlas[dev]"`
|
|
125
|
+
|
|
125
126
|
## Import
|
|
126
127
|
|
|
127
128
|
``` python
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.4"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_katlas-2025.10.20 → python_katlas-2025.10.20.2}/python_katlas.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|