@datagrok/bio 2.11.38 → 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/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "Leonid Stolbov",
|
|
6
6
|
"email": "lstolbov@datagrok.ai"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.11.
|
|
8
|
+
"version": "2.11.39",
|
|
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",
|
|
@@ -59,6 +59,10 @@ export async function multipleSequenceAlignmentUI(
|
|
|
59
59
|
const msaParamsDiv = ui.inputs([gapOpenInput, gapExtendInput, terminalGapInput]);
|
|
60
60
|
const msaParamsButton = ui.button('Alignment parameters', () => {
|
|
61
61
|
msaParamsDiv.hidden = !msaParamsDiv.hidden;
|
|
62
|
+
[gapOpenInput, gapExtendInput, terminalGapInput].forEach((input) => {
|
|
63
|
+
input.root.style.removeProperty('max-width');
|
|
64
|
+
input.captionLabel.style.removeProperty('max-width');
|
|
65
|
+
});
|
|
62
66
|
}, 'Adjust alignment parameters such as penalties for opening and extending gaps');
|
|
63
67
|
msaParamsButton.classList.add('msa-params-button');
|
|
64
68
|
msaParamsDiv.hidden = true;
|