List<LocusScore> wgScores = ds.getSummaryScores(Globals.CHR_ALL, 0, Integer.MAX_VALUE, 0);
for (LocusScore score : wgScores) {
int genomeStart = score.getStart();
ChromosomeCoordinate stCoord = genome.getChromosomeCoordinate(genomeStart);
ChromosomeCoordinate endCoord = genome.getChromosomeCoordinate(score.getEnd());
// Skip "edge" bins that include data from 2 chromosomes. We don't know the expected value for these.
if (stCoord.getChr().equals(endCoord.getChr())) {
String chrName = stCoord.getChr();
double ev = expectedValues.get(chrName);
assertEquals(ev, score.getScore(), 0.001);
}