String idxPath = doStandardIndex(bedFile, "idx");
Index idx = IndexFactory.loadIndex(idxPath);
List<Block> blocks = idx.getBlocks("chr1", 100, 200);
Block block = blocks.get(0);
assertEquals("Unexpected start position ", 0, block.getStartPosition());
}