You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Set for storing allele-types and vector for storing reported alleles, count occurences in vector for all elements in set to get frequency of each allele
1561
1561
std::set<float> presentAlleles;
1562
1562
vector<float> allAlleles;
1563
-
int winnerFreq, secondFreq, currentFreq;
1564
-
float winner, second;
1563
+
int winnerFreq = 0, secondFreq = 0, currentFreq = 0;
1564
+
float winner = 0, second = 0;
1565
1565
//Loop over map of markers and look at all reads for each of them
0 commit comments