@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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "name": "Leonid Stolbov",
6
6
  "email": "lstolbov@datagrok.ai"
7
7
  },
8
- "version": "2.10.25",
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 { sequenceToMolfile } from './utils/sequence-to-mol';
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 ? 100000 : 15000;
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) {