@datagrok/bio 2.11.36 → 2.11.38

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.
Files changed (37) hide show
  1. package/.eslintrc.json +2 -3
  2. package/CHANGELOG.md +14 -0
  3. package/dist/package-test.js +3 -3
  4. package/dist/package-test.js.map +1 -1
  5. package/dist/package.js +3 -3
  6. package/dist/package.js.map +1 -1
  7. package/dockerfiles/Dockerfile +52 -1
  8. package/files/tests/100_3_clustests.csv +1 -1
  9. package/package.json +2 -2
  10. package/src/demo/bio01-similarity-diversity.ts +1 -1
  11. package/src/demo/bio01a-hierarchical-clustering-and-sequence-space.ts +1 -1
  12. package/src/demo/bio01b-hierarchical-clustering-and-activity-cliffs.ts +1 -1
  13. package/src/package.ts +2 -2
  14. package/src/tests/activity-cliffs-tests.ts +1 -1
  15. package/src/tests/detectors-tests.ts +2 -2
  16. package/src/tests/msa-tests.ts +3 -3
  17. package/src/tests/pepsea-tests.ts +58 -15
  18. package/src/tests/renderers-test.ts +3 -3
  19. package/src/tests/utils/test-logger.ts +29 -0
  20. package/src/tests/utils.ts +0 -8
  21. package/src/tests/viewers.ts +1 -1
  22. package/src/utils/docker.ts +39 -23
  23. package/src/utils/helm-to-molfile.ts +3 -1
  24. package/src/utils/multiple-sequence-alignment-ui.ts +12 -5
  25. package/src/utils/pepsea.ts +59 -12
  26. package/files/samples/sample_FASTA.csv +0 -65
  27. package/files/samples/sample_HELM.csv +0 -541
  28. package/files/samples/sample_MSA.csv +0 -541
  29. /package/files/{data/sample_FASTA.fasta → samples/FASTA.fasta} +0 -0
  30. /package/files/{data/sample_FASTA_DNA.csv → samples/FASTA_DNA.csv} +0 -0
  31. /package/files/{data/sample_FASTA_PT.csv → samples/FASTA_PT.csv} +0 -0
  32. /package/files/{data/sample_FASTA_PT_activity.csv → samples/FASTA_PT_activity.csv} +0 -0
  33. /package/files/{data/sample_FASTA_RNA.csv → samples/FASTA_RNA.csv} +0 -0
  34. /package/files/{data/sample_HELM_50.csv → samples/HELM_50.csv} +0 -0
  35. /package/files/{data/sample_HELM_empty_unkn.csv → samples/HELM_empty_unkn.csv} +0 -0
  36. /package/files/{data/sample_HELM_empty_vals.csv → samples/HELM_empty_vals.csv} +0 -0
  37. /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": 1}],
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.38 (2024-03-08)
4
+
5
+ ### Bug fixes
6
+
7
+ * GROK-14910: PepSeA verbose output
8
+ * MSA ensures docker container for PepSeA
9
+ * Sample files harmonized
10
+
11
+ ## 2.11.37 (2024-03-08)
12
+
13
+ ### Bug fixes
14
+
15
+ * Check Bio publishing, PepSeA docker
16
+
3
17
  ## 2.11.36 (2024-02-28)
4
18
 
5
19
  ### Bug fixes