@datagrok/sequence-translator 1.4.2 → 1.4.4
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 +27 -0
- package/dist/package-test.js +2 -1
- package/dist/package-test.js.LICENSE.txt +8 -0
- 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 +10 -0
- package/files/samples/cyclized.csv +2 -0
- package/files/tests/polytool-reaction-lib.json +40 -0
- package/package.json +7 -7
- package/src/package-test.ts +3 -1
- package/src/package.ts +8 -0
- package/src/polytool/const.ts +1 -0
- package/src/polytool/pt-conversion.ts +314 -43
- package/src/polytool/pt-dialog.ts +37 -22
- package/src/polytool/pt-placeholders-breadth-input.ts +2 -2
- package/src/polytool/pt-placeholders-input.ts +1 -1
- package/src/polytool/pt-rules.ts +24 -4
- package/src/polytool/pt-unrule-dialog.ts +106 -0
- package/src/polytool/pt-unrule.ts +37 -0
- package/src/polytool/types.ts +18 -0
- package/src/tests/polytool-chain-from-notation-tests.ts +45 -0
- package/src/tests/polytool-convert-tests.ts +8 -9
- package/src/tests/polytool-enumerate-breadth-tests.ts +3 -5
- package/src/tests/polytool-enumerate-tests.ts +2 -4
- package/src/tests/polytool-unrule-tests.ts +10 -0
- package/src/tests/toAtomicLevel-tests.ts +97 -0
package/.eslintrc.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
],
|
|
22
22
|
"max-len": ["error", 120],
|
|
23
23
|
"max-params": ["warn", 5],
|
|
24
|
-
"max-lines-per-function": ["warn",
|
|
24
|
+
"max-lines-per-function": ["warn", 300],
|
|
25
25
|
"max-lines": ["warn", 500],
|
|
26
26
|
"no-unused-vars": "off",
|
|
27
27
|
"@typescript-eslint/no-unused-vars": "warn",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Sequence Translator changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.4 (2024-09-30)
|
|
4
|
+
|
|
5
|
+
### New features
|
|
6
|
+
|
|
7
|
+
* Add convert with reaction rules
|
|
8
|
+
|
|
9
|
+
### Bug fixes
|
|
10
|
+
|
|
11
|
+
* Fix sample reaction rule and monomer order
|
|
12
|
+
* Fix isolate PolyTool convert error on row
|
|
13
|
+
* Fix adding test for Chain .fromNotation
|
|
14
|
+
* Fix adding test toAtomicLevel getNewMonomer
|
|
15
|
+
|
|
16
|
+
## 1.4.3 (2024-09-27)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* Add PolyTool convert reverse
|
|
21
|
+
|
|
22
|
+
### Bug fixes
|
|
23
|
+
|
|
24
|
+
* Add sample reaction rule aG + azG = GGaz, test data
|
|
25
|
+
* Fix using MonomerLibHelper.loadMonomerLibForTests
|
|
26
|
+
* Add test toAtomicLevel with overridden monomer lib
|
|
27
|
+
* Fix PolyTool Enumerate for zero-based monomer position
|
|
28
|
+
* Fix Chain.getHelm square brackets for multi char symbols
|
|
29
|
+
|
|
3
30
|
## 1.4.2 (2024-09-24)
|
|
4
31
|
|
|
5
32
|
### New features
|