@datagrok/bio 2.4.41 → 2.4.43

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "name": "Leonid Stolbov",
6
6
  "email": "lstolbov@datagrok.ai"
7
7
  },
8
- "version": "2.4.41",
8
+ "version": "2.4.43",
9
9
  "description": "Bioinformatics support (import/export of sequences, conversion, visualization, analysis). [See more](https://github.com/datagrok-ai/public/blob/master/packages/Bio/README.md) for details.",
10
10
  "repository": {
11
11
  "type": "git",
@@ -16,7 +16,7 @@
16
16
  "@biowasm/aioli": "^3.1.0",
17
17
  "@datagrok-libraries/bio": "^5.32.2",
18
18
  "@datagrok-libraries/chem-meta": "^1.0.1",
19
- "@datagrok-libraries/ml": "^6.3.37",
19
+ "@datagrok-libraries/ml": "^6.3.39",
20
20
  "@datagrok-libraries/tutorials": "^1.3.2",
21
21
  "@datagrok-libraries/utils": "^4.0.11",
22
22
  "cash-dom": "^8.0.0",
@@ -167,10 +167,6 @@ async function onColInputChange(
167
167
  } else if (checkInputColumnUI(col, col.name, [NOTATION.SEPARATOR], [ALPHABET.UN], false)) {
168
168
  //if the column is separator with unknown alphabet, it might be helm. check if it can be converted to helm
169
169
  const potentialColNC = new NotationConverter(col);
170
- if (!await potentialColNC.checkHelmCompatibility()) {
171
- switchDialog(pepseaInputRootStyles, kalignInputRootStyles, 'pepsea');
172
- return;
173
- }
174
170
  const helmCol = potentialColNC.convert(NOTATION.HELM);
175
171
  switchDialog(pepseaInputRootStyles, kalignInputRootStyles, 'pepsea');
176
172
  gapOpenInput.value ??= msaDefaultOptions.pepsea.gapOpen;