@datagrok/bio 2.25.7 → 2.25.8
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 +2 -2
- package/src/package.g.ts +1 -1
- package/src/package.ts +2 -1
- package/src/widgets/sequence-scrolling-widget.ts +22 -11
- package/test-console-output-1.log +330 -318
- package/test-record-1.mp4 +0 -0
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "Davit Rizhinashvili",
|
|
6
6
|
"email": "drizhinashvili@datagrok.ai"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.25.
|
|
8
|
+
"version": "2.25.8",
|
|
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",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
],
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@biowasm/aioli": "^3.1.0",
|
|
47
|
-
"@datagrok-libraries/bio": "^5.61.
|
|
47
|
+
"@datagrok-libraries/bio": "^5.61.4",
|
|
48
48
|
"@datagrok-libraries/chem-meta": "^1.2.9",
|
|
49
49
|
"@datagrok-libraries/math": "^1.2.6",
|
|
50
50
|
"@datagrok-libraries/ml": "^6.10.7",
|
package/src/package.g.ts
CHANGED
|
@@ -310,7 +310,7 @@ export async function toAtomicLevelPanel(sequence: DG.SemanticValue) : Promise<a
|
|
|
310
310
|
//name: To Atomic Level Single sequence
|
|
311
311
|
//description: Converts a single sequence to molblock
|
|
312
312
|
//input: string sequence { semType: Macromolecule }
|
|
313
|
-
//output: string
|
|
313
|
+
//output: string molfile { semType: Molecule }
|
|
314
314
|
export async function toAtomicLevelSingleSeq(sequence: string) : Promise<string> {
|
|
315
315
|
return await PackageFunctions.toAtomicLevelSingleSeq(sequence);
|
|
316
316
|
}
|
package/src/package.ts
CHANGED
|
@@ -706,7 +706,8 @@ export class PackageFunctions {
|
|
|
706
706
|
|
|
707
707
|
@grok.decorators.func({
|
|
708
708
|
name: 'To Atomic Level Single sequence',
|
|
709
|
-
description: 'Converts a single sequence to molblock'
|
|
709
|
+
description: 'Converts a single sequence to molblock',
|
|
710
|
+
outputs: [{name: 'molfile', type: 'string', options: {semType: 'Molecule'}}]
|
|
710
711
|
})
|
|
711
712
|
static async toAtomicLevelSingleSeq(
|
|
712
713
|
@grok.decorators.param({name: 'sequence', type: 'string', options: {semType: 'Macromolecule'}}) sequence: string,
|
|
@@ -324,7 +324,9 @@ class LazyConservationTrack extends ConservationTrack {
|
|
|
324
324
|
// ============================================================================
|
|
325
325
|
|
|
326
326
|
export const MSA_HEADER_INITIALIZED_FLAG = '__msa-scroller-initialized';
|
|
327
|
-
export const
|
|
327
|
+
export const MSA_SCROLLER_GRID_SUBSCRIPTIONS = '__msa-scroller-subscription';
|
|
328
|
+
|
|
329
|
+
type Unsubscibable = { unsubscribe: () => void };
|
|
328
330
|
|
|
329
331
|
export function handleSequenceHeaderRendering() {
|
|
330
332
|
const handleGrid = (grid: DG.Grid) => {
|
|
@@ -334,19 +336,26 @@ export function handleSequenceHeaderRendering() {
|
|
|
334
336
|
const df = grid.dataFrame;
|
|
335
337
|
if (!df) return;
|
|
336
338
|
|
|
337
|
-
|
|
339
|
+
if (!grid.temp[MSA_SCROLLER_GRID_SUBSCRIPTIONS])
|
|
340
|
+
grid.temp[MSA_SCROLLER_GRID_SUBSCRIPTIONS] = [] as Unsubscibable[];
|
|
341
|
+
let headerSubs = grid.temp[MSA_SCROLLER_GRID_SUBSCRIPTIONS] as Unsubscibable[];
|
|
342
|
+
headerSubs.forEach((s) => s.unsubscribe());
|
|
343
|
+
grid.temp[MSA_SCROLLER_GRID_SUBSCRIPTIONS] = headerSubs = [];
|
|
338
344
|
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
345
|
+
const sub = (s: Unsubscibable) => {
|
|
346
|
+
headerSubs.push(s);
|
|
347
|
+
};
|
|
348
|
+
const seqCols = df.columns.bySemTypeAll(DG.SEMTYPE.MACROMOLECULE);
|
|
349
|
+
sub(DG.debounce(rxjs.merge(df.onColumnsAdded, df.onColumnsRemoved, df.onSemanticTypeDetected, grid.onEvent('d4-data-frame-changed')), 200).subscribe(() => handleGrid(grid)));
|
|
342
350
|
|
|
343
351
|
for (const seqCol of seqCols) {
|
|
344
352
|
// first check if the column was already processed
|
|
345
353
|
const gCol = grid.col(seqCol.name);
|
|
346
354
|
if (!gCol) continue;
|
|
347
355
|
|
|
348
|
-
if (gCol.temp[MSA_HEADER_INITIALIZED_FLAG])
|
|
349
|
-
|
|
356
|
+
// if (gCol.temp[MSA_HEADER_INITIALIZED_FLAG])
|
|
357
|
+
// continue;
|
|
358
|
+
const wasInitialized = gCol.temp[MSA_HEADER_INITIALIZED_FLAG] === true;
|
|
350
359
|
gCol.temp[MSA_HEADER_INITIALIZED_FLAG] = true;
|
|
351
360
|
|
|
352
361
|
|
|
@@ -428,7 +437,7 @@ export function handleSequenceHeaderRendering() {
|
|
|
428
437
|
}, 50);
|
|
429
438
|
});
|
|
430
439
|
|
|
431
|
-
|
|
440
|
+
sub(filterChangeSub);
|
|
432
441
|
|
|
433
442
|
const initializeHeaders = (monomerLib: IMonomerLib) => {
|
|
434
443
|
const tracks: { id: string, track: MSAHeaderTrack, priority: number }[] = [];
|
|
@@ -501,7 +510,7 @@ export function handleSequenceHeaderRendering() {
|
|
|
501
510
|
|
|
502
511
|
scroller.setSelectionData(df, seqCol, sh);
|
|
503
512
|
|
|
504
|
-
if (maxSeqLen > 50) {
|
|
513
|
+
if (maxSeqLen > 50 && !wasInitialized) {
|
|
505
514
|
grid.props.colHeaderHeight = initialHeaderHeight;
|
|
506
515
|
|
|
507
516
|
// Set column width
|
|
@@ -511,10 +520,12 @@ export function handleSequenceHeaderRendering() {
|
|
|
511
520
|
}, 300);
|
|
512
521
|
}
|
|
513
522
|
|
|
523
|
+
sub({unsubscribe: () => scroller.detach()}); // Ensure proper cleanup
|
|
514
524
|
// Handle cell rendering for MSA
|
|
515
|
-
|
|
525
|
+
const tableCol = gCol.column;
|
|
526
|
+
sub(grid.onCellRender.subscribe((e) => {
|
|
516
527
|
const cell = e.cell;
|
|
517
|
-
if (!cell || !cell.isColHeader || cell?.
|
|
528
|
+
if (!cell || !cell.isColHeader || cell?.tableColumn?.dart !== tableCol?.dart)
|
|
518
529
|
return;
|
|
519
530
|
|
|
520
531
|
const cellBounds = e.bounds;
|