higlass 2.1.5 → 2.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -106,6 +106,7 @@ class Tiled1DPixiTrack extends TiledPixiTrack {
106
106
  this._xScale,
107
107
  this.tilesetInfo.min_pos[0],
108
108
  this.tilesetInfo.max_pos[0],
109
+ this.tilesetInfo.bins_per_dimension || this.tilesetInfo.tile_size,
109
110
  );
110
111
 
111
112
  const tiles = xTiles.map((x) => [this.zoomLevel, x]);
@@ -238,6 +238,7 @@ const calculate1DVisibleTiles = (tilesetInfo, scale) => {
238
238
  scale,
239
239
  tilesetInfo.min_pos[0],
240
240
  tilesetInfo.max_pos[0],
241
+ tilesetInfo.bins_per_dimension || tilesetInfo.tile_size,
241
242
  );
242
243
 
243
244
  const tiles = xTiles.map((x) => [zoomLevel, x]);