@datagrok/bio 2.4.53 → 2.4.54
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.
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +2 -2
- package/src/utils/cell-renderer.ts +1 -1
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "Leonid Stolbov",
|
|
6
6
|
"email": "lstolbov@datagrok.ai"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.4.
|
|
8
|
+
"version": "2.4.54",
|
|
9
9
|
"description": "Bioinformatics support (import/export of sequences, conversion, visualization, analysis). [See more](https://github.com/datagrok-ai/public/blob/master/packages/Bio/README.md) for details.",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@biowasm/aioli": "^3.1.0",
|
|
25
|
-
"@datagrok-libraries/bio": "^5.32.
|
|
25
|
+
"@datagrok-libraries/bio": "^5.32.10",
|
|
26
26
|
"@datagrok-libraries/chem-meta": "^1.0.1",
|
|
27
27
|
"@datagrok-libraries/ml": "^6.3.39",
|
|
28
28
|
"@datagrok-libraries/tutorials": "^1.3.2",
|
|
@@ -313,7 +313,7 @@ export function drawMoleculeDifferenceOnCanvas(
|
|
|
313
313
|
w = textWidth + subParts1.length * 4;
|
|
314
314
|
g.canvas.width = textWidth + subParts1.length * 4;
|
|
315
315
|
}
|
|
316
|
-
let updatedX = Math.max(x, x + (w - (textWidth + subParts1.length * 4)) / 2);
|
|
316
|
+
let updatedX = Math.max(x, x + (w - (textWidth + subParts1.length * 4)) / 2) + 5;
|
|
317
317
|
// 28 is the height of the two substitutions on top of each other + space
|
|
318
318
|
const updatedY = Math.max(y, y + (h - 28) / 2);
|
|
319
319
|
|