if (!chrRecorded.equals(chr)) {
throw new RuntimeException("Error paring peak file: " + path +
"<br>Expected: " + chr + " found: " + chrRecorded);
}
int nDataPoints = reader.readInt();
for (int n = 0; n < nDataPoints; n++) {
int start = reader.readInt();
int end = reader.readInt();
float combinedScore = reader.readFloat();
float[] timePointScores = new float[nTimePoints];