Skip to content

Commit

Permalink
prepare v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
clemaitre committed Jun 11, 2021
1 parent 8cee76f commit 0dccfae
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
## [Unreleased]

--------------------------------------------------------------------------------
## [2.2.3] - 2021-06-11

* 2 novel options in the `Fill` (local assembly) module :
* `-fwd-only`: output the first-contig extensions of failed gap-fillings in a separate file, it can be useful for the assembly of the extremities of linear genomes (as in the [MinYS](https://github.com/cguyomar/MinYS) tool)
* `-extend`: do not try in reverse direction if no inserted sequence is assembled (bkpt mode), it can improve the running time and/or help the user controlling the direction of assembly (as in the [MTG-link](https://github.com/anne-gcd/MTG-Link) tool)

--------------------------------------------------------------------------------

## [2.2.2] - 2020-06-19

* A bug fix: updating gatb-core version, notably this fixes a bug in the `fill` module: nodes at extremities of contigs of size exactly `k` were not marked correctly, potentially leading to duplicated contigs in the contig graph. This could prevent exploring some parts of the graph, and if graph exploration parameters where set too large (`-max-nodes` and `-max-length`), it could lead in some rare cases to extreme running times and/or memory consumptions. This should no longer happen now.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cmake_minimum_required(VERSION 3.1)
# The default version number is the latest official build
SET (gatb-tool_VERSION_MAJOR 2)
SET (gatb-tool_VERSION_MINOR 2)
SET (gatb-tool_VERSION_PATCH 2)
SET (gatb-tool_VERSION_PATCH 3)

# But, it is possible to define another release number during a local build
IF (DEFINED MAJOR)
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

using namespace std;

static const char* MTG_VERSION = "2.2.2";
static const char* MTG_VERSION = "2.2.3";

static const char* STR_FIND = "find";
static const char* STR_FILL = "fill";
Expand Down

0 comments on commit 0dccfae

Please sign in to comment.