diff --git a/flye/__build__.py b/flye/__build__.py index e7e4c36eb..5c497f71a 100644 --- a/flye/__build__.py +++ b/flye/__build__.py @@ -1 +1 @@ -__build__ = 1784 +__build__ = 1785 diff --git a/src/repeat_graph/haplotype_resolver.cpp b/src/repeat_graph/haplotype_resolver.cpp index 76281080d..f8142b568 100644 --- a/src/repeat_graph/haplotype_resolver.cpp +++ b/src/repeat_graph/haplotype_resolver.cpp @@ -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,