python-katlas 0.0.3__py3-none-any.whl → 0.0.5__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.
- katlas/__init__.py +1 -1
- katlas/_modidx.py +2 -2
- katlas/core.py +1 -1
- {python_katlas-0.0.3.dist-info → python_katlas-0.0.5.dist-info}/METADATA +14 -11
- python_katlas-0.0.5.dist-info/RECORD +14 -0
- python_katlas-0.0.3.dist-info/RECORD +0 -14
- {python_katlas-0.0.3.dist-info → python_katlas-0.0.5.dist-info}/LICENSE +0 -0
- {python_katlas-0.0.3.dist-info → python_katlas-0.0.5.dist-info}/WHEEL +0 -0
- {python_katlas-0.0.3.dist-info → python_katlas-0.0.5.dist-info}/entry_points.txt +0 -0
- {python_katlas-0.0.3.dist-info → python_katlas-0.0.5.dist-info}/top_level.txt +0 -0
katlas/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.0.
|
|
1
|
+
__version__ = "0.0.3"
|
katlas/_modidx.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Autogenerated by nbdev
|
|
2
2
|
|
|
3
3
|
d = { 'settings': { 'branch': 'main',
|
|
4
|
-
'doc_baseurl': '/katlas',
|
|
4
|
+
'doc_baseurl': '/python-katlas',
|
|
5
5
|
'doc_host': 'https://sky1ove.github.io',
|
|
6
|
-
'git_url': 'https://github.com/sky1ove/katlas',
|
|
6
|
+
'git_url': 'https://github.com/sky1ove/python-katlas',
|
|
7
7
|
'lib_path': 'katlas'},
|
|
8
8
|
'syms': { 'katlas.core': { 'katlas.core.CPTAC': ('core.html#cptac', 'katlas/core.py'),
|
|
9
9
|
'katlas.core.CPTAC._fetch_data': ('core.html#cptac._fetch_data', 'katlas/core.py'),
|
katlas/core.py
CHANGED
|
@@ -7,7 +7,7 @@ __all__ = ['param_PSPA_st', 'param_PSPA_y', 'param_PSPA', 'param_CDDM', 'param_C
|
|
|
7
7
|
'query_gene', 'get_ttest', 'get_metaP', 'raw2norm', 'get_one_kinase']
|
|
8
8
|
|
|
9
9
|
# %% ../nbs/00_core.ipynb 4
|
|
10
|
-
import math, pandas as pd, numpy as np
|
|
10
|
+
import math, pandas as pd, numpy as np
|
|
11
11
|
from tqdm import tqdm
|
|
12
12
|
from scipy.stats import chi2
|
|
13
13
|
from typing import Callable
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-katlas
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: tools for predicting kinome specificities
|
|
5
5
|
Home-page: https://github.com/sky1ove/python-katlas
|
|
6
6
|
Author: lily
|
|
@@ -18,21 +18,24 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
18
18
|
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: pandas
|
|
22
|
-
Requires-Dist: logomaker
|
|
23
|
-
Requires-Dist: seaborn
|
|
24
|
-
Requires-Dist: rdkit
|
|
25
|
-
Requires-Dist: umap-learn
|
|
26
|
-
Requires-Dist: adjustText
|
|
27
|
-
Requires-Dist: bokeh
|
|
28
|
-
Requires-Dist: biopython
|
|
29
|
-
Requires-Dist: scikit-learn (>=1.3.0)
|
|
30
21
|
Requires-Dist: statsmodels
|
|
31
|
-
Requires-Dist: openpyxl
|
|
32
22
|
Requires-Dist: fastparquet
|
|
23
|
+
Requires-Dist: tqdm
|
|
33
24
|
Provides-Extra: dev
|
|
34
25
|
Requires-Dist: nbdev ; extra == 'dev'
|
|
35
26
|
Requires-Dist: pyngrok ; extra == 'dev'
|
|
27
|
+
Requires-Dist: fastai (>=2.7.12) ; extra == 'dev'
|
|
28
|
+
Requires-Dist: fastbook ; extra == 'dev'
|
|
29
|
+
Requires-Dist: fairscale ; extra == 'dev'
|
|
30
|
+
Requires-Dist: fair-esm ; extra == 'dev'
|
|
31
|
+
Requires-Dist: logomaker ; extra == 'dev'
|
|
32
|
+
Requires-Dist: seaborn ; extra == 'dev'
|
|
33
|
+
Requires-Dist: rdkit ; extra == 'dev'
|
|
34
|
+
Requires-Dist: umap-learn ; extra == 'dev'
|
|
35
|
+
Requires-Dist: adjustText ; extra == 'dev'
|
|
36
|
+
Requires-Dist: bokeh ; extra == 'dev'
|
|
37
|
+
Requires-Dist: scikit-learn (>=1.3.0) ; extra == 'dev'
|
|
38
|
+
Requires-Dist: openpyxl ; extra == 'dev'
|
|
36
39
|
|
|
37
40
|
# KATLAS
|
|
38
41
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
katlas/__init__.py,sha256=4GZKi13lDTD25YBkGakhZyEQZWTER_OWQMNPoH_UM2c,22
|
|
2
|
+
katlas/_modidx.py,sha256=COjpHUccTtv9jU9ifJgAn1uHwwYCpwyyFpM_ifl42Ew,11010
|
|
3
|
+
katlas/core.py,sha256=sJLUQJugXKjN6B71esnYDmB3GcdX8YcFxvfIm1EdrAM,34959
|
|
4
|
+
katlas/dl.py,sha256=Rm1EO6oGTiHpqp4EA2xAvbIUnh608FPYOdzndRGKVkc,10849
|
|
5
|
+
katlas/feature.py,sha256=3zgTuCnXqH1e0LGZ2Hkvan852PiaIHxj27cg_TJfKzo,11471
|
|
6
|
+
katlas/imports.py,sha256=-ZphRU8K1KspxMpgRxisE0OskrCw3S8JR8tvmeXBRY0,147
|
|
7
|
+
katlas/plot.py,sha256=vB3gv0aaCNERW1CtdDWqM4jIZOx1auGWwi_1I22xBa0,23630
|
|
8
|
+
katlas/train.py,sha256=s0ucsZVaixCTZPz-XAI2J7zQDeGkiYEJKOc2dFTYsAc,7625
|
|
9
|
+
python_katlas-0.0.5.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
10
|
+
python_katlas-0.0.5.dist-info/METADATA,sha256=rmglXwVjYgVHCpK5wyq8mrRFyv2iyS8ESMD8L3GqEDY,15460
|
|
11
|
+
python_katlas-0.0.5.dist-info/WHEEL,sha256=EVRjI69F5qVjm_YgqcTXPnTAv3BfSUr0WVAHuSP3Xoo,92
|
|
12
|
+
python_katlas-0.0.5.dist-info/entry_points.txt,sha256=SF3xDlCmE84ECTBIMDo_FNg1aXGX2-lXkCvH5o4VgpM,34
|
|
13
|
+
python_katlas-0.0.5.dist-info/top_level.txt,sha256=pKBKw9KOSJgnnFkoilkDij_iJ_tJbIO4XnrSXIleqNc,7
|
|
14
|
+
python_katlas-0.0.5.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
katlas/__init__.py,sha256=sXLh7g3KC4QCFxcZGBTpG2scR7hmmBsMjq6LqRptkRg,22
|
|
2
|
-
katlas/_modidx.py,sha256=wuIOxQQtyUyUDt8xnoZYyHfJAjnWMcoSYO6D3PXUFGE,10996
|
|
3
|
-
katlas/core.py,sha256=25yF0J2RBO_Fup1dUQA_h6Tfwcs96-A5uuzdf_lCpo0,34975
|
|
4
|
-
katlas/dl.py,sha256=Rm1EO6oGTiHpqp4EA2xAvbIUnh608FPYOdzndRGKVkc,10849
|
|
5
|
-
katlas/feature.py,sha256=3zgTuCnXqH1e0LGZ2Hkvan852PiaIHxj27cg_TJfKzo,11471
|
|
6
|
-
katlas/imports.py,sha256=-ZphRU8K1KspxMpgRxisE0OskrCw3S8JR8tvmeXBRY0,147
|
|
7
|
-
katlas/plot.py,sha256=vB3gv0aaCNERW1CtdDWqM4jIZOx1auGWwi_1I22xBa0,23630
|
|
8
|
-
katlas/train.py,sha256=s0ucsZVaixCTZPz-XAI2J7zQDeGkiYEJKOc2dFTYsAc,7625
|
|
9
|
-
python_katlas-0.0.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
10
|
-
python_katlas-0.0.3.dist-info/METADATA,sha256=QWF0LFwaL3pdT7HmuqFGKObVbnC8DjindRo2foKf3UE,15177
|
|
11
|
-
python_katlas-0.0.3.dist-info/WHEEL,sha256=EVRjI69F5qVjm_YgqcTXPnTAv3BfSUr0WVAHuSP3Xoo,92
|
|
12
|
-
python_katlas-0.0.3.dist-info/entry_points.txt,sha256=SF3xDlCmE84ECTBIMDo_FNg1aXGX2-lXkCvH5o4VgpM,34
|
|
13
|
-
python_katlas-0.0.3.dist-info/top_level.txt,sha256=pKBKw9KOSJgnnFkoilkDij_iJ_tJbIO4XnrSXIleqNc,7
|
|
14
|
-
python_katlas-0.0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|