@jbrowse/plugin-wiggle 4.1.3 → 4.1.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/esm/BigWigAdapter/BigWigAdapter.d.ts +14 -0
- package/esm/BigWigAdapter/BigWigAdapter.js +6 -0
- package/esm/BigWigAdapter/configSchema.d.ts +2 -2
- package/esm/DensityRenderer/configSchema.d.ts +2 -2
- package/esm/LinePlotRenderer/configSchema.d.ts +3 -3
- package/esm/LinearWiggleDisplay/configSchema.d.ts +6 -6
- package/esm/LinearWiggleDisplay/model.d.ts +24 -8
- package/esm/MultiDensityRenderer/configSchema.d.ts +2 -2
- package/esm/MultiLineRenderer/configSchema.d.ts +3 -3
- package/esm/MultiLinearWiggleDisplay/components/IndividualScaleBars.js +3 -2
- package/esm/MultiLinearWiggleDisplay/components/MultiWiggleColorLegend.d.ts +10 -0
- package/esm/MultiLinearWiggleDisplay/components/MultiWiggleColorLegend.js +29 -0
- package/esm/MultiLinearWiggleDisplay/components/MultiWiggleLegendBar.d.ts +7 -0
- package/esm/MultiLinearWiggleDisplay/components/MultiWiggleLegendBar.js +28 -0
- package/esm/MultiLinearWiggleDisplay/components/MultiWiggleLegendBarWrapper.d.ts +7 -0
- package/esm/MultiLinearWiggleDisplay/components/MultiWiggleLegendBarWrapper.js +18 -0
- package/esm/MultiLinearWiggleDisplay/components/RectBg.js +3 -1
- package/esm/MultiLinearWiggleDisplay/components/SvgTree.d.ts +5 -0
- package/esm/MultiLinearWiggleDisplay/components/SvgTree.js +19 -0
- package/esm/MultiLinearWiggleDisplay/components/TreeSidebar.d.ts +5 -0
- package/esm/MultiLinearWiggleDisplay/components/TreeSidebar.js +165 -0
- package/esm/MultiLinearWiggleDisplay/components/WiggleClusterDialog/WiggleClusterDialogAuto.js +2 -1
- package/esm/MultiLinearWiggleDisplay/components/WiggleClusterDialog/types.d.ts +2 -1
- package/esm/MultiLinearWiggleDisplay/components/WiggleDisplayComponent.js +5 -2
- package/esm/MultiLinearWiggleDisplay/components/constants.d.ts +1 -0
- package/esm/MultiLinearWiggleDisplay/components/constants.js +1 -0
- package/esm/MultiLinearWiggleDisplay/components/treeTypes.d.ts +39 -0
- package/esm/MultiLinearWiggleDisplay/components/treeTypes.js +1 -0
- package/esm/MultiLinearWiggleDisplay/configSchema.d.ts +6 -6
- package/esm/MultiLinearWiggleDisplay/makeSidebarSvg.d.ts +9 -0
- package/esm/MultiLinearWiggleDisplay/makeSidebarSvg.js +13 -0
- package/esm/MultiLinearWiggleDisplay/model.d.ts +146 -25
- package/esm/MultiLinearWiggleDisplay/model.js +137 -5
- package/esm/MultiLinearWiggleDisplay/renderSvg.js +3 -1
- package/esm/MultiLinearWiggleDisplay/treeDrawingAutorun.d.ts +17 -0
- package/esm/MultiLinearWiggleDisplay/treeDrawingAutorun.js +77 -0
- package/esm/MultiQuantitativeTrack/configSchema.d.ts +8 -8
- package/esm/MultiRowLineRenderer/configSchema.d.ts +3 -3
- package/esm/MultiRowXYPlotRenderer/configSchema.d.ts +3 -3
- package/esm/MultiWiggleAdapter/MultiWiggleAdapter.d.ts +3 -0
- package/esm/MultiWiggleAdapter/MultiWiggleAdapter.js +5 -1
- package/esm/MultiWiggleAdapter/configSchema.d.ts +2 -2
- package/esm/MultiXYPlotRenderer/configSchema.d.ts +3 -3
- package/esm/QuantitativeTrack/configSchema.d.ts +8 -8
- package/esm/WiggleRPC/MultiWiggleClusterScoreMatrix.d.ts +4 -1
- package/esm/WiggleRPC/executeClusterScoreMatrix.d.ts +4 -1
- package/esm/WiggleRPC/executeClusterScoreMatrix.js +8 -2
- package/esm/XYPlotRenderer/configSchema.d.ts +3 -3
- package/esm/configSchema.d.ts +2 -2
- package/esm/d3-hierarchy2/accessors.d.ts +2 -0
- package/esm/d3-hierarchy2/accessors.js +8 -0
- package/esm/d3-hierarchy2/array.d.ts +2 -0
- package/esm/d3-hierarchy2/array.js +15 -0
- package/esm/d3-hierarchy2/cluster.d.ts +8 -0
- package/esm/d3-hierarchy2/cluster.js +63 -0
- package/esm/d3-hierarchy2/constant.d.ts +2 -0
- package/esm/d3-hierarchy2/constant.js +8 -0
- package/esm/d3-hierarchy2/hierarchy/ancestors.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/ancestors.js +7 -0
- package/esm/d3-hierarchy2/hierarchy/count.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/count.js +12 -0
- package/esm/d3-hierarchy2/hierarchy/descendants.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/descendants.js +3 -0
- package/esm/d3-hierarchy2/hierarchy/each.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/each.js +7 -0
- package/esm/d3-hierarchy2/hierarchy/eachAfter.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/eachAfter.js +15 -0
- package/esm/d3-hierarchy2/hierarchy/eachBefore.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/eachBefore.js +12 -0
- package/esm/d3-hierarchy2/hierarchy/find.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/find.js +8 -0
- package/esm/d3-hierarchy2/hierarchy/index.d.ts +3 -0
- package/esm/d3-hierarchy2/hierarchy/index.js +78 -0
- package/esm/d3-hierarchy2/hierarchy/iterator.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/iterator.js +14 -0
- package/esm/d3-hierarchy2/hierarchy/leaves.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/leaves.js +9 -0
- package/esm/d3-hierarchy2/hierarchy/links.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/links.js +9 -0
- package/esm/d3-hierarchy2/hierarchy/path.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/path.js +26 -0
- package/esm/d3-hierarchy2/hierarchy/sort.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/sort.js +7 -0
- package/esm/d3-hierarchy2/hierarchy/sum.d.ts +1 -0
- package/esm/d3-hierarchy2/hierarchy/sum.js +8 -0
- package/esm/d3-hierarchy2/index.d.ts +15 -0
- package/esm/d3-hierarchy2/index.js +15 -0
- package/esm/d3-hierarchy2/lcg.d.ts +1 -0
- package/esm/d3-hierarchy2/lcg.js +7 -0
- package/esm/d3-hierarchy2/pack/enclose.d.ts +10 -0
- package/esm/d3-hierarchy2/pack/enclose.js +84 -0
- package/esm/d3-hierarchy2/pack/index.d.ts +7 -0
- package/esm/d3-hierarchy2/pack/index.js +68 -0
- package/esm/d3-hierarchy2/pack/siblings.d.ts +2 -0
- package/esm/d3-hierarchy2/pack/siblings.js +94 -0
- package/esm/d3-hierarchy2/partition.d.ts +6 -0
- package/esm/d3-hierarchy2/partition.js +42 -0
- package/esm/d3-hierarchy2/stratify.d.ts +9 -0
- package/esm/d3-hierarchy2/stratify.js +115 -0
- package/esm/d3-hierarchy2/tree.d.ts +8 -0
- package/esm/d3-hierarchy2/tree.js +153 -0
- package/esm/d3-hierarchy2/treemap/binary.d.ts +1 -0
- package/esm/d3-hierarchy2/treemap/binary.js +36 -0
- package/esm/d3-hierarchy2/treemap/dice.d.ts +1 -0
- package/esm/d3-hierarchy2/treemap/dice.js +7 -0
- package/esm/d3-hierarchy2/treemap/index.d.ts +17 -0
- package/esm/d3-hierarchy2/treemap/index.js +72 -0
- package/esm/d3-hierarchy2/treemap/resquarify.d.ts +5 -0
- package/esm/d3-hierarchy2/treemap/resquarify.js +28 -0
- package/esm/d3-hierarchy2/treemap/round.d.ts +1 -0
- package/esm/d3-hierarchy2/treemap/round.js +6 -0
- package/esm/d3-hierarchy2/treemap/slice.d.ts +1 -0
- package/esm/d3-hierarchy2/treemap/slice.js +7 -0
- package/esm/d3-hierarchy2/treemap/sliceDice.d.ts +1 -0
- package/esm/d3-hierarchy2/treemap/sliceDice.js +5 -0
- package/esm/d3-hierarchy2/treemap/squarify.d.ts +11 -0
- package/esm/d3-hierarchy2/treemap/squarify.js +46 -0
- package/esm/index.d.ts +3 -3
- package/esm/shared/SharedWiggleConfigSchema.d.ts +3 -3
- package/esm/shared/SharedWiggleMixin.d.ts +28 -10
- package/esm/shared/SharedWiggleMixin.js +13 -3
- package/package.json +7 -7
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Source } from '../util.ts';
|
|
2
|
+
import type { HoveredTreeNode } from './components/treeTypes.ts';
|
|
2
3
|
import type PluginManager from '@jbrowse/core/PluginManager';
|
|
3
4
|
import type { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
4
5
|
import type { AnyReactComponentType, Feature } from '@jbrowse/core/util';
|
|
@@ -39,6 +40,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
39
40
|
statusMessage?: string;
|
|
40
41
|
reactElement?: React.ReactElement;
|
|
41
42
|
isRenderingPending?: boolean;
|
|
43
|
+
displayHeight?: number;
|
|
42
44
|
};
|
|
43
45
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
44
46
|
renderProps: any;
|
|
@@ -57,10 +59,11 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
57
59
|
beforeDestroy(): void;
|
|
58
60
|
} & {
|
|
59
61
|
readonly statusMessage: any;
|
|
62
|
+
readonly displayHeight: number | undefined;
|
|
60
63
|
} & {
|
|
61
64
|
afterAttach(): void;
|
|
62
65
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
63
|
-
configuration: import("
|
|
66
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
64
67
|
maxFeatureScreenDensity: {
|
|
65
68
|
type: string;
|
|
66
69
|
description: string;
|
|
@@ -87,7 +90,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
87
90
|
description: string;
|
|
88
91
|
defaultValue: never[];
|
|
89
92
|
};
|
|
90
|
-
}, import("
|
|
93
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
91
94
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
92
95
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
93
96
|
} & {
|
|
@@ -112,6 +115,10 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
112
115
|
type: import("@jbrowse/mobx-state-tree").ISimpleType<"MultiLinearWiggleDisplay">;
|
|
113
116
|
layout: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IType<Source[], Source[], Source[]>, [undefined]>;
|
|
114
117
|
showSidebar: import("@jbrowse/mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
118
|
+
clusterTree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
|
|
119
|
+
treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
120
|
+
showTreeSetting: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
121
|
+
subtreeFilter: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>;
|
|
115
122
|
}, {
|
|
116
123
|
rendererTypeName: string;
|
|
117
124
|
error: unknown;
|
|
@@ -400,6 +407,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
400
407
|
statusMessage?: string;
|
|
401
408
|
reactElement?: React.ReactElement;
|
|
402
409
|
isRenderingPending?: boolean;
|
|
410
|
+
displayHeight?: number;
|
|
403
411
|
};
|
|
404
412
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
405
413
|
renderProps: any;
|
|
@@ -418,6 +426,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
418
426
|
beforeDestroy(): void;
|
|
419
427
|
} & {
|
|
420
428
|
readonly statusMessage: any;
|
|
429
|
+
readonly displayHeight: number | undefined;
|
|
421
430
|
} & {
|
|
422
431
|
afterAttach(): void;
|
|
423
432
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
|
|
@@ -444,6 +453,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
444
453
|
statusMessage?: string;
|
|
445
454
|
reactElement?: React.ReactElement;
|
|
446
455
|
isRenderingPending?: boolean;
|
|
456
|
+
displayHeight?: number;
|
|
447
457
|
};
|
|
448
458
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
449
459
|
renderProps: any;
|
|
@@ -462,6 +472,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
462
472
|
beforeDestroy(): void;
|
|
463
473
|
} & {
|
|
464
474
|
readonly statusMessage: any;
|
|
475
|
+
readonly displayHeight: number | undefined;
|
|
465
476
|
} & {
|
|
466
477
|
afterAttach(): void;
|
|
467
478
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -475,7 +486,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
475
486
|
[x: string]: any;
|
|
476
487
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
477
488
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
478
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
489
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
479
490
|
maxFeatureScreenDensity: {
|
|
480
491
|
type: string;
|
|
481
492
|
description: string;
|
|
@@ -502,7 +513,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
502
513
|
description: string;
|
|
503
514
|
defaultValue: never[];
|
|
504
515
|
};
|
|
505
|
-
}, import("
|
|
516
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
|
|
506
517
|
showLegend: boolean | undefined;
|
|
507
518
|
showTooltips: boolean | undefined;
|
|
508
519
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -792,6 +803,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
792
803
|
statusMessage?: string;
|
|
793
804
|
reactElement?: React.ReactElement;
|
|
794
805
|
isRenderingPending?: boolean;
|
|
806
|
+
displayHeight?: number;
|
|
795
807
|
};
|
|
796
808
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
797
809
|
renderProps: any;
|
|
@@ -810,10 +822,11 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
810
822
|
beforeDestroy(): void;
|
|
811
823
|
} & {
|
|
812
824
|
readonly statusMessage: any;
|
|
825
|
+
readonly displayHeight: number | undefined;
|
|
813
826
|
} & {
|
|
814
827
|
afterAttach(): void;
|
|
815
828
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
816
|
-
configuration: import("
|
|
829
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
817
830
|
maxFeatureScreenDensity: {
|
|
818
831
|
type: string;
|
|
819
832
|
description: string;
|
|
@@ -840,7 +853,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
840
853
|
description: string;
|
|
841
854
|
defaultValue: never[];
|
|
842
855
|
};
|
|
843
|
-
}, import("
|
|
856
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
844
857
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
845
858
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
846
859
|
}, {
|
|
@@ -1111,6 +1124,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1111
1124
|
currStatsBpPerPx: number;
|
|
1112
1125
|
scoreMin: number;
|
|
1113
1126
|
scoreMax: number;
|
|
1127
|
+
scoreMeanMin?: number;
|
|
1128
|
+
scoreMeanMax?: number;
|
|
1114
1129
|
statsRegion?: string;
|
|
1115
1130
|
} | undefined;
|
|
1116
1131
|
statsFetchInProgress: undefined | StopToken;
|
|
@@ -1119,6 +1134,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1119
1134
|
currStatsBpPerPx: number;
|
|
1120
1135
|
scoreMin: number;
|
|
1121
1136
|
scoreMax: number;
|
|
1137
|
+
scoreMeanMin?: number;
|
|
1138
|
+
scoreMeanMax?: number;
|
|
1122
1139
|
}, statsRegion?: string): void;
|
|
1123
1140
|
setColor(color?: string): void;
|
|
1124
1141
|
setPosColor(color?: string): void;
|
|
@@ -1167,6 +1184,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1167
1184
|
currStatsBpPerPx: number;
|
|
1168
1185
|
scoreMin: number;
|
|
1169
1186
|
scoreMax: number;
|
|
1187
|
+
scoreMeanMin?: number;
|
|
1188
|
+
scoreMeanMax?: number;
|
|
1170
1189
|
statsRegion?: string;
|
|
1171
1190
|
} | undefined;
|
|
1172
1191
|
autoscaleType: string;
|
|
@@ -1205,11 +1224,21 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1205
1224
|
sourcesLoadingStopToken: StopToken | undefined;
|
|
1206
1225
|
featureUnderMouseVolatile: Feature | undefined;
|
|
1207
1226
|
sourcesVolatile: Source[] | undefined;
|
|
1227
|
+
hoveredTreeNode: HoveredTreeNode | undefined;
|
|
1228
|
+
treeCanvas: HTMLCanvasElement | undefined;
|
|
1229
|
+
mouseoverCanvas: HTMLCanvasElement | undefined;
|
|
1208
1230
|
} & {
|
|
1209
1231
|
setShowSidebar(arg: boolean): void;
|
|
1210
1232
|
setSourcesLoading(str: StopToken): void;
|
|
1211
|
-
setLayout(layout: Source[]): void;
|
|
1233
|
+
setLayout(layout: Source[], clearTree?: boolean): void;
|
|
1212
1234
|
clearLayout(): void;
|
|
1235
|
+
setClusterTree(tree?: string): void;
|
|
1236
|
+
setTreeAreaWidth(width: number): void;
|
|
1237
|
+
setShowTree(arg: boolean): void;
|
|
1238
|
+
setSubtreeFilter(names?: string[]): void;
|
|
1239
|
+
setHoveredTreeNode(node?: HoveredTreeNode): void;
|
|
1240
|
+
setTreeCanvasRef(ref: HTMLCanvasElement | null): void;
|
|
1241
|
+
setMouseoverCanvasRef(ref: HTMLCanvasElement | null): void;
|
|
1213
1242
|
setSources(sources: Source[]): void;
|
|
1214
1243
|
setFeatureUnderMouse(f?: Feature): void;
|
|
1215
1244
|
} & {
|
|
@@ -1240,9 +1269,14 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1240
1269
|
}[] | undefined;
|
|
1241
1270
|
readonly quantitativeStatsReady: boolean;
|
|
1242
1271
|
} & {
|
|
1272
|
+
readonly showTree: boolean;
|
|
1243
1273
|
readonly rowHeight: number;
|
|
1244
1274
|
readonly rowHeightTooSmallForScalebar: boolean;
|
|
1245
1275
|
readonly useMinimalTicks: boolean;
|
|
1276
|
+
readonly root: any;
|
|
1277
|
+
} & {
|
|
1278
|
+
readonly totalHeight: number;
|
|
1279
|
+
readonly hierarchy: any;
|
|
1246
1280
|
} & {
|
|
1247
1281
|
adapterProps(): any;
|
|
1248
1282
|
readonly ticks: {
|
|
@@ -1290,6 +1324,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1290
1324
|
statusMessage?: string;
|
|
1291
1325
|
reactElement?: React.ReactElement;
|
|
1292
1326
|
isRenderingPending?: boolean;
|
|
1327
|
+
displayHeight?: number;
|
|
1293
1328
|
};
|
|
1294
1329
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1295
1330
|
renderProps: any;
|
|
@@ -1308,6 +1343,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1308
1343
|
beforeDestroy(): void;
|
|
1309
1344
|
} & {
|
|
1310
1345
|
readonly statusMessage: any;
|
|
1346
|
+
readonly displayHeight: number | undefined;
|
|
1311
1347
|
} & {
|
|
1312
1348
|
afterAttach(): void;
|
|
1313
1349
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
|
|
@@ -1334,6 +1370,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1334
1370
|
statusMessage?: string;
|
|
1335
1371
|
reactElement?: React.ReactElement;
|
|
1336
1372
|
isRenderingPending?: boolean;
|
|
1373
|
+
displayHeight?: number;
|
|
1337
1374
|
};
|
|
1338
1375
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1339
1376
|
renderProps: any;
|
|
@@ -1352,6 +1389,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1352
1389
|
beforeDestroy(): void;
|
|
1353
1390
|
} & {
|
|
1354
1391
|
readonly statusMessage: any;
|
|
1392
|
+
readonly displayHeight: number | undefined;
|
|
1355
1393
|
} & {
|
|
1356
1394
|
afterAttach(): void;
|
|
1357
1395
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -1365,7 +1403,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1365
1403
|
[x: string]: any;
|
|
1366
1404
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
1367
1405
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
1368
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
1406
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
1369
1407
|
maxFeatureScreenDensity: {
|
|
1370
1408
|
type: string;
|
|
1371
1409
|
description: string;
|
|
@@ -1392,7 +1430,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1392
1430
|
description: string;
|
|
1393
1431
|
defaultValue: never[];
|
|
1394
1432
|
};
|
|
1395
|
-
}, import("
|
|
1433
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">> & AnyConfigurationSchemaType> & {
|
|
1396
1434
|
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
1397
1435
|
[x: string]: any;
|
|
1398
1436
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
@@ -1420,6 +1458,10 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1420
1458
|
}, {}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
1421
1459
|
layout: Source[] & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IType<Source[], Source[], Source[]>, [undefined]>>;
|
|
1422
1460
|
showSidebar: boolean;
|
|
1461
|
+
clusterTree: string | undefined;
|
|
1462
|
+
treeAreaWidth: number;
|
|
1463
|
+
showTreeSetting: boolean | undefined;
|
|
1464
|
+
subtreeFilter: (import("@jbrowse/mobx-state-tree").IMSTArray<import("@jbrowse/mobx-state-tree").ISimpleType<string>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>>) | undefined;
|
|
1423
1465
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1424
1466
|
rendererTypeName: string;
|
|
1425
1467
|
error: unknown;
|
|
@@ -1708,6 +1750,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1708
1750
|
statusMessage?: string;
|
|
1709
1751
|
reactElement?: React.ReactElement;
|
|
1710
1752
|
isRenderingPending?: boolean;
|
|
1753
|
+
displayHeight?: number;
|
|
1711
1754
|
};
|
|
1712
1755
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1713
1756
|
renderProps: any;
|
|
@@ -1726,6 +1769,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1726
1769
|
beforeDestroy(): void;
|
|
1727
1770
|
} & {
|
|
1728
1771
|
readonly statusMessage: any;
|
|
1772
|
+
readonly displayHeight: number | undefined;
|
|
1729
1773
|
} & {
|
|
1730
1774
|
afterAttach(): void;
|
|
1731
1775
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
|
|
@@ -1752,6 +1796,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1752
1796
|
statusMessage?: string;
|
|
1753
1797
|
reactElement?: React.ReactElement;
|
|
1754
1798
|
isRenderingPending?: boolean;
|
|
1799
|
+
displayHeight?: number;
|
|
1755
1800
|
};
|
|
1756
1801
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1757
1802
|
renderProps: any;
|
|
@@ -1770,6 +1815,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1770
1815
|
beforeDestroy(): void;
|
|
1771
1816
|
} & {
|
|
1772
1817
|
readonly statusMessage: any;
|
|
1818
|
+
readonly displayHeight: number | undefined;
|
|
1773
1819
|
} & {
|
|
1774
1820
|
afterAttach(): void;
|
|
1775
1821
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -1783,7 +1829,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1783
1829
|
[x: string]: any;
|
|
1784
1830
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
1785
1831
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
1786
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
1832
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
1787
1833
|
maxFeatureScreenDensity: {
|
|
1788
1834
|
type: string;
|
|
1789
1835
|
description: string;
|
|
@@ -1810,7 +1856,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
1810
1856
|
description: string;
|
|
1811
1857
|
defaultValue: never[];
|
|
1812
1858
|
};
|
|
1813
|
-
}, import("
|
|
1859
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
|
|
1814
1860
|
showLegend: boolean | undefined;
|
|
1815
1861
|
showTooltips: boolean | undefined;
|
|
1816
1862
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -2100,6 +2146,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2100
2146
|
statusMessage?: string;
|
|
2101
2147
|
reactElement?: React.ReactElement;
|
|
2102
2148
|
isRenderingPending?: boolean;
|
|
2149
|
+
displayHeight?: number;
|
|
2103
2150
|
};
|
|
2104
2151
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2105
2152
|
renderProps: any;
|
|
@@ -2118,10 +2165,11 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2118
2165
|
beforeDestroy(): void;
|
|
2119
2166
|
} & {
|
|
2120
2167
|
readonly statusMessage: any;
|
|
2168
|
+
readonly displayHeight: number | undefined;
|
|
2121
2169
|
} & {
|
|
2122
2170
|
afterAttach(): void;
|
|
2123
2171
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
2124
|
-
configuration: import("
|
|
2172
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2125
2173
|
maxFeatureScreenDensity: {
|
|
2126
2174
|
type: string;
|
|
2127
2175
|
description: string;
|
|
@@ -2148,7 +2196,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2148
2196
|
description: string;
|
|
2149
2197
|
defaultValue: never[];
|
|
2150
2198
|
};
|
|
2151
|
-
}, import("
|
|
2199
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
2152
2200
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2153
2201
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2154
2202
|
}, {
|
|
@@ -2419,6 +2467,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2419
2467
|
currStatsBpPerPx: number;
|
|
2420
2468
|
scoreMin: number;
|
|
2421
2469
|
scoreMax: number;
|
|
2470
|
+
scoreMeanMin?: number;
|
|
2471
|
+
scoreMeanMax?: number;
|
|
2422
2472
|
statsRegion?: string;
|
|
2423
2473
|
} | undefined;
|
|
2424
2474
|
statsFetchInProgress: undefined | StopToken;
|
|
@@ -2427,6 +2477,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2427
2477
|
currStatsBpPerPx: number;
|
|
2428
2478
|
scoreMin: number;
|
|
2429
2479
|
scoreMax: number;
|
|
2480
|
+
scoreMeanMin?: number;
|
|
2481
|
+
scoreMeanMax?: number;
|
|
2430
2482
|
}, statsRegion?: string): void;
|
|
2431
2483
|
setColor(color?: string): void;
|
|
2432
2484
|
setPosColor(color?: string): void;
|
|
@@ -2475,6 +2527,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2475
2527
|
currStatsBpPerPx: number;
|
|
2476
2528
|
scoreMin: number;
|
|
2477
2529
|
scoreMax: number;
|
|
2530
|
+
scoreMeanMin?: number;
|
|
2531
|
+
scoreMeanMax?: number;
|
|
2478
2532
|
statsRegion?: string;
|
|
2479
2533
|
} | undefined;
|
|
2480
2534
|
autoscaleType: string;
|
|
@@ -2513,11 +2567,21 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2513
2567
|
sourcesLoadingStopToken: StopToken | undefined;
|
|
2514
2568
|
featureUnderMouseVolatile: Feature | undefined;
|
|
2515
2569
|
sourcesVolatile: Source[] | undefined;
|
|
2570
|
+
hoveredTreeNode: HoveredTreeNode | undefined;
|
|
2571
|
+
treeCanvas: HTMLCanvasElement | undefined;
|
|
2572
|
+
mouseoverCanvas: HTMLCanvasElement | undefined;
|
|
2516
2573
|
} & {
|
|
2517
2574
|
setShowSidebar(arg: boolean): void;
|
|
2518
2575
|
setSourcesLoading(str: StopToken): void;
|
|
2519
|
-
setLayout(layout: Source[]): void;
|
|
2576
|
+
setLayout(layout: Source[], clearTree?: boolean): void;
|
|
2520
2577
|
clearLayout(): void;
|
|
2578
|
+
setClusterTree(tree?: string): void;
|
|
2579
|
+
setTreeAreaWidth(width: number): void;
|
|
2580
|
+
setShowTree(arg: boolean): void;
|
|
2581
|
+
setSubtreeFilter(names?: string[]): void;
|
|
2582
|
+
setHoveredTreeNode(node?: HoveredTreeNode): void;
|
|
2583
|
+
setTreeCanvasRef(ref: HTMLCanvasElement | null): void;
|
|
2584
|
+
setMouseoverCanvasRef(ref: HTMLCanvasElement | null): void;
|
|
2521
2585
|
setSources(sources: Source[]): void;
|
|
2522
2586
|
setFeatureUnderMouse(f?: Feature): void;
|
|
2523
2587
|
} & {
|
|
@@ -2548,9 +2612,14 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2548
2612
|
}[] | undefined;
|
|
2549
2613
|
readonly quantitativeStatsReady: boolean;
|
|
2550
2614
|
} & {
|
|
2615
|
+
readonly showTree: boolean;
|
|
2551
2616
|
readonly rowHeight: number;
|
|
2552
2617
|
readonly rowHeightTooSmallForScalebar: boolean;
|
|
2553
2618
|
readonly useMinimalTicks: boolean;
|
|
2619
|
+
readonly root: any;
|
|
2620
|
+
} & {
|
|
2621
|
+
readonly totalHeight: number;
|
|
2622
|
+
readonly hierarchy: any;
|
|
2554
2623
|
} & {
|
|
2555
2624
|
adapterProps(): any;
|
|
2556
2625
|
readonly ticks: {
|
|
@@ -2595,6 +2664,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2595
2664
|
statusMessage?: string;
|
|
2596
2665
|
reactElement?: React.ReactElement;
|
|
2597
2666
|
isRenderingPending?: boolean;
|
|
2667
|
+
displayHeight?: number;
|
|
2598
2668
|
};
|
|
2599
2669
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2600
2670
|
renderProps: any;
|
|
@@ -2613,10 +2683,11 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2613
2683
|
beforeDestroy(): void;
|
|
2614
2684
|
} & {
|
|
2615
2685
|
readonly statusMessage: any;
|
|
2686
|
+
readonly displayHeight: number | undefined;
|
|
2616
2687
|
} & {
|
|
2617
2688
|
afterAttach(): void;
|
|
2618
2689
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
2619
|
-
configuration: import("
|
|
2690
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2620
2691
|
maxFeatureScreenDensity: {
|
|
2621
2692
|
type: string;
|
|
2622
2693
|
description: string;
|
|
@@ -2643,7 +2714,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2643
2714
|
description: string;
|
|
2644
2715
|
defaultValue: never[];
|
|
2645
2716
|
};
|
|
2646
|
-
}, import("
|
|
2717
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
2647
2718
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2648
2719
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2649
2720
|
} & {
|
|
@@ -2668,6 +2739,10 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2668
2739
|
type: import("@jbrowse/mobx-state-tree").ISimpleType<"MultiLinearWiggleDisplay">;
|
|
2669
2740
|
layout: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IType<Source[], Source[], Source[]>, [undefined]>;
|
|
2670
2741
|
showSidebar: import("@jbrowse/mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2742
|
+
clusterTree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
|
|
2743
|
+
treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
2744
|
+
showTreeSetting: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2745
|
+
subtreeFilter: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>;
|
|
2671
2746
|
}, {
|
|
2672
2747
|
rendererTypeName: string;
|
|
2673
2748
|
error: unknown;
|
|
@@ -2956,6 +3031,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2956
3031
|
statusMessage?: string;
|
|
2957
3032
|
reactElement?: React.ReactElement;
|
|
2958
3033
|
isRenderingPending?: boolean;
|
|
3034
|
+
displayHeight?: number;
|
|
2959
3035
|
};
|
|
2960
3036
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2961
3037
|
renderProps: any;
|
|
@@ -2974,6 +3050,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
2974
3050
|
beforeDestroy(): void;
|
|
2975
3051
|
} & {
|
|
2976
3052
|
readonly statusMessage: any;
|
|
3053
|
+
readonly displayHeight: number | undefined;
|
|
2977
3054
|
} & {
|
|
2978
3055
|
afterAttach(): void;
|
|
2979
3056
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
|
|
@@ -3000,6 +3077,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3000
3077
|
statusMessage?: string;
|
|
3001
3078
|
reactElement?: React.ReactElement;
|
|
3002
3079
|
isRenderingPending?: boolean;
|
|
3080
|
+
displayHeight?: number;
|
|
3003
3081
|
};
|
|
3004
3082
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
3005
3083
|
renderProps: any;
|
|
@@ -3018,6 +3096,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3018
3096
|
beforeDestroy(): void;
|
|
3019
3097
|
} & {
|
|
3020
3098
|
readonly statusMessage: any;
|
|
3099
|
+
readonly displayHeight: number | undefined;
|
|
3021
3100
|
} & {
|
|
3022
3101
|
afterAttach(): void;
|
|
3023
3102
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -3031,7 +3110,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3031
3110
|
[x: string]: any;
|
|
3032
3111
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
3033
3112
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
3034
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
3113
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3035
3114
|
maxFeatureScreenDensity: {
|
|
3036
3115
|
type: string;
|
|
3037
3116
|
description: string;
|
|
@@ -3058,7 +3137,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3058
3137
|
description: string;
|
|
3059
3138
|
defaultValue: never[];
|
|
3060
3139
|
};
|
|
3061
|
-
}, import("
|
|
3140
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
|
|
3062
3141
|
showLegend: boolean | undefined;
|
|
3063
3142
|
showTooltips: boolean | undefined;
|
|
3064
3143
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -3348,6 +3427,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3348
3427
|
statusMessage?: string;
|
|
3349
3428
|
reactElement?: React.ReactElement;
|
|
3350
3429
|
isRenderingPending?: boolean;
|
|
3430
|
+
displayHeight?: number;
|
|
3351
3431
|
};
|
|
3352
3432
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
3353
3433
|
renderProps: any;
|
|
@@ -3366,10 +3446,11 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3366
3446
|
beforeDestroy(): void;
|
|
3367
3447
|
} & {
|
|
3368
3448
|
readonly statusMessage: any;
|
|
3449
|
+
readonly displayHeight: number | undefined;
|
|
3369
3450
|
} & {
|
|
3370
3451
|
afterAttach(): void;
|
|
3371
3452
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
3372
|
-
configuration: import("
|
|
3453
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3373
3454
|
maxFeatureScreenDensity: {
|
|
3374
3455
|
type: string;
|
|
3375
3456
|
description: string;
|
|
@@ -3396,7 +3477,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3396
3477
|
description: string;
|
|
3397
3478
|
defaultValue: never[];
|
|
3398
3479
|
};
|
|
3399
|
-
}, import("
|
|
3480
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
3400
3481
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
3401
3482
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
3402
3483
|
}, {
|
|
@@ -3667,6 +3748,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3667
3748
|
currStatsBpPerPx: number;
|
|
3668
3749
|
scoreMin: number;
|
|
3669
3750
|
scoreMax: number;
|
|
3751
|
+
scoreMeanMin?: number;
|
|
3752
|
+
scoreMeanMax?: number;
|
|
3670
3753
|
statsRegion?: string;
|
|
3671
3754
|
} | undefined;
|
|
3672
3755
|
statsFetchInProgress: undefined | StopToken;
|
|
@@ -3675,6 +3758,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3675
3758
|
currStatsBpPerPx: number;
|
|
3676
3759
|
scoreMin: number;
|
|
3677
3760
|
scoreMax: number;
|
|
3761
|
+
scoreMeanMin?: number;
|
|
3762
|
+
scoreMeanMax?: number;
|
|
3678
3763
|
}, statsRegion?: string): void;
|
|
3679
3764
|
setColor(color?: string): void;
|
|
3680
3765
|
setPosColor(color?: string): void;
|
|
@@ -3723,6 +3808,8 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3723
3808
|
currStatsBpPerPx: number;
|
|
3724
3809
|
scoreMin: number;
|
|
3725
3810
|
scoreMax: number;
|
|
3811
|
+
scoreMeanMin?: number;
|
|
3812
|
+
scoreMeanMax?: number;
|
|
3726
3813
|
statsRegion?: string;
|
|
3727
3814
|
} | undefined;
|
|
3728
3815
|
autoscaleType: string;
|
|
@@ -3761,11 +3848,21 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3761
3848
|
sourcesLoadingStopToken: StopToken | undefined;
|
|
3762
3849
|
featureUnderMouseVolatile: Feature | undefined;
|
|
3763
3850
|
sourcesVolatile: Source[] | undefined;
|
|
3851
|
+
hoveredTreeNode: HoveredTreeNode | undefined;
|
|
3852
|
+
treeCanvas: HTMLCanvasElement | undefined;
|
|
3853
|
+
mouseoverCanvas: HTMLCanvasElement | undefined;
|
|
3764
3854
|
} & {
|
|
3765
3855
|
setShowSidebar(arg: boolean): void;
|
|
3766
3856
|
setSourcesLoading(str: StopToken): void;
|
|
3767
|
-
setLayout(layout: Source[]): void;
|
|
3857
|
+
setLayout(layout: Source[], clearTree?: boolean): void;
|
|
3768
3858
|
clearLayout(): void;
|
|
3859
|
+
setClusterTree(tree?: string): void;
|
|
3860
|
+
setTreeAreaWidth(width: number): void;
|
|
3861
|
+
setShowTree(arg: boolean): void;
|
|
3862
|
+
setSubtreeFilter(names?: string[]): void;
|
|
3863
|
+
setHoveredTreeNode(node?: HoveredTreeNode): void;
|
|
3864
|
+
setTreeCanvasRef(ref: HTMLCanvasElement | null): void;
|
|
3865
|
+
setMouseoverCanvasRef(ref: HTMLCanvasElement | null): void;
|
|
3769
3866
|
setSources(sources: Source[]): void;
|
|
3770
3867
|
setFeatureUnderMouse(f?: Feature): void;
|
|
3771
3868
|
} & {
|
|
@@ -3796,9 +3893,14 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3796
3893
|
}[] | undefined;
|
|
3797
3894
|
readonly quantitativeStatsReady: boolean;
|
|
3798
3895
|
} & {
|
|
3896
|
+
readonly showTree: boolean;
|
|
3799
3897
|
readonly rowHeight: number;
|
|
3800
3898
|
readonly rowHeightTooSmallForScalebar: boolean;
|
|
3801
3899
|
readonly useMinimalTicks: boolean;
|
|
3900
|
+
readonly root: any;
|
|
3901
|
+
} & {
|
|
3902
|
+
readonly totalHeight: number;
|
|
3903
|
+
readonly hierarchy: any;
|
|
3802
3904
|
} & {
|
|
3803
3905
|
adapterProps(): any;
|
|
3804
3906
|
readonly ticks: {
|
|
@@ -3853,12 +3955,25 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3853
3955
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
3854
3956
|
muiName: string;
|
|
3855
3957
|
};
|
|
3856
|
-
subMenu: {
|
|
3958
|
+
subMenu: ({
|
|
3959
|
+
label: string;
|
|
3960
|
+
type: string;
|
|
3961
|
+
checked: boolean;
|
|
3962
|
+
disabled: boolean;
|
|
3963
|
+
onClick: () => void;
|
|
3964
|
+
} | {
|
|
3965
|
+
label: string;
|
|
3966
|
+
onClick: () => void;
|
|
3967
|
+
type?: undefined;
|
|
3968
|
+
checked?: undefined;
|
|
3969
|
+
disabled?: undefined;
|
|
3970
|
+
} | {
|
|
3857
3971
|
type: string;
|
|
3858
3972
|
label: string;
|
|
3859
3973
|
checked: any;
|
|
3860
3974
|
onClick: () => void;
|
|
3861
|
-
|
|
3975
|
+
disabled?: undefined;
|
|
3976
|
+
})[];
|
|
3862
3977
|
} | {
|
|
3863
3978
|
label: string;
|
|
3864
3979
|
icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
|
|
@@ -3932,6 +4047,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3932
4047
|
statusMessage?: string;
|
|
3933
4048
|
reactElement?: React.ReactElement;
|
|
3934
4049
|
isRenderingPending?: boolean;
|
|
4050
|
+
displayHeight?: number;
|
|
3935
4051
|
};
|
|
3936
4052
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
3937
4053
|
renderProps: any;
|
|
@@ -3950,10 +4066,11 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3950
4066
|
beforeDestroy(): void;
|
|
3951
4067
|
} & {
|
|
3952
4068
|
readonly statusMessage: any;
|
|
4069
|
+
readonly displayHeight: number | undefined;
|
|
3953
4070
|
} & {
|
|
3954
4071
|
afterAttach(): void;
|
|
3955
4072
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
3956
|
-
configuration: import("
|
|
4073
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3957
4074
|
maxFeatureScreenDensity: {
|
|
3958
4075
|
type: string;
|
|
3959
4076
|
description: string;
|
|
@@ -3980,7 +4097,7 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
3980
4097
|
description: string;
|
|
3981
4098
|
defaultValue: never[];
|
|
3982
4099
|
};
|
|
3983
|
-
}, import("
|
|
4100
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
3984
4101
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
3985
4102
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
3986
4103
|
} & {
|
|
@@ -4005,6 +4122,10 @@ export declare function stateModelFactory(_pluginManager: PluginManager, configS
|
|
|
4005
4122
|
type: import("@jbrowse/mobx-state-tree").ISimpleType<"MultiLinearWiggleDisplay">;
|
|
4006
4123
|
layout: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IType<Source[], Source[], Source[]>, [undefined]>;
|
|
4007
4124
|
showSidebar: import("@jbrowse/mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4125
|
+
clusterTree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
|
|
4126
|
+
treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
4127
|
+
showTreeSetting: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
4128
|
+
subtreeFilter: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>;
|
|
4008
4129
|
}>>;
|
|
4009
4130
|
export type WiggleDisplayStateModel = ReturnType<typeof stateModelFactory>;
|
|
4010
4131
|
export type WiggleDisplayModel = Instance<WiggleDisplayStateModel>;
|