@datagrok-libraries/bio 5.42.14 → 5.42.15

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # bio changelog
2
2
 
3
+ ## 5.42.15 (2024-09-10)
4
+
5
+ ### Bug fixes
6
+
7
+ * Fix default lib summary for tests
8
+
3
9
  ## 5.42.14 (2024-09-04)
4
10
 
5
11
  ### Bug fixes
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "access": "public"
9
9
  },
10
10
  "friendlyName": "Datagrok bio library",
11
- "version": "5.42.14",
11
+ "version": "5.42.15",
12
12
  "description": "Bio utilities, types supporting Macromolecule, Molecule3D data",
13
13
  "dependencies": {
14
14
  "@datagrok-libraries/chem-meta": "^1.2.5",
@@ -1,6 +1,6 @@
1
1
  import { expectObject } from '@datagrok-libraries/utils/src/test';
2
2
  /** Summary for HELMCoreLibrary.json */
3
- export const defaultMonomerLibSummary = { 'PEPTIDE': 322, 'RNA': 383, 'CHEM': 0 };
3
+ export const defaultMonomerLibSummary = { 'PEPTIDE': 324, 'RNA': 383, 'CHEM': 0 };
4
4
  export function expectMonomerLib(lib, summary) {
5
5
  const exp = summary ?? defaultMonomerLibSummary;
6
6
  const act = lib.getSummaryObj();