@jbrowse/plugin-linear-comparative-view 2.12.0 → 2.12.1
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/LGVSyntenyDisplay/components/LaunchSyntenyViewDialog.js +1 -1
- package/dist/LGVSyntenyDisplay/components/util.js +1 -2
- package/dist/LGVSyntenyDisplay/index.js +1 -1
- package/dist/LGVSyntenyDisplay/model.d.ts +35 -36
- package/dist/LaunchLinearSyntenyView.js +1 -1
- package/dist/LinearComparativeDisplay/index.js +1 -1
- package/dist/LinearComparativeDisplay/stateModelFactory.d.ts +34 -49
- package/dist/LinearComparativeView/index.js +1 -1
- package/dist/LinearComparativeView/model.d.ts +21 -150
- package/dist/LinearReadVsRef/LinearReadVsRef.js +1 -1
- package/dist/LinearReadVsRef/index.js +1 -1
- package/dist/LinearSyntenyDisplay/afterAttach.js +1 -2
- package/dist/LinearSyntenyDisplay/components/SyntenyContextMenu.js +1 -1
- package/dist/LinearSyntenyDisplay/components/util.js +7 -8
- package/dist/LinearSyntenyDisplay/drawSynteny.js +4 -4
- package/dist/LinearSyntenyDisplay/index.js +1 -1
- package/dist/LinearSyntenyDisplay/model.d.ts +26 -36
- package/dist/LinearSyntenyView/components/ExportSvgDialog.js +1 -1
- package/dist/LinearSyntenyView/components/Icons.js +2 -3
- package/dist/LinearSyntenyView/components/ImportForm/util.js +4 -5
- package/dist/LinearSyntenyView/index.js +1 -1
- package/dist/LinearSyntenyView/model.d.ts +24 -838
- package/dist/LinearSyntenyView/model.js +1 -1
- package/dist/LinearSyntenyView/svgcomponents/SVGBackground.js +1 -1
- package/dist/LinearSyntenyView/svgcomponents/SVGLinearSyntenyView.js +1 -2
- package/dist/SyntenyFeatureDetail/index.js +1 -1
- package/dist/SyntenyTrack/index.js +1 -1
- package/dist/util.js +5 -6
- package/esm/LGVSyntenyDisplay/model.d.ts +35 -36
- package/esm/LinearComparativeDisplay/stateModelFactory.d.ts +34 -49
- package/esm/LinearComparativeView/model.d.ts +21 -150
- package/esm/LinearSyntenyDisplay/model.d.ts +26 -36
- package/esm/LinearSyntenyView/model.d.ts +24 -838
- package/package.json +2 -2
|
@@ -23,6 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.default = LaunchSyntenyViewDialog;
|
|
26
27
|
const react_1 = __importStar(require("react"));
|
|
27
28
|
const ui_1 = require("@jbrowse/core/ui");
|
|
28
29
|
const util_1 = require("@jbrowse/core/util");
|
|
@@ -66,4 +67,3 @@ function LaunchSyntenyViewDialog({ model, feature, handleClose, }) {
|
|
|
66
67
|
} }, "Submit"),
|
|
67
68
|
react_1.default.createElement(material_1.Button, { variant: "contained", color: "secondary", onClick: () => handleClose() }, "Cancel"))));
|
|
68
69
|
}
|
|
69
|
-
exports.default = LaunchSyntenyViewDialog;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.navToSynteny =
|
|
3
|
+
exports.navToSynteny = navToSynteny;
|
|
4
4
|
const util_1 = require("@jbrowse/core/util");
|
|
5
5
|
const plugin_alignments_1 = require("@jbrowse/plugin-alignments");
|
|
6
6
|
const mobx_1 = require("mobx");
|
|
@@ -108,4 +108,3 @@ async function navToSynteny({ feature, windowSize: ws, model, horizontallyFlip,
|
|
|
108
108
|
view2.views[1].navToLocString(l2, mateAsm),
|
|
109
109
|
]);
|
|
110
110
|
}
|
|
111
|
-
exports.navToSynteny = navToSynteny;
|
|
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.default = LGVSyntenyDisplayF;
|
|
6
7
|
const DisplayType_1 = __importDefault(require("@jbrowse/core/pluggableElementTypes/DisplayType"));
|
|
7
8
|
const configSchemaF_1 = __importDefault(require("./configSchemaF"));
|
|
8
9
|
const model_1 = __importDefault(require("./model"));
|
|
@@ -21,4 +22,3 @@ function LGVSyntenyDisplayF(pluginManager) {
|
|
|
21
22
|
});
|
|
22
23
|
});
|
|
23
24
|
}
|
|
24
|
-
exports.default = LGVSyntenyDisplayF;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
3
2
|
/**
|
|
4
3
|
* #stateModel LGVSyntenyDisplay
|
|
@@ -36,7 +35,7 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
36
35
|
}, {
|
|
37
36
|
renderInProgress: AbortController | undefined;
|
|
38
37
|
filled: boolean;
|
|
39
|
-
reactElement: import("react").ReactElement
|
|
38
|
+
reactElement: import("react").ReactElement | undefined;
|
|
40
39
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
41
40
|
layout: any;
|
|
42
41
|
status: string;
|
|
@@ -48,9 +47,9 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
48
47
|
error?: unknown;
|
|
49
48
|
reload: () => void;
|
|
50
49
|
message: import("react").ReactNode;
|
|
51
|
-
filled?: boolean
|
|
52
|
-
status?: string
|
|
53
|
-
reactElement?: import("react").ReactElement
|
|
50
|
+
filled?: boolean;
|
|
51
|
+
status?: string;
|
|
52
|
+
reactElement?: import("react").ReactElement;
|
|
54
53
|
};
|
|
55
54
|
}) => import("react").JSX.Element | undefined;
|
|
56
55
|
renderProps: any;
|
|
@@ -61,7 +60,7 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
61
60
|
setLoading(abortController: AbortController): void;
|
|
62
61
|
setMessage(messageText: string): void;
|
|
63
62
|
setRendered(props: {
|
|
64
|
-
reactElement: import("react").ReactElement
|
|
63
|
+
reactElement: import("react").ReactElement;
|
|
65
64
|
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
66
65
|
layout: any;
|
|
67
66
|
maxHeightReached: boolean;
|
|
@@ -152,16 +151,14 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
152
151
|
error: unknown;
|
|
153
152
|
message: string | undefined;
|
|
154
153
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
155
|
-
onHorizontalScroll?: Function
|
|
156
|
-
blockState?: Record<string, any
|
|
154
|
+
onHorizontalScroll?: Function;
|
|
155
|
+
blockState?: Record<string, any>;
|
|
157
156
|
}>;
|
|
158
157
|
readonly DisplayBlurb: import("react").FC<{
|
|
159
158
|
model: {
|
|
160
159
|
id: string;
|
|
161
160
|
type: string;
|
|
162
|
-
rpcDriverName: string | undefined;
|
|
163
|
-
* #method
|
|
164
|
-
*/
|
|
161
|
+
rpcDriverName: string | undefined;
|
|
165
162
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
166
163
|
rendererTypeName: string;
|
|
167
164
|
error: unknown;
|
|
@@ -180,12 +177,12 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
180
177
|
readonly parentTrack: any;
|
|
181
178
|
renderProps(): any;
|
|
182
179
|
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
183
|
-
readonly DisplayMessageComponent: import("react").FC<any
|
|
180
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
184
181
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
185
182
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
186
183
|
regionCannotBeRendered(): null;
|
|
187
184
|
} & {
|
|
188
|
-
setMessage(arg?: string
|
|
185
|
+
setMessage(arg?: string): void;
|
|
189
186
|
setError(error?: unknown): void;
|
|
190
187
|
setRpcDriverName(rpcDriverName: string): void;
|
|
191
188
|
reload(): void;
|
|
@@ -198,8 +195,8 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
198
195
|
setHeight(displayHeight: number): number;
|
|
199
196
|
resizeHeight(distance: number): number;
|
|
200
197
|
} & {
|
|
201
|
-
featureDensityStatsP: Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
202
|
-
featureDensityStats: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
198
|
+
featureDensityStatsP: undefined | Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats>;
|
|
199
|
+
featureDensityStats: undefined | import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats;
|
|
203
200
|
currStatsBpPerPx: number;
|
|
204
201
|
} & {
|
|
205
202
|
readonly currentBytesRequested: number;
|
|
@@ -211,10 +208,10 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
211
208
|
afterAttach(): void;
|
|
212
209
|
} & {
|
|
213
210
|
setCurrStatsBpPerPx(n: number): void;
|
|
214
|
-
setFeatureDensityStatsLimit(stats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
211
|
+
setFeatureDensityStatsLimit(stats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats): void;
|
|
215
212
|
getFeatureDensityStats(): Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats>;
|
|
216
213
|
setFeatureDensityStatsP(arg: any): void;
|
|
217
|
-
setFeatureDensityStats(featureDensityStats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats
|
|
214
|
+
setFeatureDensityStats(featureDensityStats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats): void;
|
|
218
215
|
clearFeatureDensityStats(): void;
|
|
219
216
|
} & {
|
|
220
217
|
readonly regionTooLarge: boolean;
|
|
@@ -223,8 +220,8 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
223
220
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
224
221
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react").JSX.Element | null;
|
|
225
222
|
} & {
|
|
226
|
-
featureIdUnderMouse:
|
|
227
|
-
contextMenuFeature: import("@jbrowse/core/util").Feature
|
|
223
|
+
featureIdUnderMouse: undefined | string;
|
|
224
|
+
contextMenuFeature: undefined | import("@jbrowse/core/util").Feature;
|
|
228
225
|
} & {
|
|
229
226
|
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
230
227
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
@@ -232,7 +229,7 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
232
229
|
readonly renderDelay: number;
|
|
233
230
|
readonly TooltipComponent: import("react").FC<any>;
|
|
234
231
|
readonly selectedFeatureId: string | undefined;
|
|
235
|
-
readonly DisplayMessageComponent: import("react").FC<any
|
|
232
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
236
233
|
} & {
|
|
237
234
|
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
238
235
|
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
@@ -245,8 +242,8 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
245
242
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
246
243
|
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
247
244
|
clearFeatureSelection(): void;
|
|
248
|
-
setFeatureIdUnderMouse(feature?: string
|
|
249
|
-
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature
|
|
245
|
+
setFeatureIdUnderMouse(feature?: string): void;
|
|
246
|
+
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature): void;
|
|
250
247
|
} & {
|
|
251
248
|
reload(): Promise<void>;
|
|
252
249
|
} & {
|
|
@@ -258,36 +255,38 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
258
255
|
afterAttach(): void;
|
|
259
256
|
} & {
|
|
260
257
|
colorTagMap: import("mobx").ObservableMap<string, string>;
|
|
261
|
-
featureUnderMouseVolatile: import("@jbrowse/core/util").Feature
|
|
258
|
+
featureUnderMouseVolatile: undefined | import("@jbrowse/core/util").Feature;
|
|
262
259
|
tagsReady: boolean;
|
|
263
260
|
} & {
|
|
264
261
|
readonly autorunReady: boolean;
|
|
265
262
|
} & {
|
|
266
263
|
setTagsReady(flag: boolean): void;
|
|
267
264
|
setMaxHeight(n: number): void;
|
|
268
|
-
setFeatureHeight(n?: number
|
|
269
|
-
setNoSpacing(flag?: boolean
|
|
265
|
+
setFeatureHeight(n?: number): void;
|
|
266
|
+
setNoSpacing(flag?: boolean): void;
|
|
270
267
|
setColorScheme(colorScheme: {
|
|
271
268
|
type: string;
|
|
272
|
-
tag?: string
|
|
273
|
-
extra?: import("@jbrowse/plugin-alignments/src/shared/color").ExtraColorBy
|
|
269
|
+
tag?: string;
|
|
270
|
+
extra?: import("@jbrowse/plugin-alignments/src/shared/color").ExtraColorBy;
|
|
274
271
|
}): void;
|
|
275
272
|
updateColorTagMap(uniqueTag: string[]): void;
|
|
276
|
-
setFeatureUnderMouse(feat?: import("@jbrowse/core/util").Feature
|
|
273
|
+
setFeatureUnderMouse(feat?: import("@jbrowse/core/util").Feature): void;
|
|
277
274
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
278
275
|
copyFeatureToClipboard(feature: import("@jbrowse/core/util").Feature): void;
|
|
279
|
-
setConfig(conf:
|
|
280
|
-
[x: string]: any;
|
|
281
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
282
|
-
setSubschema(slotName: string, data: unknown): any;
|
|
283
|
-
} & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>): void;
|
|
276
|
+
setConfig(conf: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
|
|
284
277
|
setFilterBy(filter: import("@jbrowse/plugin-alignments/src/shared").IFilter): void;
|
|
285
278
|
setJexlFilters(filters: string[]): void;
|
|
286
279
|
} & {
|
|
287
280
|
readonly rendererConfig: {
|
|
288
281
|
[x: string]: any;
|
|
289
282
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
290
|
-
setSubschema(slotName: string, data: unknown):
|
|
283
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
284
|
+
[x: string]: any;
|
|
285
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
286
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
287
|
+
[x: string]: any;
|
|
288
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
289
|
+
} & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
291
290
|
} & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>;
|
|
292
291
|
} & {
|
|
293
292
|
readonly maxHeight: any;
|
|
@@ -314,8 +313,8 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
314
313
|
pos: number;
|
|
315
314
|
refName: number;
|
|
316
315
|
type: string;
|
|
317
|
-
tag?: string
|
|
318
|
-
}
|
|
316
|
+
tag?: string;
|
|
317
|
+
};
|
|
319
318
|
};
|
|
320
319
|
}) => import("react").JSX.Element | null;
|
|
321
320
|
renderPropsPre(): any;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = LaunchLinearSyntenyView;
|
|
3
4
|
const mobx_1 = require("mobx");
|
|
4
5
|
function LaunchLinearSyntenyView(pluginManager) {
|
|
5
6
|
pluginManager.addToExtensionPoint('LaunchView-LinearSyntenyView',
|
|
@@ -45,7 +46,6 @@ function LaunchLinearSyntenyView(pluginManager) {
|
|
|
45
46
|
}
|
|
46
47
|
});
|
|
47
48
|
}
|
|
48
|
-
exports.default = LaunchLinearSyntenyView;
|
|
49
49
|
function tryTrack(model, trackId, idsNotFound) {
|
|
50
50
|
try {
|
|
51
51
|
model.showTrack(trackId);
|
|
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.default = LinearComparativeDisplayF;
|
|
6
7
|
const DisplayType_1 = __importDefault(require("@jbrowse/core/pluggableElementTypes/DisplayType"));
|
|
7
8
|
const configSchemaF_1 = __importDefault(require("./configSchemaF"));
|
|
8
9
|
const stateModelFactory_1 = __importDefault(require("./stateModelFactory"));
|
|
@@ -21,4 +22,3 @@ function LinearComparativeDisplayF(pluginManager) {
|
|
|
21
22
|
});
|
|
22
23
|
});
|
|
23
24
|
}
|
|
24
|
-
exports.default = LinearComparativeDisplayF;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
3
2
|
import { Instance } from 'mobx-state-tree';
|
|
4
3
|
import { Feature } from '@jbrowse/core/util';
|
|
@@ -23,11 +22,11 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
23
22
|
readonly RenderingComponent: import("react").FC<{
|
|
24
23
|
model: {
|
|
25
24
|
id: string;
|
|
26
|
-
type: string;
|
|
27
|
-
* #property
|
|
28
|
-
*/
|
|
25
|
+
type: string;
|
|
29
26
|
rpcDriverName: string | undefined;
|
|
30
|
-
} & import("mobx-state-tree/dist/internal"
|
|
27
|
+
} & import("mobx-state-tree/dist/internal" /**
|
|
28
|
+
* #property
|
|
29
|
+
*/).NonEmptyObject & {
|
|
31
30
|
rendererTypeName: string;
|
|
32
31
|
error: unknown;
|
|
33
32
|
message: string | undefined;
|
|
@@ -36,15 +35,12 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
36
35
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
37
36
|
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
38
37
|
}, {
|
|
39
|
-
rendererTypeName: string;
|
|
40
|
-
* #action
|
|
41
|
-
* controlled by a reaction
|
|
42
|
-
*/
|
|
38
|
+
rendererTypeName: string;
|
|
43
39
|
error: unknown;
|
|
44
40
|
message: string | undefined;
|
|
45
41
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
46
|
-
onHorizontalScroll?: Function
|
|
47
|
-
blockState?: Record<string, any
|
|
42
|
+
onHorizontalScroll?: Function;
|
|
43
|
+
blockState?: Record<string, any>;
|
|
48
44
|
}>;
|
|
49
45
|
readonly DisplayBlurb: import("react").FC<{
|
|
50
46
|
model: {
|
|
@@ -68,16 +64,13 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
68
64
|
readonly adapterConfig: any;
|
|
69
65
|
readonly parentTrack: any;
|
|
70
66
|
renderProps(): any;
|
|
71
|
-
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
72
|
-
|
|
73
|
-
* controlled by a reaction
|
|
74
|
-
*/
|
|
75
|
-
readonly DisplayMessageComponent: import("react").FC<any> | undefined;
|
|
67
|
+
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
68
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
76
69
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
77
70
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
78
71
|
regionCannotBeRendered(): null;
|
|
79
72
|
} & {
|
|
80
|
-
setMessage(arg?: string
|
|
73
|
+
setMessage(arg?: string): void;
|
|
81
74
|
setError(error?: unknown): void;
|
|
82
75
|
setRpcDriverName(rpcDriverName: string): void;
|
|
83
76
|
reload(): void;
|
|
@@ -98,7 +91,13 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
98
91
|
configuration: {
|
|
99
92
|
[x: string]: any;
|
|
100
93
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
101
|
-
setSubschema(slotName: string, data: unknown):
|
|
94
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
95
|
+
[x: string]: any;
|
|
96
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
97
|
+
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
98
|
+
[x: string]: any;
|
|
99
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
100
|
+
} & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
102
101
|
} & import("mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>;
|
|
103
102
|
height: number;
|
|
104
103
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -109,11 +108,11 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
109
108
|
readonly RenderingComponent: import("react").FC<{
|
|
110
109
|
model: {
|
|
111
110
|
id: string;
|
|
112
|
-
type: string;
|
|
113
|
-
* #property
|
|
114
|
-
*/
|
|
111
|
+
type: string;
|
|
115
112
|
rpcDriverName: string | undefined;
|
|
116
|
-
} & import("mobx-state-tree/dist/internal"
|
|
113
|
+
} & import("mobx-state-tree/dist/internal" /**
|
|
114
|
+
* #property
|
|
115
|
+
*/).NonEmptyObject & {
|
|
117
116
|
rendererTypeName: string;
|
|
118
117
|
error: unknown;
|
|
119
118
|
message: string | undefined;
|
|
@@ -122,15 +121,12 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
122
121
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
123
122
|
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
124
123
|
}, {
|
|
125
|
-
rendererTypeName: string;
|
|
126
|
-
* #action
|
|
127
|
-
* controlled by a reaction
|
|
128
|
-
*/
|
|
124
|
+
rendererTypeName: string;
|
|
129
125
|
error: unknown;
|
|
130
126
|
message: string | undefined;
|
|
131
127
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
132
|
-
onHorizontalScroll?: Function
|
|
133
|
-
blockState?: Record<string, any
|
|
128
|
+
onHorizontalScroll?: Function;
|
|
129
|
+
blockState?: Record<string, any>;
|
|
134
130
|
}>;
|
|
135
131
|
readonly DisplayBlurb: import("react").FC<{
|
|
136
132
|
model: {
|
|
@@ -154,16 +150,13 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
154
150
|
readonly adapterConfig: any;
|
|
155
151
|
readonly parentTrack: any;
|
|
156
152
|
renderProps(): any;
|
|
157
|
-
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
158
|
-
|
|
159
|
-
* controlled by a reaction
|
|
160
|
-
*/
|
|
161
|
-
readonly DisplayMessageComponent: import("react").FC<any> | undefined;
|
|
153
|
+
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
154
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
162
155
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
163
156
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
164
157
|
regionCannotBeRendered(): null;
|
|
165
158
|
} & {
|
|
166
|
-
setMessage(arg?: string
|
|
159
|
+
setMessage(arg?: string): void;
|
|
167
160
|
setError(error?: unknown): void;
|
|
168
161
|
setRpcDriverName(rpcDriverName: string): void;
|
|
169
162
|
reload(): void;
|
|
@@ -187,9 +180,7 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
187
180
|
readonly RenderingComponent: import("react").FC<{
|
|
188
181
|
model: {
|
|
189
182
|
id: string;
|
|
190
|
-
type: string;
|
|
191
|
-
* #property
|
|
192
|
-
*/
|
|
183
|
+
type: string;
|
|
193
184
|
rpcDriverName: string | undefined;
|
|
194
185
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
195
186
|
rendererTypeName: string;
|
|
@@ -200,15 +191,12 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
200
191
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
201
192
|
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
202
193
|
}, {
|
|
203
|
-
rendererTypeName: string;
|
|
204
|
-
* #action
|
|
205
|
-
* controlled by a reaction
|
|
206
|
-
*/
|
|
194
|
+
rendererTypeName: string;
|
|
207
195
|
error: unknown;
|
|
208
196
|
message: string | undefined;
|
|
209
197
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
210
|
-
onHorizontalScroll?: Function
|
|
211
|
-
blockState?: Record<string, any
|
|
198
|
+
onHorizontalScroll?: Function;
|
|
199
|
+
blockState?: Record<string, any>;
|
|
212
200
|
}>;
|
|
213
201
|
readonly DisplayBlurb: import("react").FC<{
|
|
214
202
|
model: {
|
|
@@ -232,16 +220,13 @@ declare function stateModelFactory(configSchema: AnyConfigurationSchemaType): im
|
|
|
232
220
|
readonly adapterConfig: any;
|
|
233
221
|
readonly parentTrack: any;
|
|
234
222
|
renderProps(): any;
|
|
235
|
-
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
236
|
-
|
|
237
|
-
* controlled by a reaction
|
|
238
|
-
*/
|
|
239
|
-
readonly DisplayMessageComponent: import("react").FC<any> | undefined;
|
|
223
|
+
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
224
|
+
readonly DisplayMessageComponent: undefined | import("react").FC<any>;
|
|
240
225
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
241
226
|
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
242
227
|
regionCannotBeRendered(): null;
|
|
243
228
|
} & {
|
|
244
|
-
setMessage(arg?: string
|
|
229
|
+
setMessage(arg?: string): void;
|
|
245
230
|
setError(error?: unknown): void;
|
|
246
231
|
setRpcDriverName(rpcDriverName: string): void;
|
|
247
232
|
reload(): void;
|
|
@@ -26,6 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.default = LinearComparativeViewF;
|
|
29
30
|
const react_1 = require("react");
|
|
30
31
|
const ViewType_1 = __importDefault(require("@jbrowse/core/pluggableElementTypes/ViewType"));
|
|
31
32
|
const model_1 = __importDefault(require("./model"));
|
|
@@ -39,4 +40,3 @@ function LinearComparativeViewF(pluginManager) {
|
|
|
39
40
|
});
|
|
40
41
|
});
|
|
41
42
|
}
|
|
42
|
-
exports.default = LinearComparativeViewF;
|