Skip to content

Commit d697645

Browse files
committed
RLS Version 2.1.0
Main new feature is adding support for using output of strobealign-aemb. Use of the `SemiBin` command (instead of `SemiBin2`) will continue to work, but print a warning and set a delay to ask users to upgrade. Full ChangeLog - SemiBin: Support running SemiBin with strobealign-aemb (`--abundance`/`-a`) - citation: Add citation subcommand - SemiBin1: Introduce separate SemiBin1 command - internal: Code simplification and refactor - deprecation: Deprecate `--orf-finder=fraggenescan` option - Update abundance normalization - SemiBin: do not use more processes than can be taken advantage of (#155)
1 parent da05073 commit d697645

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

ChangeLog

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Unreleased
2+
* SemiBin: Support running SemiBin with strobealign-aemb
3+
(--abundance/-a)
24
* citation: Add citation subcommand
35
* SemiBin1: Introduce separate SemiBin1 command
46
* internal: Code simplification and refactor
57
* deprecation: Deprecate --orf-finder=fraggenescan option
68
* Update abundance normalization
79
* SemiBin: do not use more processes than can be taken advantage of (#155)
8-
* Support running SemiBin with strobealign-aemb
910

1011
Version 2.0.2 Oct 31 2023 by BigDataBiology
1112
* multi_easy_bin: Fix multi_easy_bin with --write-pre-recluster (#128)

SemiBin/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def parse_args(args, is_semibin2):
295295
dest='bams',
296296
default=None,
297297
)
298-
p.add_argument('-a', '--abundance',
298+
p.add_argument('-a', '--abundance', '--abundances',
299299
required=False,
300300
nargs='*',
301301
help='Path to the abundance file from strobealign-aemb. This can only be used when samples used in binning above or equal 5.',

docs/whatsnew.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# What's New
22

3+
## Version 2.1.0
4+
5+
*Released Mar 6, 2024*
6+
7+
Main new feature is adding support for using output of strobealign-aemb.
8+
9+
Use of the `SemiBin` command (instead of `SemiBin2`) will continue to work, but
10+
print a warning and set a delay to ask users to upgrade.
11+
12+
### User-visible changes
13+
14+
- Support running SemiBin with [strobealign-aemb](https://github.com/ksahlin/strobealign/releases/tag/v0.13.0) (`--abundance`/`-a`)
15+
- Add `citation` subcommand
16+
- Introduce separate `SemiBin1` command as use of `SemiBin` is now deprecated and will trigger a warning
17+
18+
### Internal improvements
19+
- Code simplification and refactor
20+
- deprecation: Deprecate --orf-finder=fraggenescan option
21+
- Update abundance normalization
22+
23+
### Bugfixes
24+
- SemiBin: do not use more processes than can be taken advantage of [#155](https://github.com/BigDataBiology/SemiBin/issues/155)
25+
326
## Version 2.0.2
427

528
*Released Oct 31, 2023*

0 commit comments

Comments
 (0)