Skip to content

Commit

Permalink
Merge pull request #2 from jonassibbesen/bidirec-path-ids
Browse files Browse the repository at this point in the history
Fix path id issue when using bidirectional gbwt
  • Loading branch information
jonassibbesen authored May 12, 2020
2 parents 343b278 + b8f176e commit d4ae61c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/paths_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,12 @@ string PathsIndex::pathName(const uint32_t path_id) const {
return sstream.str();
}

uint32_t PathsIndex::pathLength(const uint32_t path_id) const {
uint32_t PathsIndex::pathLength(uint32_t path_id) const {

if (index_.bidirectional()) {

path_id = gbwt::Path::encode(path_id, false);
}

uint32_t path_length = 0;

Expand Down
2 changes: 1 addition & 1 deletion src/paths_index.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class PathsIndex {
uint32_t nodeLength(const uint32_t node_id) const;

string pathName(const uint32_t path_id) const;
uint32_t pathLength(const uint32_t path_id) const;
uint32_t pathLength(uint32_t path_id) const;
double effectivePathLength(const uint32_t path_id, const FragmentLengthDist & fragment_length_dist) const;

private:
Expand Down

0 comments on commit d4ae61c

Please sign in to comment.