@datagrok/peptides 1.15.1 → 1.15.2

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datagrok/peptides",
3
3
  "friendlyName": "Peptides",
4
- "version": "1.15.1",
4
+ "version": "1.15.2",
5
5
  "author": {
6
6
  "name": "Volodymyr Dyma",
7
7
  "email": "vdyma@datagrok.ai"
package/src/model.ts CHANGED
@@ -1133,7 +1133,7 @@ export class PeptidesModel {
1133
1133
  sparseMatrixThreshold?: number, options?: (IUMAPOptions | ITSNEOptions) & Options} =
1134
1134
  {table: this.df, molecules: this.df.getCol(this.settings.sequenceColumnName!),
1135
1135
  methodName: DimReductionMethods.UMAP, similarityMetric: MmDistanceFunctionsNames.MONOMER_CHEMICAL_DISTANCE,
1136
- plotEmbeddings: true, sparseMatrixThreshold: 0.8, options: {'bypassLargeDataWarning': true}};
1136
+ plotEmbeddings: true, sparseMatrixThreshold: 0.3, options: {'bypassLargeDataWarning': true}};
1137
1137
  const seqSpaceViewer: DG.ScatterPlotViewer | undefined = await grok.functions.call('Bio:sequenceSpaceTopMenu', seqSpaceParams);
1138
1138
  if (!(seqSpaceViewer instanceof DG.ScatterPlotViewer))
1139
1139
  return;