@datagrok/sequence-translator 1.5.2 → 1.6.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 +2 -2
- package/CHANGELOG.md +12 -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/package.ts +1 -0
- package/src/polytool/conversion/pt-chain.ts +38 -635
- package/src/polytool/conversion/pt-conversion.ts +2 -3
- package/src/polytool/conversion/pt-misc.ts +8 -182
- package/src/polytool/conversion/pt-rules.ts +9 -4
- package/src/polytool/conversion/pt-synthetic.ts +279 -0
- package/src/polytool/conversion/pt-tools-helmmol.ts +114 -0
- package/src/polytool/conversion/pt-tools-parse.ts +356 -0
- package/src/polytool/conversion/rule-manager.ts +1 -1
- package/src/polytool/pt-dialog.ts +1 -1
- package/src/polytool/pt-enumerate-seq-dialog.ts +1 -1
- package/src/polytool/pt-enumeration-helm.ts +7 -5
- package/src/polytool/pt-unrule.ts +3 -3
- package/src/tests/polytool-chain-from-notation-tests.ts +34 -33
- package/src/tests/polytool-chain-parse-notation-tests.ts +2 -2
- package/src/tests/polytool-convert-tests.ts +14 -14
- package/src/tests/polytool-detectors-custom-notation-test.ts +1 -1
- package/src/tests/toAtomicLevel-tests.ts +4 -4
- package/src/utils/cyclized.ts +6 -4
package/.eslintrc.json
CHANGED
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
2
|
|
21
21
|
],
|
|
22
22
|
"max-len": ["error", 120],
|
|
23
|
-
"max-params": ["warn",
|
|
24
|
-
"max-lines-per-function": ["warn",
|
|
23
|
+
"max-params": ["warn", 7],
|
|
24
|
+
"max-lines-per-function": ["warn", 500],
|
|
25
25
|
"max-lines": ["warn", 1000],
|
|
26
26
|
"no-unused-vars": "off",
|
|
27
27
|
"@typescript-eslint/no-unused-vars": "warn",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Sequence Translator changelog
|
|
2
2
|
|
|
3
|
+
## 1.6.0 (2024-11-14)
|
|
4
|
+
|
|
5
|
+
### New features
|
|
6
|
+
|
|
7
|
+
* Add PolyTool work with sinthetic monomers
|
|
8
|
+
|
|
9
|
+
## 1.5.3 (2024-11-06)
|
|
10
|
+
|
|
11
|
+
### Bug fixes
|
|
12
|
+
|
|
13
|
+
* PolyTool fix rules empty specification (all monomers undergo)
|
|
14
|
+
|
|
3
15
|
## 1.5.2 (2024-11-06)
|
|
4
16
|
|
|
5
17
|
### Bug fixes
|