Skip to content

Commit 207243c

Browse files
committed
Release v0.2.0
1 parent ba737dc commit 207243c

3 files changed

Lines changed: 19 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9-
[Unreleased]: https://github.com/zellerlab/IGUA/compare/v0.1.0...HEAD
9+
[Unreleased]: https://github.com/zellerlab/IGUA/compare/v0.2.0...HEAD
10+
11+
12+
## [v0.2.0] - 2026-02-17
13+
[v0.2.0]: https://github.com/zellerlab/IGUA/compare/v0.1.0...v0.2.0
14+
15+
### Added
16+
- Public API to configure and run IGUA from Python code.
17+
- Support for antiSMASH GenBank and Zip files.
18+
- Option to disable weighing by protein length in distance matrix creation.
19+
- Linear clustering method inspired by `mmseqs linclust` as an alternative to hierarchical clustering.
20+
21+
### Changed
22+
- Rename flags in CLI to select the dataset type.
23+
- Improve handling of temporary directory in CLI and pipeline code.
1024

1125

1226
## [v0.1.0] - 2025-05-06

pkg/singularity/igua.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ From: alpine:3.21.3
3030

3131
%labels
3232
Author martin.larralde@embl.de
33-
Version v0.1.0
33+
Version v0.2.0
3434

3535
%help
3636
This is a basic container wrapping IGUA and MMseqs2 for convenience.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "igua"
7-
version = "0.2.0-dev.1"
7+
version = "0.2.0"
88
description = "Iterative Gene clUster Analysis, a high-throughput method for gene cluster family identification."
99
readme = 'README.md'
1010
requires-python = ">=3.8"
@@ -47,9 +47,9 @@ dependencies = [
4747
"Homepage" = "https://github.com/zellerlab/IGUA/"
4848
"Bug Tracker" = "https://github.com/zellerlab/IGUA/issues"
4949
"Changelog" = "https://github.com/zellerlab/IGUA/blob/master/CHANGELOG.md"
50-
# "Coverage" = "https://codecov.io/gh/zellerlab/IGUA/"
5150
"Builds" = "https://github.com/zellerlab/IGUA/actions/"
5251
"PyPI" = "https://pypi.org/project/IGUA"
52+
"Preprint" = "https://www.biorxiv.org/content/10.1101/2025.05.15.654203v1"
5353

5454
[project.scripts]
5555
igua = "igua.cli:main"
@@ -63,7 +63,7 @@ module-name = "igua.hca"
6363
[tool.cibuildwheel]
6464
skip = ["*-musllinux_i686"]
6565
before-build = "pip install maturin"
66-
#test-command = "python -m unittest tests -v"
66+
#test-command = "cd {project} && python -m unittest discover -v"
6767
build-verbosity = 1
6868
free-threaded-support = false
6969

0 commit comments

Comments
 (0)