Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouni Siren committed Sep 18, 2017
1 parent d08acea commit 8356e3e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion include/gbwt/dynamic_gbwt.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class DynamicGBWT
{
public:
typedef DynamicRecord::size_type size_type;
typedef node_type comp_type; // Index of a record in this->bwt.

const static size_type INSERT_BATCH_SIZE = 100 * MILLION; // Nodes.
const static size_type MERGE_BATCH_SIZE = 2000; // Sequences.
Expand Down
1 change: 0 additions & 1 deletion include/gbwt/gbwt.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class GBWT
{
public:
typedef CompressedRecord::size_type size_type;
typedef node_type comp_type; // Index of a record in this->bwt.

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

Expand Down
3 changes: 2 additions & 1 deletion include/gbwt/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ typedef std::uint64_t size_type;
typedef std::uint32_t short_type;
typedef std::uint8_t byte_type;

typedef size_type node_type;
typedef size_type node_type; // Node identifier.
typedef size_type comp_type; // Record identifier, compacted node identifier.
typedef size_type rank_type; // Rank of incoming / outgoing edge.

#ifdef GBWT_SAVE_MEMORY
Expand Down
3 changes: 1 addition & 2 deletions merge_gbwt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,7 @@ printUsage(int exit_code)
std::cerr << " -b N Use batches of N sequences for merging (default "
<< DynamicGBWT::MERGE_BATCH_SIZE << ")" << std::endl;
std::cerr << std::endl;
std::cerr << "Use base names for the inputs and the output. Using compressed GBWTs from input2" << std::endl;
std::cerr << "onwards saves memory but is slower." << std::endl;
std::cerr << "Use base names for the inputs and the output." << std::endl;
std::cerr << std::endl;

std::exit(exit_code);
Expand Down

0 comments on commit 8356e3e

Please sign in to comment.