Skip to content

Commit 3ca9141

Browse files
committed
Release v0.10.1
1 parent 9410b40 commit 3ca9141

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8-
[Unreleased]: https://github.com/zellerlab/GECCO/compare/v0.9.10...master
8+
[Unreleased]: https://github.com/zellerlab/GECCO/compare/v0.10.1...master
9+
10+
## [v0.10.1] - 2025-11-26
11+
[v0.10.1]: https://github.com/zellerlab/GECCO/compare/v0.10.0...v0.10.1
12+
13+
### Changed
14+
- Remove unneeded `psutil` package dependency.
15+
16+
### Fixed
17+
- Missing `--output` flag in `gecco convert` command ([#19](https://github.com/zellerlab/GECCO/issues/19)).
918

1019

1120
## [v0.10.0] - 2025-10-17

galaxy/gecco.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<tool id="gecco" name="GECCO" version="0.10.0" python_template_version="3.5">
2+
<tool id="gecco" name="GECCO" version="0.10.1" python_template_version="3.5">
33
<description>is a fast and scalable method for identifying putative novel Biosynthetic Gene Clusters (BGCs) in genomic and metagenomic data using Conditional Random Fields (CRFs).</description>
44
<creator>
5-
<organization name="Zeller Team" url="https://www.embl.org/groups/zeller/"/>
5+
<organization name="Zeller Lab" url="https://zellerlab.org/"/>
66
</creator>
77
<edam_topics>
88
<edam_topic>topic_0080</edam_topic>
@@ -11,7 +11,7 @@
1111
<edam_operation>operation_0415</edam_operation>
1212
</edam_operations>
1313
<requirements>
14-
<requirement type="package" version="0.10.0">gecco</requirement>
14+
<requirement type="package" version="0.10.1">gecco</requirement>
1515
</requirements>
1616
<version_command>gecco --version</version_command>
1717
<command detect_errors="aggressive"><![CDATA[

pkg/aur/PKGBUILD.in

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ pkgdesc="Gene Cluster prediction with Conditional random fields."
99
url="https://gecco.embl.de"
1010
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
1111
license=("GPL-3.0-only")
12-
depends=('python' 'python-crfsuite' 'python-sklearn-crfsuite' 'python-pyrodigal' 'python-pyhmmer' 'python-biopython' 'python-docopt' 'python-numpy' 'python-polars' 'python-rich' 'python-scipy' 'python-scikit-learn')
12+
depends=('python' 'python-biopython' 'python-numpy' 'python-polars' 'python-pyhmmer' 'python-pyrodigal' 'python-rich' 'python-rich-argparse' 'python-scikit-learn' 'python-scipy' 'python-sklearn-crfsuite')
1313
makedepends=('python-setuptools' 'python-build' 'python-installer')
14-
optdepends=('python-fisher: variable selection with Fisher exact test'
15-
'python-statsmodels: variable selection with Fisher exact test')
14+
optdepends=('python-statsmodels: variable selection with Fisher exact test')
1615
source=("https://files.pythonhosted.org/packages/source/${_pyname::1}/${_pyname}/${_pyname}-$pkgver.tar.gz")
1716
sha256sums=(%sha256sum)
1817

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ requires = [
44
'setuptools >=39.2',
55
'rich >=12.4.0',
66
'pyhmmer ~=0.11.0',
7-
'wheel >=0.30'
87
]
98

109
[project]

0 commit comments

Comments
 (0)