@datagrok/peptides 1.11.3 → 1.13.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 +22 -9
- package/dist/535.js +2 -2
- package/dist/package-test.js +2 -2
- package/dist/package.js +2 -2
- package/package.json +7 -7
- package/src/demo/fasta.ts +6 -25
- package/src/model.ts +332 -382
- package/src/package.ts +1 -2
- package/src/tests/core.ts +2 -10
- package/src/tests/table-view.ts +48 -48
- package/src/tests/viewers.ts +15 -13
- package/src/tests/widgets.ts +5 -58
- package/src/utils/cell-renderer.ts +33 -39
- package/src/utils/constants.ts +1 -0
- package/src/utils/misc.ts +2 -15
- package/src/utils/statistics.ts +22 -3
- package/src/utils/types.ts +6 -5
- package/src/viewers/logo-summary.ts +55 -42
- package/src/viewers/sar-viewer.ts +163 -107
- package/src/widgets/distribution.ts +61 -58
- package/src/widgets/manual-alignment.ts +3 -7
- package/src/widgets/mutation-cliffs.ts +2 -2
- package/src/widgets/peptides.ts +26 -18
- package/src/widgets/selection.ts +31 -0
- package/src/widgets/settings.ts +11 -1
- package/src/widgets/similarity.ts +0 -39
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,36 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.13.0 (2023-09-13)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
7
|
+
* Monomer-Position and Most Potent Residues: Circle size is now based on the absolute value of mean difference.
|
|
8
|
+
* Scaling default colors (blue for low values and red for high) in Monomer-Position viewer.
|
|
9
|
+
* Highlight rows on mouse over Monomer-Position, Most Potent Residues, Logo Summary Table and WebLogo in the header.
|
|
10
|
+
* Changed viewer interactivity to match the platform defaults. Learn more about viewer hotkeys [here](https://datagrok.ai/help/visualize/viewers/#selection).
|
|
11
|
+
* Accordion with actions, mutation cliffs pairs, distribution and selection panels now shows on any selection.
|
|
12
|
+
* Removed steps from tutorial.
|
|
13
|
+
* Ignore rows with missing values when starting the analysis.
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* Logo Summary Table: Fixed interaction.
|
|
18
|
+
|
|
19
|
+
## 1.12.0 (2023-08-30)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* Added sequence identity and similairty functionality.
|
|
24
|
+
* Peptides moved to Bio > Analyze > SAR.
|
|
25
|
+
* Added tooltips for all inputs and buttons.
|
|
26
|
+
* Added Selection panel which shows the current selection as a separate table.
|
|
27
|
+
* UI/UX improvements.
|
|
12
28
|
|
|
13
29
|
### Bug Fixes
|
|
14
30
|
|
|
15
31
|
* Fixed table view tooltips.
|
|
16
32
|
* Fixed selection with WebLogo in the column header.
|
|
17
|
-
* Fixed identity scoring formula.
|
|
18
33
|
* Fixed table view couldn't be filtered by monomer position columns.
|
|
19
|
-
* Fixed identity panel not considering filtered table view.
|
|
20
|
-
* Fixed the Identity button not disabling on incorrect input.
|
|
21
34
|
|
|
22
35
|
## 1.11.0 (2023-08-03)
|
|
23
36
|
|