jbrowse-plugin-msaview 2.6.4 → 2.6.5
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/MsaViewPanel/model.d.ts +50 -1
- package/dist/jbrowse-plugin-msaview.umd.production.min.js +25 -25
- package/dist/jbrowse-plugin-msaview.umd.production.min.js.map +4 -4
- package/dist/utils/ncbiDomains.d.ts +4 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -3
- package/src/version.ts +1 -1
|
@@ -384,43 +384,92 @@ export default function stateModelFactory(): import("@jbrowse/mobx-state-tree").
|
|
|
384
384
|
name: string;
|
|
385
385
|
accession: string;
|
|
386
386
|
description: string;
|
|
387
|
+
featureType: string | undefined;
|
|
387
388
|
start: number;
|
|
388
389
|
end: number;
|
|
390
|
+
strand: number | undefined;
|
|
389
391
|
}>;
|
|
390
392
|
readonly tidyInterProAnnotations: {
|
|
391
393
|
id: string;
|
|
392
394
|
name: string;
|
|
393
395
|
accession: string;
|
|
394
396
|
description: string;
|
|
397
|
+
featureType: string | undefined;
|
|
395
398
|
start: number;
|
|
396
399
|
end: number;
|
|
400
|
+
strand: number | undefined;
|
|
397
401
|
}[];
|
|
398
402
|
readonly tidyFilteredInterProAnnotations: {
|
|
399
403
|
id: string;
|
|
400
404
|
name: string;
|
|
401
405
|
accession: string;
|
|
402
406
|
description: string;
|
|
407
|
+
featureType: string | undefined;
|
|
403
408
|
start: number;
|
|
404
409
|
end: number;
|
|
410
|
+
strand: number | undefined;
|
|
405
411
|
}[];
|
|
406
412
|
readonly tidyFilteredGatheredInterProAnnotations: Record<string, {
|
|
407
413
|
id: string;
|
|
408
414
|
name: string;
|
|
409
415
|
accession: string;
|
|
410
416
|
description: string;
|
|
417
|
+
featureType: string | undefined;
|
|
411
418
|
start: number;
|
|
412
419
|
end: number;
|
|
420
|
+
strand: number | undefined;
|
|
413
421
|
}[]>;
|
|
414
422
|
} & {
|
|
415
423
|
readonly showVerticalScrollbar: boolean;
|
|
416
424
|
} & {
|
|
417
425
|
readonly verticalScrollbarWidth: 0 | 20;
|
|
426
|
+
readonly segmentDomainTypes: {
|
|
427
|
+
id: string;
|
|
428
|
+
name: string;
|
|
429
|
+
accession: string;
|
|
430
|
+
description: string;
|
|
431
|
+
featureType: string | undefined;
|
|
432
|
+
start: number;
|
|
433
|
+
end: number;
|
|
434
|
+
strand: number | undefined;
|
|
435
|
+
}[];
|
|
436
|
+
readonly categoricalDomainTypes: {
|
|
437
|
+
id: string;
|
|
438
|
+
name: string;
|
|
439
|
+
accession: string;
|
|
440
|
+
description: string;
|
|
441
|
+
featureType: string | undefined;
|
|
442
|
+
start: number;
|
|
443
|
+
end: number;
|
|
444
|
+
strand: number | undefined;
|
|
445
|
+
}[];
|
|
418
446
|
readonly fillPalette: {
|
|
419
|
-
[
|
|
447
|
+
[x: string]: string;
|
|
420
448
|
};
|
|
421
449
|
readonly strokePalette: {
|
|
422
450
|
[k: string]: string;
|
|
423
451
|
};
|
|
452
|
+
readonly segmentLabels: Map<string, string>;
|
|
453
|
+
readonly visibleDomainTypes: {
|
|
454
|
+
id: string;
|
|
455
|
+
name: string;
|
|
456
|
+
accession: string;
|
|
457
|
+
description: string;
|
|
458
|
+
featureType: string | undefined;
|
|
459
|
+
start: number;
|
|
460
|
+
end: number;
|
|
461
|
+
strand: number | undefined;
|
|
462
|
+
}[];
|
|
463
|
+
readonly mouseOverDomains: {
|
|
464
|
+
id: string;
|
|
465
|
+
name: string;
|
|
466
|
+
accession: string;
|
|
467
|
+
description: string;
|
|
468
|
+
featureType: string | undefined;
|
|
469
|
+
start: number;
|
|
470
|
+
end: number;
|
|
471
|
+
strand: number | undefined;
|
|
472
|
+
}[];
|
|
424
473
|
getRowData(name: string): {
|
|
425
474
|
data: {
|
|
426
475
|
name?: string;
|