@datagrok/peptides 1.14.1 → 1.15.1
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 +29 -0
- package/dist/196.js +3 -0
- package/dist/196.js.LICENSE.txt +51 -0
- package/dist/209.js +2 -2
- package/dist/361.js +2 -0
- package/dist/381.js +2 -0
- package/dist/436.js +2 -0
- package/dist/694.js +2 -0
- package/dist/831.js +2 -0
- package/dist/868.js +2 -0
- package/dist/package-test.js +3 -2
- package/dist/package-test.js.LICENSE.txt +51 -0
- package/dist/package.js +3 -2
- package/dist/package.js.LICENSE.txt +51 -0
- package/files/help/logo-summary-table.md +23 -0
- package/files/help/monomer-position.md +31 -0
- package/files/help/most-potent-residues.md +17 -0
- package/files/icons/ribbon/logo-summary-viewer.svg +8 -0
- package/files/icons/ribbon/peptide-sar-vertical-viewer.svg +10 -0
- package/files/icons/ribbon/peptide-sar-viewer.svg +11 -0
- package/files/tests/100k.d42 +0 -0
- package/files/tests/200k.d42 +0 -0
- package/files/tests/50k.d42 +0 -0
- package/files/tests/{aligned_5k.d42 → 5k.d42} +0 -0
- package/package.json +5 -5
- package/src/model.ts +85 -175
- package/src/package-test.ts +7 -6
- package/src/tests/benchmarks.ts +95 -0
- package/src/tests/core.ts +4 -75
- package/src/tests/{algorithms.ts → misc.ts} +3 -16
- package/src/tests/model.ts +3 -14
- package/src/tests/table-view.ts +4 -14
- package/src/tests/viewers.ts +7 -1
- package/src/tests/widgets.ts +9 -1
- package/src/utils/algorithms.ts +166 -16
- package/src/utils/cell-renderer.ts +12 -7
- package/src/utils/constants.ts +2 -0
- package/src/utils/misc.ts +2 -1
- package/src/utils/parallel-mutation-cliffs.ts +106 -0
- package/src/utils/types.ts +1 -1
- package/src/viewers/logo-summary.ts +9 -6
- package/src/viewers/sar-viewer.ts +28 -14
- package/src/widgets/mutation-cliffs.ts +2 -2
- package/src/widgets/peptides.ts +15 -5
- package/src/widgets/selection.ts +9 -0
- package/src/widgets/settings.ts +3 -8
- package/src/workers/mutation-cliffs-worker.ts +77 -0
- package/dist/521.js +0 -2
- package/dist/677.js +0 -2
- package/dist/729.js +0 -2
- package/dist/959.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
+
## 1.15.1 (WIP)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Color-coding Sequence space by scaled activity.
|
|
8
|
+
* Optimized Mutation Cliffs calculations to use workers.
|
|
9
|
+
* Hid WebLogo positions in Logo Summary Table.
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Fixed Invariant Map color coding wouldn't change when changing color column.
|
|
14
|
+
|
|
15
|
+
## 1.15.0 (2023-10-12)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* Added Sequence Space viewer.
|
|
20
|
+
* Selection panel columns now inherti width from main table.
|
|
21
|
+
* Invarian Map cell values now rendered with contrast color relative to background.
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* Fixed WebLogo in header margin width.
|
|
26
|
+
* Widgets in Context panel will now fill all the available width.
|
|
27
|
+
* Fixed LST rows not resizable.
|
|
28
|
+
* Fixed selection inconsistency.
|
|
29
|
+
* Fixed Most Potent Residues keyboar navigation.
|
|
30
|
+
* Fixed analysis not starting when there are columns of the same name.
|
|
31
|
+
|
|
3
32
|
## 1.14.1 (2023-09-28)
|
|
4
33
|
|
|
5
34
|
### Bug Fixes
|