weirdo 2.1.0__tar.gz → 2.1.1__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 (56) hide show
  1. {weirdo-2.1.0/weirdo.egg-info → weirdo-2.1.1}/PKG-INFO +2 -3
  2. {weirdo-2.1.0 → weirdo-2.1.1}/setup.py +1 -2
  3. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/__init__.py +1 -1
  4. {weirdo-2.1.0 → weirdo-2.1.1/weirdo.egg-info}/PKG-INFO +2 -3
  5. {weirdo-2.1.0 → weirdo-2.1.1}/LICENSE +0 -0
  6. {weirdo-2.1.0 → weirdo-2.1.1}/MANIFEST.in +0 -0
  7. {weirdo-2.1.0 → weirdo-2.1.1}/README.md +0 -0
  8. {weirdo-2.1.0 → weirdo-2.1.1}/requirements.txt +0 -0
  9. {weirdo-2.1.0 → weirdo-2.1.1}/setup.cfg +0 -0
  10. {weirdo-2.1.0 → weirdo-2.1.1}/test/test_amino_acids.py +0 -0
  11. {weirdo-2.1.0 → weirdo-2.1.1}/test/test_blosum.py +0 -0
  12. {weirdo-2.1.0 → weirdo-2.1.1}/test/test_hamming.py +0 -0
  13. {weirdo-2.1.0 → weirdo-2.1.1}/test/test_mlp_scorers.py +0 -0
  14. {weirdo-2.1.0 → weirdo-2.1.1}/test/test_ngram.py +0 -0
  15. {weirdo-2.1.0 → weirdo-2.1.1}/test/test_pmbec.py +0 -0
  16. {weirdo-2.1.0 → weirdo-2.1.1}/test/test_scorers.py +0 -0
  17. {weirdo-2.1.0 → weirdo-2.1.1}/test/test_swissprot_reference.py +0 -0
  18. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/amino_acid.py +0 -0
  19. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/amino_acid_alphabet.py +0 -0
  20. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/amino_acid_properties.py +0 -0
  21. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/api.py +0 -0
  22. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/blosum.py +0 -0
  23. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/chou_fasman.py +0 -0
  24. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/cli.py +0 -0
  25. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/common.py +0 -0
  26. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/data_manager.py +0 -0
  27. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/distances.py +0 -0
  28. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/BLOSUM30 +0 -0
  29. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/BLOSUM50 +0 -0
  30. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/BLOSUM62 +0 -0
  31. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/__init__.py +0 -0
  32. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/amino_acid_properties.txt +0 -0
  33. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/helix_vs_coil.txt +0 -0
  34. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/helix_vs_strand.txt +0 -0
  35. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/pmbec.mat +0 -0
  36. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/matrices/strand_vs_coil.txt +0 -0
  37. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/model_manager.py +0 -0
  38. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/peptide_vectorizer.py +0 -0
  39. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/pmbec.py +0 -0
  40. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/reduced_alphabet.py +0 -0
  41. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/residue_contact_energies.py +0 -0
  42. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/__init__.py +0 -0
  43. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/base.py +0 -0
  44. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/config.py +0 -0
  45. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/mlp.py +0 -0
  46. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/reference.py +0 -0
  47. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/registry.py +0 -0
  48. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/similarity.py +0 -0
  49. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/swissprot.py +0 -0
  50. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/scorers/trainable.py +0 -0
  51. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo/static_data.py +0 -0
  52. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo.egg-info/SOURCES.txt +0 -0
  53. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo.egg-info/dependency_links.txt +0 -0
  54. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo.egg-info/entry_points.txt +0 -0
  55. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo.egg-info/requires.txt +0 -0
  56. {weirdo-2.1.0 → weirdo-2.1.1}/weirdo.egg-info/top_level.txt +0 -0
@@ -1,16 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weirdo
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: Metrics of immunological foreignness for candidate T-cell epitopes
5
5
  Home-page: https://github.com/pirl-unc/weirdo
6
6
  Author: Alex Rubinsteyn
7
7
  Author-email: alex.rubinsteyn@unc.edu
8
- License: http://www.apache.org/licenses/LICENSE-2.0.html
8
+ License: Apache-2.0
9
9
  Classifier: Development Status :: 4 - Beta
10
10
  Classifier: Environment :: Console
11
11
  Classifier: Operating System :: OS Independent
12
12
  Classifier: Intended Audience :: Science/Research
13
- Classifier: License :: OSI Approved :: Apache Software License
14
13
  Classifier: Programming Language :: Python :: 3
15
14
  Classifier: Programming Language :: Python :: 3.9
16
15
  Classifier: Programming Language :: Python :: 3.10
@@ -51,13 +51,12 @@ if __name__ == '__main__':
51
51
  author="Alex Rubinsteyn",
52
52
  author_email="alex.rubinsteyn@unc.edu",
53
53
  url="https://github.com/pirl-unc/%s" % PACKAGE_NAME,
54
- license="http://www.apache.org/licenses/LICENSE-2.0.html",
54
+ license="Apache-2.0",
55
55
  classifiers=[
56
56
  'Development Status :: 4 - Beta',
57
57
  'Environment :: Console',
58
58
  'Operating System :: OS Independent',
59
59
  'Intended Audience :: Science/Research',
60
- 'License :: OSI Approved :: Apache Software License',
61
60
  'Programming Language :: Python :: 3',
62
61
  'Programming Language :: Python :: 3.9',
63
62
  'Programming Language :: Python :: 3.10',
@@ -55,7 +55,7 @@ from .scorers import (
55
55
  # ML scorer
56
56
  from .scorers import MLPScorer
57
57
 
58
- __version__ = "2.1.0"
58
+ __version__ = "2.1.1"
59
59
 
60
60
  __all__ = [
61
61
  # Amino acid data
@@ -1,16 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weirdo
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: Metrics of immunological foreignness for candidate T-cell epitopes
5
5
  Home-page: https://github.com/pirl-unc/weirdo
6
6
  Author: Alex Rubinsteyn
7
7
  Author-email: alex.rubinsteyn@unc.edu
8
- License: http://www.apache.org/licenses/LICENSE-2.0.html
8
+ License: Apache-2.0
9
9
  Classifier: Development Status :: 4 - Beta
10
10
  Classifier: Environment :: Console
11
11
  Classifier: Operating System :: OS Independent
12
12
  Classifier: Intended Audience :: Science/Research
13
- Classifier: License :: OSI Approved :: Apache Software License
14
13
  Classifier: Programming Language :: Python :: 3
15
14
  Classifier: Programming Language :: Python :: 3.9
16
15
  Classifier: Programming Language :: Python :: 3.10
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
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