@datagrok/peptides 1.15.3 → 1.16.0
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 +14 -0
- package/dist/package-test.js +2 -2
- package/dist/package.js +2 -2
- package/package.json +1 -1
- package/src/model.ts +21 -196
- package/src/tests/model.ts +2 -1
- package/src/tests/table-view.ts +2 -1
- package/src/tests/viewers.ts +5 -4
- package/src/utils/algorithms.ts +13 -111
- package/src/utils/cell-renderer.ts +122 -6
- package/src/utils/constants.ts +1 -0
- package/src/utils/statistics.ts +38 -1
- package/src/utils/tooltips.ts +78 -0
- package/src/utils/types.ts +2 -0
- package/src/viewers/logo-summary.ts +18 -4
- package/src/viewers/sar-viewer.ts +53 -8
- package/src/widgets/distribution.ts +9 -6
- package/src/widgets/selection.ts +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
+
## 1.16.0 (2023-11-05)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Added Select All and Desect All functionality to all viewers.
|
|
8
|
+
* Added Mean activity column for the Most Potent Residues viewer.
|
|
9
|
+
* Added Mean activity to tooltips.
|
|
10
|
+
* Added WebLogo to Selection table.
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* Fixed Logo Summary Table tooltip wouldn't show if analysis table doesn't contain column names 'Cluster'.
|
|
15
|
+
* Fixed tooltips would show irrelevant info.
|
|
16
|
+
|
|
3
17
|
## 1.15.3 (2023-10-26)
|
|
4
18
|
|
|
5
19
|
### Bug Fixes
|