@datagrok/sequence-translator 1.4.5 → 1.4.6
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/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 +1 -1
- package/files/samples/HELM.csv +6 -0
- package/files/samples/cyclized.csv +3 -2
- package/files/samples/cyclized_MSA.csv +5 -0
- package/package.json +5 -5
- package/src/apps/common/model/oligo-toolkit-package.ts +11 -4
- package/src/consts.ts +12 -0
- package/src/global.d.ts +13 -0
- package/src/package-test.ts +1 -0
- package/src/package.ts +5 -4
- package/src/polytool/pt-conversion.ts +222 -70
- package/src/polytool/pt-dialog.ts +17 -11
- package/src/polytool/pt-enumeration-helm-dialog.ts +63 -25
- package/src/polytool/pt-enumeration-helm.ts +9 -6
- package/src/polytool/pt-placeholders-breadth-input.ts +4 -4
- package/src/polytool/pt-placeholders-input.ts +6 -6
- package/src/polytool/pt-unrule-dialog.ts +5 -1
- package/src/polytool/pt-unrule.ts +3 -2
- package/src/polytool/types.ts +4 -4
- package/src/tests/polytool-chain-from-notation-tests.ts +108 -18
- package/src/tests/polytool-chain-parse-notation-tests.ts +52 -11
- package/src/tests/polytool-convert-tests.ts +102 -25
- package/src/tests/polytool-detectors-custom-notation-test.ts +1 -1
- package/src/tests/polytool-enumerate-breadth-tests.ts +4 -4
- package/src/utils/context-menu.ts +2 -2
- package/src/utils/cyclized.ts +6 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Sequence Translator changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.6 (2024-10-25)
|
|
4
|
+
|
|
5
|
+
### New features
|
|
6
|
+
|
|
7
|
+
* Add PolyTool Enumerate for harmonized sequences
|
|
8
|
+
* PolyTool ambigous R groups handling
|
|
9
|
+
|
|
10
|
+
### Bug fixes
|
|
11
|
+
|
|
12
|
+
* Fix PolyTool chain, add check consistency, add tests
|
|
13
|
+
* Fix PolyTool Convert tests
|
|
14
|
+
* Fix the package init
|
|
15
|
+
|
|
3
16
|
## 1.4.5 (2024-10-11)
|
|
4
17
|
|
|
5
18
|
### Bug fixes
|