@datagrok/sequence-translator 1.4.8 → 1.5.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/.eslintrc.json +1 -1
- package/CHANGELOG.md +24 -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/files/polytool-rules/rules_example.json +35 -38
- package/package.json +9 -9
- package/src/apps/common/model/oligo-toolkit-package.ts +13 -7
- package/src/package.ts +8 -7
- package/src/polytool/const.ts +1 -0
- package/src/polytool/{pt-conversion.ts → conversion/pt-chain.ts} +118 -285
- package/src/polytool/conversion/pt-conversion.ts +26 -0
- package/src/polytool/conversion/pt-misc.ts +193 -0
- package/src/polytool/conversion/pt-rules.ts +231 -0
- package/src/polytool/conversion/rule-manager.ts +205 -0
- package/src/polytool/pt-convert-editor.ts +1 -1
- package/src/polytool/pt-dialog.ts +133 -6
- package/src/polytool/{pt-enumeration-helm-dialog.ts → pt-enumerate-seq-dialog.ts} +243 -114
- package/src/polytool/pt-enumeration-helm.ts +2 -2
- package/src/polytool/pt-placeholders-breadth-input.ts +80 -39
- package/src/polytool/pt-placeholders-input.ts +96 -35
- package/src/polytool/pt-unrule-dialog.ts +1 -1
- package/src/polytool/pt-unrule.ts +2 -2
- package/src/polytool/types.ts +5 -1
- package/src/tests/polytool-chain-from-notation-tests.ts +9 -18
- package/src/tests/polytool-chain-parse-notation-tests.ts +3 -2
- package/src/tests/polytool-convert-tests.ts +5 -3
- package/src/tests/polytool-unrule-tests.ts +1 -1
- package/src/tests/toAtomicLevel-tests.ts +5 -6
- package/src/utils/cell-renderer-cyclized.ts +37 -0
- package/src/utils/context-menu.ts +1 -1
- package/src/utils/cyclized.ts +23 -26
- package/src/polytool/pt-rules.ts +0 -93
package/.eslintrc.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"max-len": ["error", 120],
|
|
23
23
|
"max-params": ["warn", 5],
|
|
24
24
|
"max-lines-per-function": ["warn", 300],
|
|
25
|
-
"max-lines": ["warn",
|
|
25
|
+
"max-lines": ["warn", 1000],
|
|
26
26
|
"no-unused-vars": "off",
|
|
27
27
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
28
28
|
"require-jsdoc": "off",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Sequence Translator changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.0 (2024-11-04)
|
|
4
|
+
|
|
5
|
+
### New features
|
|
6
|
+
|
|
7
|
+
* Add PolyTool interface for rule management
|
|
8
|
+
|
|
9
|
+
## 1.4.10 (2024-11-01)
|
|
10
|
+
|
|
11
|
+
### Bug fixes
|
|
12
|
+
|
|
13
|
+
* Fix build
|
|
14
|
+
|
|
15
|
+
## 1.4.9 (2024-10-31)
|
|
16
|
+
|
|
17
|
+
### Bug fixes
|
|
18
|
+
|
|
19
|
+
* Fix package initializing helmHelper
|
|
20
|
+
* Fix Chain using HelmAtom.bio of type PtBio
|
|
21
|
+
* Fix PT Enumerate dialog for harmonized sequences
|
|
22
|
+
* Fix PT Enumerate for monomer hovering
|
|
23
|
+
* Fix PT Enumerate for historical values
|
|
24
|
+
* Fix PT Enumerate adding buildCyclizedMonomerHoverLink, WIP
|
|
25
|
+
* Fix adding CyclizedGridCellRenderBack
|
|
26
|
+
|
|
3
27
|
## 1.4.8 (2024-10-25)
|
|
4
28
|
|
|
5
29
|
### Bug fixes
|