@datagrok/sequence-translator 1.3.0 → 1.3.1

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.
@@ -0,0 +1,34 @@
1
+ [
2
+ {
3
+ "type": "link",
4
+ "code": "1",
5
+ "monomericSubstitution": {
6
+ "firstMonomer": "C",
7
+ "secondMonomer": "C",
8
+ "firstLinkingGroup":"3",
9
+ "secondLinkingGroup":"3",
10
+ "firstSubstitution": "C",
11
+ "secondSubstitution": "C"
12
+ }
13
+ },
14
+ {
15
+ "type": "link",
16
+ "code": "2",
17
+ "monomericSubstitution": {
18
+ "firstMonomer": "NH2",
19
+ "secondMonomer": "L",
20
+ "firstLinkingGroup":"2",
21
+ "secondLinkingGroup":"3",
22
+ "firstSubstitution": "NH2",
23
+ "secondSubstitution": "L"
24
+ }
25
+ },
26
+ {
27
+ "type": "fragmentDuplication",
28
+ "code": "#3"
29
+ },
30
+ {
31
+ "type": "differentFragments",
32
+ "code": "$4"
33
+ }
34
+ ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datagrok/sequence-translator",
3
3
  "friendlyName": "Sequence Translator",
4
- "version": "1.3.0",
4
+ "version": "1.3.1",
5
5
  "author": {
6
6
  "name": "Alexey Choposky",
7
7
  "email": "achopovsky@datagrok.ai"
@@ -2,7 +2,7 @@ import * as DG from 'datagrok-api/dg';
2
2
  import * as grok from 'datagrok-api/grok';
3
3
  import {ActiveFiles} from '@datagrok-libraries/utils/src/settings/active-files-base';
4
4
 
5
- export const RULES_PATH = 'System:AppData/Bio/polytool-rules/';
5
+ export const RULES_PATH = 'System:AppData/SequenceTranslator/polytool-rules/';
6
6
  export const RULES_STORAGE_NAME = 'Polytool';
7
7
  export const RULES_TYPE_LINK = 'link';
8
8
  export const RULES_TYPE_HOMODIMER = 'fragmentDuplication';