Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix path id issue when using bidirectional gbwt #2

Merged
merged 1 commit into from
May 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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