@datagrok/peptides 1.27.7 → 1.27.9
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 +13 -0
- package/CLAUDE.md +0 -12
- package/CREDITS.md +74 -0
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +2 -2
- package/src/model.ts +14 -5
- package/src/utils/misc.ts +2 -2
- package/src/viewers/mutation-cliffs-viewer.ts +9 -2
- package/src/viewers/position-statistics-viewer.ts +2 -2
- package/src/viewers/sar-viewer.ts +19 -4
- package/src/widgets/manual-alignment.ts +1 -1
- package/test-console-output-1.log +121 -72
- package/test-record-1.mp4 +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
+
## 1.27.4 - 1.27.7 (2026-03-20)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* [#3604](https://github.com/datagrok-ai/public/issues/3604): Migrated tags to roles
|
|
8
|
+
* Variability Map: Added export functionality
|
|
9
|
+
* SAR: Added extraction support
|
|
10
|
+
* Multi Position Statistics: Introduced multi-position statistics viewer
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* SAR: Absent monomers are now filtered out
|
|
15
|
+
|
|
3
16
|
## 1.27.3 (2025-11-12)
|
|
4
17
|
|
|
5
18
|
* Fix mutation cliffs viewer not updating on filter change
|
package/CLAUDE.md
CHANGED
|
@@ -1,23 +1,11 @@
|
|
|
1
1
|
# CLAUDE.md
|
|
2
2
|
|
|
3
|
-
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
4
|
-
|
|
5
|
-
**IMPORTANT: Always update this CLAUDE.md file after finishing any task that adds, removes, or changes functionality in this package.**
|
|
6
|
-
|
|
7
3
|
## Overview
|
|
8
4
|
|
|
9
5
|
**Peptides** (`@datagrok/peptides`) is a Datagrok plugin for **Structure-Activity Relationship (SAR) analysis** of peptide collections. It detects macromolecule columns automatically, renders amino acids with color-coded monomers, and provides interactive viewers to identify point mutations and residues causing major activity changes.
|
|
10
6
|
|
|
11
7
|
Category: **Bioinformatics**. Top menu: `Bio | Analyze | SAR...`.
|
|
12
8
|
|
|
13
|
-
## Build Commands
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
npm install
|
|
17
|
-
npm run build # grok api && grok check --soft && webpack
|
|
18
|
-
npm run test # grok test
|
|
19
|
-
```
|
|
20
|
-
|
|
21
9
|
## Architecture
|
|
22
10
|
|
|
23
11
|
### Entry Point — `src/package.ts`
|
package/CREDITS.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Peptides — Third-Party Libraries
|
|
2
|
+
|
|
3
|
+
The `@datagrok/peptides` package is distributed under the MIT license that
|
|
4
|
+
covers the rest of the `public/` repository (see
|
|
5
|
+
[`../../LICENSE.md`](../../LICENSE.md)). It incorporates the open-source
|
|
6
|
+
components listed below; this file reproduces the attribution and notices
|
|
7
|
+
required by their respective licenses.
|
|
8
|
+
|
|
9
|
+
All runtime dependencies bundled into the published artifact are under
|
|
10
|
+
permissive licenses (MIT). No copyleft (GPL/LGPL/MPL) component is bundled
|
|
11
|
+
into the published Peptides plugin.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 1. Bundled in the published artifact (`dist/`)
|
|
16
|
+
|
|
17
|
+
### uuid (10.x)
|
|
18
|
+
|
|
19
|
+
RFC-compliant UUID generation, used to assign stable identifiers to
|
|
20
|
+
clusters / mutation-cliff records and to namespace viewer settings.
|
|
21
|
+
|
|
22
|
+
- Upstream: https://github.com/uuidjs/uuid
|
|
23
|
+
- License: **MIT**
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
The MIT License (MIT)
|
|
27
|
+
|
|
28
|
+
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
|
29
|
+
|
|
30
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
31
|
+
|
|
32
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
33
|
+
|
|
34
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## 2. Linked at runtime via the Datagrok platform (webpack externals)
|
|
40
|
+
|
|
41
|
+
These libraries are not bundled into Peptides' `dist/` — they are provided
|
|
42
|
+
once by the platform host and shared across all packages.
|
|
43
|
+
|
|
44
|
+
| Component | Version | License | Upstream |
|
|
45
|
+
|-----------|---------|---------|-----------------------------------------|
|
|
46
|
+
| cash-dom | 8.x | MIT | https://github.com/fabiospampinato/cash |
|
|
47
|
+
| RxJS | 6.x | Apache-2.0 | https://github.com/ReactiveX/rxjs |
|
|
48
|
+
| wu.js | 2.x | MIT | https://github.com/fitzgen/wu.js |
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## 3. Fetched at runtime from third-party CDNs (not bundled)
|
|
53
|
+
|
|
54
|
+
None.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## 4. Docker container images (`dockerfiles/`)
|
|
59
|
+
|
|
60
|
+
None.
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## 5. Development-only dependencies
|
|
65
|
+
|
|
66
|
+
Tools used during the build/test cycle (not in the runtime tree, not bundled):
|
|
67
|
+
the `datagrok-tools` CLI, the TypeScript / webpack toolchain, and `file-loader`
|
|
68
|
+
(MIT, *Copyright JS Foundation and other contributors*) used by webpack at
|
|
69
|
+
build time only. The peer/devDependencies on other Datagrok plugins
|
|
70
|
+
(`@datagrok/bio`, `@datagrok/chem`, `@datagrok/dendrogram`, `@datagrok/eda`,
|
|
71
|
+
`@datagrok/helm`) and on `@datagrok-libraries/helm-web-editor` /
|
|
72
|
+
`@datagrok-libraries/js-draw-lite` are MIT — covered by the repo-wide
|
|
73
|
+
`LICENSE.md`. These are **not** redistributed as part of the published
|
|
74
|
+
Peptides plugin and impose no obligation on users of the plugin.
|