Skip to content

Commit

Permalink
v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasrausch committed Sep 26, 2022
1 parent ddb5da3 commit bb5124f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/tithread.h
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ namespace lorax
uint32_t controlrcov = 0;
if (!getcov(nrun, ccov, i - seedwin, i, controllcov)) continue;
if (!getcov(nrun, ccov, i, i+seedwin, controlrcov)) continue;
if ((controllcov * (c.sdthres / 2) < controlrcov) && (controlrcov > cavgcov + c.sdthres * csdcov)) continue;
if ((controllcov * (c.sdthres / 2) < controlrcov) || (controlrcov > cavgcov + c.sdthres * csdcov)) continue;
if (controlrcov > 0) {
float obsratio = rcov / controlrcov;
if (obsratio / expratio > (c.sdthres / 2)) {
Expand All @@ -359,7 +359,7 @@ namespace lorax
uint32_t controlrcov = 0;
if (!getcov(nrun, ccov, i - seedwin, i, controllcov)) continue;
if (!getcov(nrun, ccov, i, i+seedwin, controlrcov)) continue;
if ((controlrcov * (c.sdthres / 2) < controllcov) && (controllcov > cavgcov + c.sdthres * csdcov)) continue;
if ((controlrcov * (c.sdthres / 2) < controllcov) || (controllcov > cavgcov + c.sdthres * csdcov)) continue;
if (controllcov > 0) {
float obsratio = lcov / controllcov;
if (obsratio / expratio > (c.sdthres / 2)) {
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace lorax
{


std::string loraxVersionNumber = "0.3.2";
std::string loraxVersionNumber = "0.3.5";

inline
void printTitle(std::string const& title)
Expand Down

0 comments on commit bb5124f

Please sign in to comment.