From 3a64572793eafa258e1cca51025cbba2c0023b33 Mon Sep 17 00:00:00 2001 From: shreyasun Date: Fri, 31 May 2024 13:48:50 -0700 Subject: [PATCH] Removed +1 from width, however it's introducing a gap --- src/util/tubemap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/tubemap.js b/src/util/tubemap.js index 8d38a9a5..3e943f0e 100644 --- a/src/util/tubemap.js +++ b/src/util/tubemap.js @@ -3784,7 +3784,7 @@ function drawTrackRectangles(rectangles, type, groupTrack) { .append("rect") .attr("x", (d) => d.xStart) .attr("y", (d) => d.yStart) - .attr("width", (d) => d.xEnd - d.xStart + 1) + .attr("width", (d) => d.xEnd - d.xStart) .attr("height", (d) => d.yEnd - d.yStart + 1) .style("fill", (d) => d.color) .attr("trackID", (d) => d.id)