From 9a0a422019b1514a009f39e13c63b39670fe4f7b Mon Sep 17 00:00:00 2001 From: Nikolai Romashchenko Date: Tue, 19 Nov 2019 16:21:49 +0100 Subject: [PATCH] Release v0.1.2 --- CHANGELOG.txt | 9 +++++++-- CMakeLists.txt | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6cc25cb..13577c5 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,9 @@ -0.1.1 +v0.1.2 +- The database name convention has changed to be consistent to the latest versions of RAPPASv1 (java) +- The default omega value now is 1.5 +- Updated core to v0.1.7, which supports ambiguous bases + +v0.1.1 ------ - New construction algorithm: now the construction is done by completing two steps. In the first one, hashmaps of group nodes are built independently and stored on disk in ${workdir}/hashmaps. @@ -6,6 +11,6 @@ After, they are merged into a database hashmap. - AR Probability matrix is destroyed after the first stage of the algorithm. It makes the peak RAM consumption approximately to be max(proba matrix size, final database size). -0.1.0 +v0.1.0 ------ First released version. diff --git a/CMakeLists.txt b/CMakeLists.txt index 2dc77db..df3349c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(rappas_build VERSION 0.1.1 LANGUAGES CXX) +project(rappas_build VERSION 0.1.2 LANGUAGES CXX) # default build type Release if (NOT CMAKE_BUILD_TYPE)