Skip to content

Commit

Permalink
copy-pase fix, bubble detection
Browse files Browse the repository at this point in the history
  • Loading branch information
mikolmogorov committed Apr 10, 2023
1 parent 432002d commit 99eba6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flye/__build__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__build__ = 1784
__build__ = 1785
2 changes: 1 addition & 1 deletion src/repeat_graph/haplotype_resolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ int HaplotypeResolver::findHeterozygousLoops()
//loop coverage should be roughly equal or less
if (loop.meanCoverage >
COV_MULT * std::min(entrancePath->meanCoverage,
entrancePath->meanCoverage)) continue;
exitPath->meanCoverage)) continue;

//loop should not be longer than other branches
if (loop.length > std::max(entrancePath->length,
Expand Down

0 comments on commit 99eba6e

Please sign in to comment.