@datagrok/peptides 1.17.10 → 1.17.11
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 +9 -0
- package/dist/package-test.js +2 -2
- package/dist/package.js +2 -2
- package/package.json +1 -1
- package/src/model.ts +2 -0
- package/src/tests/benchmarks.ts +1 -1
- package/src/utils/algorithms.ts +38 -0
- package/src/utils/cell-renderer.ts +55 -29
- package/src/utils/constants.ts +5 -0
- package/src/utils/misc.ts +62 -1
- package/src/utils/tooltips.ts +40 -16
- package/src/utils/types.ts +11 -2
- package/src/viewers/sar-viewer.ts +159 -31
- package/src/widgets/distribution.ts +1 -1
- package/src/widgets/mutation-cliffs.ts +64 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
+
## 1.17.11 (2024-03-12)
|
|
4
|
+
|
|
5
|
+
* Fix context panel issues with mutation cliff pairs.
|
|
6
|
+
* Fix filter crashing app and never recovering.
|
|
7
|
+
* Precompute mutation cliffs statistics for correct rendering.
|
|
8
|
+
* Use mutation cliffs statistics for rendering (instead of invariant map data)
|
|
9
|
+
* Use Count and mean difference for size and color of mutation cliffs table.
|
|
10
|
+
* Correct tooltip for mutation cliffs table to use mutation cliffs stats.
|
|
11
|
+
|
|
3
12
|
## 1.17.10 (2024-02-29)
|
|
4
13
|
|
|
5
14
|
Fix context panel crashing and never recovering
|