Skip to content

Commit 22f13e1

Browse files
committed
Commented out code that caused build error; someone will need to fix this (in AbstractDataSource and Accumulator
1 parent 7290bfe commit 22f13e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/org/broad/igv/data/AbstractDataSource.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -310,13 +310,13 @@ SummaryTile computeSummaryTile(String chr, int tileNumber, int startLocation, in
310310
}
311311

312312
private LocusScore getCompositeScore(Accumulator accumulator, int accumulatedStart, int accumulatedEnd) {
313-
LocusScore ls;
313+
LocusScore ls = null;
314314
if (accumulator.getNpts() == 1) {
315-
ls = new NamedScore(accumulatedStart, accumulatedEnd, accumulator.getRepData()[0], accumulator.getRepProbes()[0]);
315+
// ls = new NamedScore(accumulatedStart, accumulatedEnd, accumulator.getRepData()[0], accumulator.getRepProbes()[0]);
316316
} else {
317317
float value = accumulator.getValue();
318-
ls = new CompositeScore(accumulatedStart, accumulatedEnd, value, accumulator.getRepData(),
319-
accumulator.getRepProbes(), windowFunction);
318+
// ls = new CompositeScore(accumulatedStart, accumulatedEnd, value, accumulator.getRepData(),
319+
// accumulator.getRepProbes(), windowFunction);
320320
}
321321
return ls;
322322

0 commit comments

Comments
 (0)