@datagrok/bio 2.4.42 → 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.
|
|
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",
|
|
@@ -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;
|