Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jltsiren committed Dec 5, 2023
1 parent 58e22d6 commit acba114
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions include/gbwtgraph/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ struct Version
static std::string str(bool verbose = false);
static void print(std::ostream& out, const std::string& tool_name, bool verbose = false, size_t new_lines = 2);

constexpr static size_t MAJOR_VERSION = 0;
constexpr static size_t MINOR_VERSION = 9;
constexpr static size_t MAJOR_VERSION = 1;
constexpr static size_t MINOR_VERSION = 0;
constexpr static size_t PATCH_VERSION = 0;

constexpr static size_t GBZ_VERSION = 1;
Expand All @@ -120,6 +120,7 @@ struct Version
};

//------------------------------------------------------------------------------

// Because we want to be able to work with path metadata with just the GBWT, we
// expose the utility functions for dealing with it. The packing format only
// has to touch these functions and MetadataBuilder, and some of the GBWTGraph
Expand Down
2 changes: 1 addition & 1 deletion src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const std::string REFERENCE_PATH_SAMPLE_NAME = "_gbwt_ref";

const std::string REFERENCE_SAMPLE_LIST_GBWT_TAG = "reference_samples";
const std::string REFERENCE_SAMPLE_LIST_GFA_TAG = "RS";

// Since spaces are allowed in GFA tags, we can use them as sample name separators.
const char REFERENCE_SAMPLE_LIST_SEPARATOR = ' ';


//------------------------------------------------------------------------------

// Other class variables.
Expand Down

0 comments on commit acba114

Please # to comment.