Skip to content

Commit

Permalink
Core v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolai Romashchenko committed Nov 19, 2019
1 parent 5763d41 commit 6786923
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.1.7
- Fixed a bug in core::to_kmers<one_ambiguity_policy> which lead to encoding ambiguous k-mer incorrectly
- Updated examples

v0.1.6
- core::to_kmers and core::encode now have ambiguity policy. The old behaviour implemented in the core::no_ambiguity_policy
- Implemented core::one_ambiguity_policy which allows one ambiguous base pair per k-mer
Expand Down
2 changes: 1 addition & 1 deletion core/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
project(rappas_core LANGUAGES CXX VERSION 0.1.6)
project(rappas_core LANGUAGES CXX VERSION 0.1.7)

##########################################################################################
# PROTEINS
Expand Down
2 changes: 1 addition & 1 deletion core/include/core/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace core
{
static constexpr auto major = "0";
static constexpr auto minor = "1";
static constexpr auto revision = "6";
static constexpr auto revision = "7";

/// \brief Returns the core version number as a string
static std::string as_string()
Expand Down

0 comments on commit 6786923

Please sign in to comment.