Skip to content

Commit

Permalink
Fix same issues in "new format" cov as last two cov loading bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
welchr committed May 10, 2024
1 parent de92d92 commit 51f1c0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions raremetal/src/Meta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5179,15 +5179,15 @@ Meta::updateSingleVariantGroupStatsNewFormat(GroupFromAnnotation &group, int stu
int p = markerPosHash.Integer(mkname);
if (p == -1)
{
return;
continue;
}
p--;
p -= m;
String markerName = String(std::to_string(study).c_str()) + ":" + chr[s] + ":" + pos[s];
int skip = SNPexclude.Integer(markerName);
if (skip != -1)
{
return;
continue;
}
int flip = flipSNP.Integer(markerName);
double factor = 1.0;
Expand Down

0 comments on commit 51f1c0d

Please sign in to comment.