Permalink
Browse files
*** empty log message ***
- Loading branch information...
Showing
with
2 additions
and
2 deletions.
-
+2
−2
aligner_metrics.h
|
|
@@ -125,8 +125,8 @@ class AlignerMetrics { |
|
|
float hopct = (reads_ > 0) ? (((float)homoReads_)/((float)reads_)) : (0.0);
|
|
|
hopct *= 100.0;
|
|
|
cout << " % homo-polymeric: " << (hopct) << endl;
|
|
|
- float unpct = (reads_ > 0) ? ((float)lowEntReads_/(float)(reads_)) : (0.0);
|
|
|
- unpct *= 100.0;
|
|
|
+ float lopct = (reads_ > 0) ? ((float)lowEntReads_/(float)(reads_)) : (0.0);
|
|
|
+ lopct *= 100.0;
|
|
|
cout << " % low-entropy: " << (lopct) << endl;
|
|
|
float unpct = (reads_ > 0) ? ((float)unalignedReads_/(float)(reads_)) : (0.0);
|
|
|
unpct *= 100.0;
|
|
|
|
0 comments on commit
30c3b60