@datagrok/bio 2.26.2 → 2.26.5
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/CHANGELOG.md +16 -0
- package/dist/284.js.map +1 -1
- package/dist/455.js.map +1 -1
- package/dist/705.js +1 -1
- package/dist/705.js.map +1 -1
- package/dist/980.js.map +1 -1
- package/dist/package-test.js +2 -2
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +2 -2
- package/dist/package.js.map +1 -1
- package/package.json +5 -5
- package/src/analysis/sequence-activity-cliffs.ts +12 -0
- package/src/package-api.ts +13 -1
- package/src/package-test.ts +1 -0
- package/src/package.g.ts +35 -0
- package/src/package.ts +163 -56
- package/src/tests/projects-tests.ts +202 -0
- package/src/utils/cell-renderer.ts +4 -2
- package/src/utils/convert.ts +9 -3
- package/src/utils/monomer-cell-renderer.ts +40 -3
- package/src/utils/seq-helper/seq-handler.ts +18 -8
- package/test-console-output-1.log +748 -583
- package/test-record-1.mp4 +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Bio changelog
|
|
2
2
|
|
|
3
|
+
## 2.26.4 (2026-03-20)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Liabilities: Added separator support
|
|
8
|
+
* Sequence Difference Renderer: Added support for custom notations
|
|
9
|
+
* Added draggable sequence column header
|
|
10
|
+
* Improved explicit notation conversion and detection
|
|
11
|
+
* Added sequence column input with region cutting
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* VD Regions viewer no longer shows errors
|
|
16
|
+
* Custom difference columns are now correctly restored
|
|
17
|
+
* Tag pickup for datasync projects now works correctly
|
|
18
|
+
|
|
3
19
|
## 2.26.0 (2026-03-04)
|
|
4
20
|
|
|
5
21
|
* Antibodies support: Numbering schemes, highlighting, allignment, liabilities detection, extracting regions, and more.
|