@datagrok/peptides 1.17.22 → 1.17.24
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 +13 -0
- 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/package.ts +0 -1
- package/src/tests/benchmarks.ts +4 -4
- package/src/utils/algorithms.ts +23 -7
- package/src/utils/cell-renderer.ts +10 -2
- package/src/utils/constants.ts +2 -0
- package/src/utils/statistics.ts +18 -10
- package/src/viewers/logo-summary.ts +1 -0
- package/src/viewers/sar-viewer.ts +151 -32
- package/src/widgets/distribution.ts +5 -4
- package/src/widgets/mutation-cliffs.ts +2 -2
- package/src/widgets/settings.ts +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
+
## 1.17.24 (2024-07-29)
|
|
4
|
+
|
|
5
|
+
Fix invariant map values rendering
|
|
6
|
+
|
|
7
|
+
## 1.17.23 (2024-07-29)
|
|
8
|
+
|
|
9
|
+
Added options to invariant map:
|
|
10
|
+
* split selection for targets
|
|
11
|
+
* coloring options via aggregation
|
|
12
|
+
* value aggregation
|
|
13
|
+
* tooltips
|
|
14
|
+
* improved stability
|
|
15
|
+
|
|
3
16
|
## 1.17.22 (2024-07-22)
|
|
4
17
|
|
|
5
18
|
Fix Active peptide selection viewer failing on frame attached.
|