Skip to content

Commit 9797460

Browse files
committed
renamed the python package from kalign to kalign-python
1 parent dad5e1c commit 9797460

8 files changed

Lines changed: 24 additions & 28 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ include(GenerateExportHeader)
1313

1414
set(KALIGN_LIBRARY_VERSION_MAJOR 3)
1515
set(KALIGN_LIBRARY_VERSION_MINOR 4)
16-
set(KALIGN_LIBRARY_VERSION_PATCH 7)
16+
set(KALIGN_LIBRARY_VERSION_PATCH 8)
1717
set(KALIGN_LIBRARY_VERSION_STRING ${KALIGN_LIBRARY_VERSION_MAJOR}.${KALIGN_LIBRARY_VERSION_MINOR}.${KALIGN_LIBRARY_VERSION_PATCH})
1818

1919

ChangeLog

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
2024-04-24 Timo Lassmann <timo.lassmann@telethonkids.org.au>
1+
2024-04-24 Timo Lassmann <timolassmann@icloud.com>
22

33
* version 3.4.1
44
- Fixed an issue when kalign is given hundreds of identical sequences.
55
- added build.zig
66

7-
2023-12-10 Timo Lassmann <timo.lassmann@telethonkids.org.au>
7+
2023-12-10 Timo Lassmann <timolassmann@icloud.com>
88

99
* version 3.4.0
1010
- Added a simple sequence simulator for testing
1111
- Fixed an issue where alignments would be slighly different
1212
depending on the number of threads used.
1313

14-
2022-11-05 Timo Lassmann <timo.lassmann@telethonkids.org.au>
14+
2022-11-05 Timo Lassmann <timolassmann@icloud.com>
1515

1616
* version 3.3.5
1717
- Added a check to find and remove sequences of length 0.
1818

19-
2022-10-28 Timo Lassmann <timo.lassmann@telethonkids.org.au>
19+
2022-10-28 Timo Lassmann <timolassmann@icloud.com>
2020

2121
* version 3.3.4 - Cmake and more
2222
- switched to cmake
@@ -30,7 +30,7 @@
3030
3) alignment types giving users more control over alignment parameters.
3131
4) multi-threading
3232

33-
2022-03-21 Timo Lassmann <timo.lassmann@telethonkids.org.au>
33+
2022-03-21 Timo Lassmann <timolassmann@icloud.com>
3434

3535
* version 3.3.2 - Bug Fix
3636
There was a bug in building a guide tree from highly similar sequences. The fix
@@ -40,7 +40,7 @@
4040
In addition Kalign now compiles on Apple's M1 chip and possibly on other ARM architectures
4141
as well (although I did not test the latter).
4242

43-
2021-04-16 Timo Lassmann <timo.lassmann@telethonkids.org.au>
43+
2021-04-16 Timo Lassmann <timolassmann@icloud.com>
4444

4545
* version 3.3.1 - Bug Fix
4646
The previous version kalign checked the top 50 sequences in inputs to determine
@@ -62,7 +62,7 @@
6262
[Date Time] : WARNING : align the sequences. (rwalign.c line 517)
6363
[Date Time] : WARNING : -------------------------------------------- (rwalign.c line 518)
6464

65-
2020-11-06 Timo Lassmann <timo.lassmann@telethonkids.org.au>
65+
2020-11-06 Timo Lassmann <timolassmann@icloud.com>
6666

6767
* version 3.3 - Threading and more
6868
- Kalign now runs pairwise distance estimation, guide tree building and alignments in parallel.
@@ -73,7 +73,7 @@
7373

7474

7575

76-
2020-09-24 Timo Lassmann <timo.lassmann@telethonkids.org.au>
76+
2020-09-24 Timo Lassmann <timolassmann@icloud.com>
7777

7878
* version 3.2.7 - Development version
7979
- dynamic programming in now more modular.
@@ -87,13 +87,13 @@
8787

8888
with the empirically derived gap penalties.
8989

90-
2020-04-22 Timo Lassmann <timo.lassmann@telethonkids.org.au>
90+
2020-04-22 Timo Lassmann <timolassmann@icloud.com>
9191

9292
* version 3.2.5
9393
- Bug fix: when given long output named the first lines in msf
9494
output could be truncated.
9595

96-
2020-04-01 Timo Lassmann <timo.lassmann@telethonkids.org.au>
96+
2020-04-01 Timo Lassmann <timolassmann@icloud.com>
9797

9898
* version 3.2.4
9999
- Fixed issue relating to stdin input on clusters.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ requires = [
77
build-backend = "scikit_build_core.build"
88

99
[project]
10-
name = "kalign"
11-
version = "3.4.7"
10+
name = "kalign-python"
11+
version = "3.4.8"
1212
description = "Python wrapper for the Kalign multiple sequence alignment engine"
1313
readme = "README-python.md"
1414
license = "GPL-3.0-or-later"
1515
license-files = ["COPYING"]
1616
authors = [
17-
{name = "Timo Lassmann", email = "timo.lassmann@telethonkids.org.au"}
17+
{name = "Timo Lassmann", email = "timolassmann@icloud.com"}
1818
]
1919
maintainers = [
20-
{name = "Timo Lassmann", email = "timo.lassmann@telethonkids.org.au"}
20+
{name = "Timo Lassmann", email = "timolassmann@icloud.com"}
2121
]
2222
keywords = [
2323
"bioinformatics",

python-kalign/__init__.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,13 @@ class AlignedSequences(NamedTuple):
1818
sequences: List[str]
1919

2020

21-
from . import _core, io, utils
21+
from importlib.metadata import version
2222

23-
try:
24-
from importlib.metadata import PackageNotFoundError
25-
from importlib.metadata import version as _dist_version
23+
from . import _core, io, utils
2624

27-
__version__ = _dist_version("kalign")
28-
except Exception:
29-
__version__ = "3.4.7"
25+
__version__ = version("kalign-python")
3026
__author__ = "Timo Lassmann"
31-
__email__ = "timo.lassmann@telethonkids.org.au"
27+
__email__ = "timolassmann@icloud.com"
3228

3329
# Re-export constants for convenience
3430
DNA = _core.DNA

scripts/balibase_test.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#+TITLE: Test kalign on BAliBASE
22
#+AUTHOR: Timo Lassmann
3-
#+EMAIL: timo.lassmann@telethonkids.org.au
3+
#+EMAIL: timolassmann@icloud.com
44
#+DATE: 2019-04-23
55
#+LATEX_CLASS: report
66
#+OPTIONS: toc:nil

scripts/benchmark.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#+TITLE: Benchmark of MSA algorithms
22
#+AUTHOR: Timo Lassmann
3-
#+EMAIL: timo.lassmann@telethonkids.org.au
3+
#+EMAIL: timolassmann@icloud.com
44
#+DATE: 2019-09-27
55
#+LATEX_CLASS: report
66
#+OPTIONS: toc:nil

scripts/bralibase.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#+TITLE: Test kalign on BAliBASE
22
#+AUTHOR: Timo Lassmann
3-
#+EMAIL: timo.lassmann@telethonkids.org.au
3+
#+EMAIL: timolassmann@icloud.com
44
#+DATE: 2019-04-23
55
#+LATEX_CLASS: report
66
#+OPTIONS: toc:nil

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)