@datagrok/sequence-translator 1.9.14 → 1.10.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/detectors.js +1 -0
- package/dist/455.js +1 -1
- package/dist/455.js.map +1 -1
- 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 +4 -4
- package/src/apps/common/model/monomer-lib/lib-wrapper.ts +1 -1
- package/src/apps/common/model/oligo-toolkit-package.ts +3 -4
- package/src/apps/translator/view/ui.ts +2 -1
- package/src/package.ts +21 -49
- package/src/polytool/conversion/pt-atomic.ts +2 -2
- package/src/polytool/conversion/pt-rule-cards.ts +2 -1
- package/src/polytool/conversion/pt-rules.ts +1 -1
- package/src/polytool/conversion/pt-synthetic.ts +2 -2
- package/src/polytool/monomer-lib-handler.ts +1 -1
- package/src/polytool/pt-dialog.ts +3 -3
- package/src/polytool/pt-enumerate-seq-dialog.ts +8 -4
- package/src/polytool/pt-enumeration-helm.ts +1 -1
- package/src/polytool/pt-unrule-dialog.ts +2 -2
- package/src/polytool/utils.ts +16 -9
- package/src/tests/polytool-chain-from-notation-tests.ts +1 -0
- package/src/tests/polytool-chain-parse-notation-tests.ts +2 -1
- package/src/tests/polytool-convert-tests.ts +2 -1
- package/src/tests/polytool-enumerate-breadth-tests.ts +10 -10
- package/src/tests/polytool-enumerate-tests.ts +1 -1
- package/src/tests/toAtomicLevel-tests.ts +3 -2
- package/src/tests/utils/detect-macromolecule-utils.ts +1 -0
- package/test-console-output-1.log +162 -194
- package/test-record-1.mp4 +0 -0
|
@@ -4,7 +4,7 @@ import * as DG from 'datagrok-api/dg';
|
|
|
4
4
|
|
|
5
5
|
import {before, after, category, expect, test, expectArray} from '@datagrok-libraries/utils/src/test';
|
|
6
6
|
import {getHelmHelper, IHelmHelper} from '@datagrok-libraries/bio/src/helm/helm-helper';
|
|
7
|
-
import {getMonomerLibHelper, IMonomerLibHelper} from '@datagrok-libraries/bio/src/
|
|
7
|
+
import {getMonomerLibHelper, IMonomerLibHelper} from '@datagrok-libraries/bio/src/types/monomer-library';
|
|
8
8
|
import {UserLibSettings} from '@datagrok-libraries/bio/src/monomer-works/types';
|
|
9
9
|
import {
|
|
10
10
|
getUserLibSettings, setUserLibSettings
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
+
/* eslint-disable max-len */
|
|
1
2
|
import * as grok from 'datagrok-api/grok';
|
|
2
3
|
import * as ui from 'datagrok-api/ui';
|
|
3
4
|
import * as DG from 'datagrok-api/dg';
|
|
4
5
|
|
|
5
6
|
import {before, after, category, expect, test, expectArray, testEvent, delay} from '@datagrok-libraries/utils/src/test';
|
|
6
|
-
import {Monomer, MonomerLibData} from '@datagrok-libraries/bio/src/types/
|
|
7
|
+
import {Monomer, MonomerLibData} from '@datagrok-libraries/bio/src/types/monomer-library';
|
|
7
8
|
|
|
8
9
|
import {PolymerTypes} from '@datagrok-libraries/bio/src/helm/consts';
|
|
9
10
|
import {getSeqHelper} from '@datagrok-libraries/bio/src/utils/seq-helper';
|
|
10
11
|
import {UserLibSettings} from '@datagrok-libraries/bio/src/monomer-works/types';
|
|
11
12
|
import {getUserLibSettings, setUserLibSettings} from '@datagrok-libraries/bio/src/monomer-works/lib-settings';
|
|
12
|
-
import {getMonomerLibHelper, IMonomerLibHelper} from '@datagrok-libraries/bio/src/
|
|
13
|
+
import {getMonomerLibHelper, IMonomerLibHelper} from '@datagrok-libraries/bio/src/types/monomer-library';
|
|
13
14
|
import {NOTATION} from '@datagrok-libraries/bio/src/utils/macromolecule';
|
|
14
15
|
import {getRdKitModule} from '@datagrok-libraries/bio/src/chem/rdkit-module';
|
|
15
16
|
import {RDModule} from '@datagrok-libraries/chem-meta/src/rdkit-api';
|