pyseqalignment 0.1.0__tar.gz → 0.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.
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/PKG-INFO +1 -1
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/pyproject.toml +1 -1
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/aleph_files/aleph_swi_ak.pl +4 -1
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalignment.egg-info/PKG-INFO +1 -1
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/LICENSE +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/README.md +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/setup.cfg +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/core/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/core/alignment.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/core/needleman_wunsch.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/core/smith_waterman.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/aleph.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/aleph_files/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/base.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/popper.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/task_builder.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/prolog/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/prolog/engine.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/prolog/knowledge/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/prolog/knowledge/amino_acids.pl +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/prolog/knowledge/blosum50.pl +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/prolog/knowledge/defaults.pl +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/prolog/knowledge/distances.pl +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/distance.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrices.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/BLOSUM100 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/BLOSUM50 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/BLOSUM60 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/BLOSUM62 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/BLOSUM70 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/BLOSUM80 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/BLOSUM90 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/PAM150 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/PAM200 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/PAM250 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/PAM50 +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/utils/__init__.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/utils/helpers.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalignment.egg-info/SOURCES.txt +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalignment.egg-info/dependency_links.txt +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalignment.egg-info/requires.txt +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalignment.egg-info/top_level.txt +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/tests/test_learning.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/tests/test_needleman_wunsch.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/tests/test_scoring.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/tests/test_smith_waterman.py +0 -0
- {pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/tests/test_utils.py +0 -0
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
# PyPI distribution name (the import package is `pyseqalign`; the name
|
|
7
7
|
# `pyseqalign` was blocked by PyPI's similarity guard vs. an existing project).
|
|
8
8
|
name = "pyseqalignment"
|
|
9
|
-
version = "0.1.
|
|
9
|
+
version = "0.1.1"
|
|
10
10
|
description = "pySeqAlign -- sequence alignment with Prolog-style distance functions and ILP learning"
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
license = "MIT"
|
{pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/aleph_files/aleph_swi_ak.pl
RENAMED
|
@@ -67,7 +67,10 @@ init(swi):-
|
|
|
67
67
|
dynamic(false/0),
|
|
68
68
|
dynamic(example/3),
|
|
69
69
|
assert((aleph_random(X):- I = 1000000, X is float(random(I-1))/float(I))),
|
|
70
|
-
|
|
70
|
+
% SWI 10 fix: 'is inf' is native float infinity; the old custom
|
|
71
|
+
% arithmetic_function(inf/0) throws ("can only be used in a directive")
|
|
72
|
+
% and aborts init(swi), leaving gc/system/etc. unasserted. Drop it.
|
|
73
|
+
true,
|
|
71
74
|
assert((gc:- garbage_collect)),
|
|
72
75
|
assert((depth_bound_call(G,L):-
|
|
73
76
|
call_with_depth_limit(G,L,R),
|
|
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
|
{pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/learning/aleph_files/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/prolog/knowledge/amino_acids.pl
RENAMED
|
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
|
{pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalign/scoring/matrix_data/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyseqalignment-0.1.0 → pyseqalignment-0.1.1}/src/pyseqalignment.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|