@datagrok/sequence-translator 1.10.12 → 1.10.14
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 +6 -0
- package/CLAUDE.md +0 -12
- 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/files/tests/chem_enum_cores.csv +5 -0
- package/files/tests/chem_enum_rgroups.csv +5 -0
- package/package.json +1 -1
- package/src/apps/structure/view/ui.ts +1 -1
- package/src/apps/translator/view/ui.ts +1 -1
- package/src/package-api.ts +8 -1
- package/src/package-test.ts +1 -0
- package/src/package.g.ts +11 -3
- package/src/package.ts +19 -6
- package/src/polytool/const.ts +3 -3
- package/src/polytool/pt-chem-enum-dialog.ts +940 -0
- package/src/polytool/pt-chem-enum.ts +553 -0
- package/src/polytool/pt-dialog.ts +2 -116
- package/src/polytool/pt-enumerate-seq-dialog.ts +3 -3
- package/src/tests/polytool-enumerate-chem-tests.ts +408 -0
- package/test-console-output-1.log +201 -90
- package/test-record-1.mp4 +0 -0
- package/src/polytool/pt-enumeration-chem.ts +0 -100
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Sequence Translator changelog
|
|
2
2
|
|
|
3
|
+
## 1.10.14 (2026-04-21)
|
|
4
|
+
|
|
5
|
+
* Chem Enumeration
|
|
6
|
+
* Helm enumeration improvements, paralel mode
|
|
7
|
+
* Polytool: support for custom notation back-conversion, fix for reversed rule order
|
|
8
|
+
|
|
3
9
|
## 1.10.5 (2025-12-11)
|
|
4
10
|
|
|
5
11
|
* PT-Synthetic: Fix missing molfile handler errors
|
package/CLAUDE.md
CHANGED
|
@@ -7,18 +7,6 @@
|
|
|
7
7
|
**Author:** Davit Rizhinashvili
|
|
8
8
|
**Description:** Translates oligonucleotide sequences between different representations (Axolabs, BioSpring, GCRS, Mermade, HELM, nucleotides, etc.). Also provides pattern design, structure visualization, and advanced polymer conversion (PolyTool).
|
|
9
9
|
|
|
10
|
-
## Quick Reference
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
npm run build # grok api && grok check --soft && webpack
|
|
14
|
-
npm run build-all # Build all deps (chem-meta → js-api → utils → bio → tutorials → this)
|
|
15
|
-
npm run link-all # npm link chem-meta datagrok-api utils bio tutorials
|
|
16
|
-
npm run test # grok test
|
|
17
|
-
npm run test-local # grok test --host localhost
|
|
18
|
-
npm run lint # eslint ./src/**/*.ts
|
|
19
|
-
npm run lint-fix # eslint --fix
|
|
20
|
-
```
|
|
21
|
-
|
|
22
10
|
## Dependencies
|
|
23
11
|
|
|
24
12
|
| Dependency | Purpose |
|