@datagrok/peptides 1.7.2 → 1.8.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/README.md +3 -3
- package/dist/563.js +2 -0
- package/dist/611.js +2 -0
- package/dist/802.js +2 -0
- package/dist/96.js +2 -0
- package/dist/package-test.js +2 -29778
- package/dist/package.js +2 -28285
- package/files/icons/logo-summary-viewer.svg +13 -0
- package/files/icons/peptide-sar-vertical-viewer.svg +13 -0
- package/files/icons/peptide-sar-viewer.svg +19 -0
- package/files/icons/peptide-space-viewer.svg +40 -0
- package/package.json +5 -6
- package/src/model.ts +262 -196
- package/src/package.ts +44 -29
- package/src/tests/peptide-space-test.ts +1 -2
- package/src/tests/viewers.ts +0 -2
- package/src/utils/cell-renderer.ts +1 -1
- package/src/utils/distance-matrix.worker.ts +16 -0
- package/src/utils/peptide-similarity-space.ts +0 -1
- package/src/utils/statistics.ts +9 -0
- package/src/utils/types.ts +5 -1
- package/src/utils/worker-creator.ts +11 -0
- package/src/viewers/logo-summary.ts +232 -133
- package/src/viewers/peptide-space-viewer.ts +6 -6
- package/src/viewers/sar-viewer.ts +3 -3
- package/src/widgets/distribution.ts +14 -17
- package/src/widgets/peptides.ts +4 -1
- package/src/widgets/settings.ts +30 -4
- package/dist/vendors-node_modules_datagrok-libraries_ml_src_workers_dimensionality-reducer_js.js +0 -9077
package/README.md
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Provides advanced tools for analyzing collections of peptides.
|
|
4
4
|
|
|
5
|
-
Status: Beta
|
|
6
|
-
Owner: Leonid
|
|
5
|
+
Status: Beta
|
|
6
|
+
Owner: Leonid
|
|
7
7
|
|
|
8
8
|
## Detection and usage
|
|
9
9
|
|
|
10
|
-
Once a dataframe is opened with Datagrok, the column(s) containing peptides are detected automatically. Each amino acid is rendered with a different color, which helps to visually identify patterns. Clicking on the column header brings up the options to launch peptide-specific tools, such as [SAR](#
|
|
10
|
+
Once a dataframe is opened with Datagrok, the column(s) containing peptides are detected automatically. Each amino acid is rendered with a different color, which helps to visually identify patterns. Clicking on the column header brings up the options to launch peptide-specific tools, such as [SAR](#sar) and [Peptide space](#peptides-space).
|
|
11
11
|
|
|
12
12
|
## Sar
|
|
13
13
|
|