@datagrok/peptides 1.17.10 → 1.17.12
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 +23 -4
- package/dist/301.js +2 -2
- package/dist/997.js +2 -2
- package/dist/package-test.js +2 -2
- package/dist/package.js +2 -2
- package/package.json +8 -8
- package/src/model.ts +6 -4
- 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/manual-alignment.ts +4 -5
- package/src/widgets/mutation-cliffs.ts +64 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
+
## 1.17.12 (2024-03-30)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* #2707: Add original and canonical to ISeqSplitted
|
|
8
|
+
|
|
9
|
+
## 1.17.11 (2024-03-12)
|
|
10
|
+
|
|
11
|
+
* Fix context panel issues with mutation cliff pairs.
|
|
12
|
+
* Fix filter crashing app and never recovering.
|
|
13
|
+
* Precompute mutation cliffs statistics for correct rendering.
|
|
14
|
+
* Use mutation cliffs statistics for rendering (instead of invariant map data)
|
|
15
|
+
* Use Count and mean difference for size and color of mutation cliffs table.
|
|
16
|
+
* Correct tooltip for mutation cliffs table to use mutation cliffs stats.
|
|
17
|
+
|
|
3
18
|
## 1.17.10 (2024-02-29)
|
|
4
19
|
|
|
5
20
|
Fix context panel crashing and never recovering
|
|
@@ -123,7 +138,8 @@ Added MCL clustering to peptide analysis.
|
|
|
123
138
|
|
|
124
139
|
### Features
|
|
125
140
|
|
|
126
|
-
* Added keyboard navigation to Logo Summary Table, Monomer-Position, Most Potent Residues viewers and Mutation Cliff
|
|
141
|
+
* Added keyboard navigation to Logo Summary Table, Monomer-Position, Most Potent Residues viewers and Mutation Cliff
|
|
142
|
+
pairs panel.
|
|
127
143
|
* Added icon to expand grids in property panel to fullscreen.
|
|
128
144
|
|
|
129
145
|
### Bug Fixes
|
|
@@ -159,7 +175,8 @@ Added MCL clustering to peptide analysis.
|
|
|
159
175
|
* Monomer-Position and Most Potent Residues: Circle size is now based on the absolute value of mean difference.
|
|
160
176
|
* Scaling default colors (blue for low values and red for high) in Monomer-Position viewer.
|
|
161
177
|
* Highlight rows on mouse over Monomer-Position, Most Potent Residues, Logo Summary Table and WebLogo in the header.
|
|
162
|
-
* Changed viewer interactivity to match the platform defaults. Learn more about viewer
|
|
178
|
+
* Changed viewer interactivity to match the platform defaults. Learn more about viewer
|
|
179
|
+
hotkeys [here](https://datagrok.ai/help/visualize/viewers/#selection).
|
|
163
180
|
* Accordion with actions, mutation cliffs pairs, distribution and selection panels now shows on any selection.
|
|
164
181
|
* Removed steps from tutorial.
|
|
165
182
|
* Ignore rows with missing values when starting the analysis.
|
|
@@ -237,8 +254,10 @@ This release focuses on improving analysis stability and usability.
|
|
|
237
254
|
|
|
238
255
|
* Improved activity distribution plots to show selected vs. all.
|
|
239
256
|
* Added position number in main table view column headers.
|
|
240
|
-
* The Monomer-Position viewer in the Mutation Cliffs mode now shows the number of unique sequences that have monomer
|
|
241
|
-
|
|
257
|
+
* The Monomer-Position viewer in the Mutation Cliffs mode now shows the number of unique sequences that have monomer
|
|
258
|
+
mutation at the selected position.
|
|
259
|
+
* The Monomer-Position viewer in the Mutation Cliffs mode now selects unique sequences that have monomer mutation at the
|
|
260
|
+
selected position.
|
|
242
261
|
* The Mutation Cliffs panel now shows unique sequences and corresponding values from columns visible in the table view.
|
|
243
262
|
|
|
244
263
|
### Bug Fixes
|