Skip to content

Commit

Permalink
Specify the scale from 0 to maxValue for base quality.
Browse files Browse the repository at this point in the history
  • Loading branch information
nirav99 committed Dec 1, 2011
1 parent 9ed592a commit f3dbbdc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/analyzer/BAMAnalyzer/QualPerPosnCalculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ void calculateResult()
}
if(p != null)
{
p.setYScale(yRange.minValue, yRange.maxValue + 10);
// p.setYScale(yRange.minValue, yRange.maxValue + 10);
p.setYScale(0, yRange.maxValue + 10);
p.plotGraph();
}
}
Expand Down

0 comments on commit f3dbbdc

Please sign in to comment.