@datagrok/bio 2.10.25 → 2.10.26
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/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +1 -1
- package/src/package.ts +2 -2
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "Leonid Stolbov",
|
|
6
6
|
"email": "lstolbov@datagrok.ai"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.10.
|
|
8
|
+
"version": "2.10.26",
|
|
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",
|
package/src/package.ts
CHANGED
|
@@ -73,7 +73,7 @@ import {HelmToMolfileConverter} from './utils/helm-to-molfile';
|
|
|
73
73
|
import {DIMENSIONALITY_REDUCER_TERMINATE_EVENT}
|
|
74
74
|
from '@datagrok-libraries/ml/src/workers/dimensionality-reducing-worker-creator';
|
|
75
75
|
import {Options} from '@datagrok-libraries/utils/src/type-declarations';
|
|
76
|
-
import {
|
|
76
|
+
import {sequenceToMolfile} from './utils/sequence-to-mol';
|
|
77
77
|
|
|
78
78
|
export const _package = new BioPackage();
|
|
79
79
|
|
|
@@ -515,7 +515,7 @@ export async function sequenceSpaceTopMenu(
|
|
|
515
515
|
usingSparseMatrix: table.rowCount > 20000},
|
|
516
516
|
};
|
|
517
517
|
|
|
518
|
-
const allowedRowCount = methodName === DimReductionMethods.UMAP ?
|
|
518
|
+
const allowedRowCount = methodName === DimReductionMethods.UMAP ? 500000 : 15000;
|
|
519
519
|
// number of rows which will be processed relatively fast
|
|
520
520
|
const fastRowCount = methodName === DimReductionMethods.UMAP ? 5000 : 2000;
|
|
521
521
|
if (table.rowCount > allowedRowCount) {
|