@datagrok/peptides 1.17.11 → 1.17.13
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 +20 -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 +34 -9
- package/src/package.ts +8 -0
- package/src/utils/types.ts +1 -0
- package/src/viewers/cluster-max-activity-viewer.ts +228 -0
- package/src/viewers/logo-summary.ts +1 -1
- package/src/widgets/manual-alignment.ts +4 -5
- package/src/widgets/settings.ts +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
+
## 1.17.13 (2024-04-02)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Add max activity vs cluster size viewer.
|
|
8
|
+
|
|
9
|
+
## 1.17.12 (2024-03-30)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* #2707: Add original and canonical to ISeqSplitted
|
|
14
|
+
|
|
3
15
|
## 1.17.11 (2024-03-12)
|
|
4
16
|
|
|
5
17
|
* Fix context panel issues with mutation cliff pairs.
|
|
@@ -132,7 +144,8 @@ Added MCL clustering to peptide analysis.
|
|
|
132
144
|
|
|
133
145
|
### Features
|
|
134
146
|
|
|
135
|
-
* Added keyboard navigation to Logo Summary Table, Monomer-Position, Most Potent Residues viewers and Mutation Cliff
|
|
147
|
+
* Added keyboard navigation to Logo Summary Table, Monomer-Position, Most Potent Residues viewers and Mutation Cliff
|
|
148
|
+
pairs panel.
|
|
136
149
|
* Added icon to expand grids in property panel to fullscreen.
|
|
137
150
|
|
|
138
151
|
### Bug Fixes
|
|
@@ -168,7 +181,8 @@ Added MCL clustering to peptide analysis.
|
|
|
168
181
|
* Monomer-Position and Most Potent Residues: Circle size is now based on the absolute value of mean difference.
|
|
169
182
|
* Scaling default colors (blue for low values and red for high) in Monomer-Position viewer.
|
|
170
183
|
* Highlight rows on mouse over Monomer-Position, Most Potent Residues, Logo Summary Table and WebLogo in the header.
|
|
171
|
-
* Changed viewer interactivity to match the platform defaults. Learn more about viewer
|
|
184
|
+
* Changed viewer interactivity to match the platform defaults. Learn more about viewer
|
|
185
|
+
hotkeys [here](https://datagrok.ai/help/visualize/viewers/#selection).
|
|
172
186
|
* Accordion with actions, mutation cliffs pairs, distribution and selection panels now shows on any selection.
|
|
173
187
|
* Removed steps from tutorial.
|
|
174
188
|
* Ignore rows with missing values when starting the analysis.
|
|
@@ -246,8 +260,10 @@ This release focuses on improving analysis stability and usability.
|
|
|
246
260
|
|
|
247
261
|
* Improved activity distribution plots to show selected vs. all.
|
|
248
262
|
* Added position number in main table view column headers.
|
|
249
|
-
* The Monomer-Position viewer in the Mutation Cliffs mode now shows the number of unique sequences that have monomer
|
|
250
|
-
|
|
263
|
+
* The Monomer-Position viewer in the Mutation Cliffs mode now shows the number of unique sequences that have monomer
|
|
264
|
+
mutation at the selected position.
|
|
265
|
+
* The Monomer-Position viewer in the Mutation Cliffs mode now selects unique sequences that have monomer mutation at the
|
|
266
|
+
selected position.
|
|
251
267
|
* The Mutation Cliffs panel now shows unique sequences and corresponding values from columns visible in the table view.
|
|
252
268
|
|
|
253
269
|
### Bug Fixes
|