@datagrok/bio 2.11.37 → 2.11.39
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 -3
- package/CHANGELOG.md +14 -0
- package/dist/package-test.js +3 -3
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +3 -3
- package/dist/package.js.map +1 -1
- package/dockerfiles/Dockerfile +52 -1
- package/files/tests/100_3_clustests.csv +1 -1
- package/package.json +2 -2
- package/src/demo/bio01-similarity-diversity.ts +1 -1
- package/src/demo/bio01a-hierarchical-clustering-and-sequence-space.ts +1 -1
- package/src/demo/bio01b-hierarchical-clustering-and-activity-cliffs.ts +1 -1
- package/src/package.ts +2 -2
- package/src/tests/activity-cliffs-tests.ts +1 -1
- package/src/tests/detectors-tests.ts +2 -2
- package/src/tests/msa-tests.ts +1 -1
- package/src/tests/pepsea-tests.ts +53 -13
- package/src/tests/renderers-test.ts +3 -3
- package/src/tests/utils/test-logger.ts +29 -0
- package/src/tests/utils.ts +0 -8
- package/src/tests/viewers.ts +1 -1
- package/src/utils/docker.ts +39 -23
- package/src/utils/multiple-sequence-alignment-ui.ts +16 -5
- package/src/utils/pepsea.ts +59 -12
- package/files/samples/sample_FASTA.csv +0 -65
- package/files/samples/sample_HELM.csv +0 -541
- package/files/samples/sample_MSA.csv +0 -541
- /package/files/{data/sample_FASTA.fasta → samples/FASTA.fasta} +0 -0
- /package/files/{data/sample_FASTA_DNA.csv → samples/FASTA_DNA.csv} +0 -0
- /package/files/{data/sample_FASTA_PT.csv → samples/FASTA_PT.csv} +0 -0
- /package/files/{data/sample_FASTA_PT_activity.csv → samples/FASTA_PT_activity.csv} +0 -0
- /package/files/{data/sample_FASTA_RNA.csv → samples/FASTA_RNA.csv} +0 -0
- /package/files/{data/sample_HELM_50.csv → samples/HELM_50.csv} +0 -0
- /package/files/{data/sample_HELM_empty_unkn.csv → samples/HELM_empty_unkn.csv} +0 -0
- /package/files/{data/sample_HELM_empty_vals.csv → samples/HELM_empty_vals.csv} +0 -0
- /package/files/{data/sample_SEPARATOR_PT.csv → samples/SEPARATOR_PT.csv} +0 -0
package/.eslintrc.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@typescript-eslint"
|
|
16
16
|
],
|
|
17
17
|
"rules": {
|
|
18
|
-
"indent": ["error", 2, {"SwitchCase":
|
|
18
|
+
"indent": ["error", 2, {"SwitchCase": 0}],
|
|
19
19
|
"max-len": ["error", 120],
|
|
20
20
|
"no-unused-vars": "off",
|
|
21
21
|
"@typescript-eslint/no-unused-vars": ["warn", { "varsIgnorePattern": "^(_|ui$|grok$|DG$)", "argsIgnorePattern": "^_"}],
|
|
@@ -25,8 +25,7 @@
|
|
|
25
25
|
"linebreak-style": "off",
|
|
26
26
|
"curly": [
|
|
27
27
|
"error",
|
|
28
|
-
"multi-or-nest"
|
|
29
|
-
"consistent"
|
|
28
|
+
"multi-or-nest"
|
|
30
29
|
],
|
|
31
30
|
"brace-style": [
|
|
32
31
|
"error",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Bio changelog
|
|
2
2
|
|
|
3
|
+
## 2.11.39 (2024-03-11)
|
|
4
|
+
|
|
5
|
+
### Bug fixes
|
|
6
|
+
|
|
7
|
+
* GROK-15150: Fix display hidden/showed inputs
|
|
8
|
+
|
|
9
|
+
## 2.11.38 (2024-03-08)
|
|
10
|
+
|
|
11
|
+
### Bug fixes
|
|
12
|
+
|
|
13
|
+
* GROK-14910: PepSeA verbose output
|
|
14
|
+
* MSA ensures docker container for PepSeA
|
|
15
|
+
* Sample files harmonized
|
|
16
|
+
|
|
3
17
|
## 2.11.37 (2024-03-08)
|
|
4
18
|
|
|
5
19
|
### Bug fixes
|