python-katlas 0.1.1__tar.gz → 0.1.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.
Files changed (23) hide show
  1. {python-katlas-0.1.1/python_katlas.egg-info → python-katlas-0.1.2}/PKG-INFO +1 -1
  2. python-katlas-0.1.2/katlas/__init__.py +1 -0
  3. {python-katlas-0.1.1 → python-katlas-0.1.2}/katlas/core.py +1 -1
  4. {python-katlas-0.1.1 → python-katlas-0.1.2/python_katlas.egg-info}/PKG-INFO +1 -1
  5. {python-katlas-0.1.1 → python-katlas-0.1.2}/settings.ini +1 -1
  6. python-katlas-0.1.1/katlas/__init__.py +0 -1
  7. {python-katlas-0.1.1 → python-katlas-0.1.2}/LICENSE +0 -0
  8. {python-katlas-0.1.1 → python-katlas-0.1.2}/MANIFEST.in +0 -0
  9. {python-katlas-0.1.1 → python-katlas-0.1.2}/README.md +0 -0
  10. {python-katlas-0.1.1 → python-katlas-0.1.2}/katlas/_modidx.py +0 -0
  11. {python-katlas-0.1.1 → python-katlas-0.1.2}/katlas/dl.py +0 -0
  12. {python-katlas-0.1.1 → python-katlas-0.1.2}/katlas/feature.py +0 -0
  13. {python-katlas-0.1.1 → python-katlas-0.1.2}/katlas/imports.py +0 -0
  14. {python-katlas-0.1.1 → python-katlas-0.1.2}/katlas/plot.py +0 -0
  15. {python-katlas-0.1.1 → python-katlas-0.1.2}/katlas/train.py +0 -0
  16. {python-katlas-0.1.1 → python-katlas-0.1.2}/python_katlas.egg-info/SOURCES.txt +0 -0
  17. {python-katlas-0.1.1 → python-katlas-0.1.2}/python_katlas.egg-info/dependency_links.txt +0 -0
  18. {python-katlas-0.1.1 → python-katlas-0.1.2}/python_katlas.egg-info/entry_points.txt +0 -0
  19. {python-katlas-0.1.1 → python-katlas-0.1.2}/python_katlas.egg-info/not-zip-safe +0 -0
  20. {python-katlas-0.1.1 → python-katlas-0.1.2}/python_katlas.egg-info/requires.txt +0 -0
  21. {python-katlas-0.1.1 → python-katlas-0.1.2}/python_katlas.egg-info/top_level.txt +0 -0
  22. {python-katlas-0.1.1 → python-katlas-0.1.2}/setup.cfg +0 -0
  23. {python-katlas-0.1.1 → python-katlas-0.1.2}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-katlas
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: tools for predicting kinome specificities
5
5
  Home-page: https://github.com/sky1ove/python-katlas
6
6
  Author: lily
@@ -0,0 +1 @@
1
+ __version__ = "0.1.1"
@@ -491,7 +491,7 @@ def predict_kinase_df(df, seq_col, ref, func, to_lower=False, to_upper=False):
491
491
 
492
492
 
493
493
  # wide form to long form
494
- df['keys'] = df['site_seq'].apply(get_dict)
494
+ df['keys'] = df[seq_col].apply(get_dict)
495
495
  input_keys_df = df[['keys']].explode('keys').reset_index()
496
496
  input_keys_df.columns = ['input_index', 'key']
497
497
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-katlas
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: tools for predicting kinome specificities
5
5
  Home-page: https://github.com/sky1ove/python-katlas
6
6
  Author: lily
@@ -5,7 +5,7 @@
5
5
  ### Python library ###
6
6
  repo = python-katlas
7
7
  lib_name = %(repo)s
8
- version = 0.1.1
8
+ version = 0.1.2
9
9
  min_python = 3.7
10
10
  license = apache2
11
11
  black_formatting = False
@@ -1 +0,0 @@
1
- __version__ = "0.1.0"
File without changes
File without changes
File without changes
File without changes
File without changes