Skip to content

Commit

Permalink
konnector.cc: update method name (getStartKmerPos2 -> getStartKmerPos)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Vandervalk committed Apr 7, 2015
1 parent 2e14320 commit 723a6ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Konnector/konnector.cc
Expand Up @@ -323,7 +323,7 @@ static bool extendRead(Sequence& seq, unsigned k, const Graph& g)
* a dead end on a false positive kmer
*/
const unsigned runLengthHint = 3;
unsigned startPos = getStartKmerPos2(seq, k, FORWARD, g,
unsigned startPos = getStartKmerPos(seq, k, FORWARD, g,
runLengthHint);
if (startPos != NO_MATCH) {
assert(startPos <= seq.length() - k);
Expand All @@ -336,7 +336,7 @@ static bool extendRead(Sequence& seq, unsigned k, const Graph& g)
}
}

startPos = getStartKmerPos2(seq, k, REVERSE, g, runLengthHint);
startPos = getStartKmerPos(seq, k, REVERSE, g, runLengthHint);
if (startPos != NO_MATCH) {
assert(startPos <= seq.length() - k);
result = extendSeq(seq, REVERSE, startPos, k, g,
Expand Down

0 comments on commit 723a6ef

Please sign in to comment.