Skip to content

Commit

Permalink
preparing release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clemaitre committed Jul 6, 2018
1 parent 898cf67 commit f260f04
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
--------------------------------------------------------------------------------
## [Unreleased]

--------------------------------------------------------------------------------
## [2.2.0] - 2018-07-06

* A nice novel feature: insertion variants are now output in vcf format! and with left-normalization (ie. if several equivalent positions are possible for a given insertion event, the left-most is output and the size of the ambiguity is indicated).
* Some improvements and bug fixes:
* faster graph loading in fill module;
* if multiple inserted sequence solutions, better handling of very similar ones, the number of output solutions can be reduced;
* better handling of N stretches in the reference genome, resulting in less False Positive calls in find module;
* better recall for very small heterozygous insertion variants (bug fix when the insertion is size smaller or equal than the ambiguity size).
* a CI simple test for the Fill module with option `-contig`.


--------------------------------------------------------------------------------
## [2.1.0] - 2018-06-13

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,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 1)
SET (gatb-tool_VERSION_MINOR 2)
SET (gatb-tool_VERSION_PATCH 0)

# But, it is possible to define another release number during a local build
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.1.0";
static const char* MTG_VERSION = "2.2.0";

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

0 comments on commit f260f04

Please sign in to comment.