Skip to content

Commit

Permalink
Merge branch 'master' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
szpiech committed Sep 12, 2014
2 parents 541e419 + b4b2ebc commit 82051e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/selscan-main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2219,7 +2219,7 @@ void calc_xpihh(void *order)
{
//sprintf(digit, "%d", data1[hap][locus]);
haplotypeList1[hap] = data1[hap][locus];
derivedCount1 += data1[hap][locus];
derivedCount1 += ( data1[hap][locus] == '1' ) ? 1 : 0;

//Pooled
haplotypeListPooled[hap] = data1[hap][locus];
Expand All @@ -2229,7 +2229,7 @@ void calc_xpihh(void *order)
{
//sprintf(digit, "%d", data2[hap - nhaps1][locus]);
haplotypeList2[hap - nhaps1] = data2[hap - nhaps1][locus];
derivedCount2 += data2[hap - nhaps1][locus];
derivedCount2 += ( data2[hap - nhaps1][locus] == '1' ) ? 1 : 0;

//Pooled
haplotypeListPooled[hap] = data2[hap - nhaps1][locus];
Expand Down

0 comments on commit 82051e9

Please sign in to comment.