Skip to content

Commit f260f04

Browse files
committedJul 6, 2018
preparing release 2.2.0
1 parent 898cf67 commit f260f04

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed
 

‎CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
--------------------------------------------------------------------------------
44
## [Unreleased]
55

6+
--------------------------------------------------------------------------------
7+
## [2.2.0] - 2018-07-06
8+
9+
* 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).
10+
* Some improvements and bug fixes:
11+
* faster graph loading in fill module;
12+
* if multiple inserted sequence solutions, better handling of very similar ones, the number of output solutions can be reduced;
13+
* better handling of N stretches in the reference genome, resulting in less False Positive calls in find module;
14+
* better recall for very small heterozygous insertion variants (bug fix when the insertion is size smaller or equal than the ambiguity size).
15+
* a CI simple test for the Fill module with option `-contig`.
16+
17+
618
--------------------------------------------------------------------------------
719
## [2.1.0] - 2018-06-13
820

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cmake_minimum_required(VERSION 3.1)
2727
################################################################################
2828
# The default version number is the latest official build
2929
SET (gatb-tool_VERSION_MAJOR 2)
30-
SET (gatb-tool_VERSION_MINOR 1)
30+
SET (gatb-tool_VERSION_MINOR 2)
3131
SET (gatb-tool_VERSION_PATCH 0)
3232

3333
# But, it is possible to define another release number during a local build

‎src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
using namespace std;
2828

29-
static const char* MTG_VERSION = "2.1.0";
29+
static const char* MTG_VERSION = "2.2.0";
3030

3131
static const char* STR_FIND = "find";
3232
static const char* STR_FILL = "fill";

0 commit comments

Comments
 (0)