@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/CHANGELOG.md +7 -1
- package/dist/package-test.js +2 -2
- package/dist/package.js +2 -2
- package/package.json +1 -1
- package/src/model.ts +1 -1
package/package.json
CHANGED
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.
|
|
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;
|