@jbrowse/react-circular-genome-view2 3.2.0

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.
Files changed (64) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +75 -0
  3. package/dist/JBrowseCircularGenomeView/JBrowseCircularGenomeView.d.ts +5 -0
  4. package/dist/JBrowseCircularGenomeView/JBrowseCircularGenomeView.js +23 -0
  5. package/dist/JBrowseCircularGenomeView/index.d.ts +1 -0
  6. package/dist/JBrowseCircularGenomeView/index.js +8 -0
  7. package/dist/corePlugins.d.ts +3 -0
  8. package/dist/corePlugins.js +22 -0
  9. package/dist/createModel/AboutDialog.d.ts +1 -0
  10. package/dist/createModel/AboutDialog.js +5 -0
  11. package/dist/createModel/createConfigModel.d.ts +104 -0
  12. package/dist/createModel/createConfigModel.js +43 -0
  13. package/dist/createModel/createModel.d.ts +1387 -0
  14. package/dist/createModel/createModel.js +117 -0
  15. package/dist/createModel/createSessionModel.d.ts +260 -0
  16. package/dist/createModel/createSessionModel.js +115 -0
  17. package/dist/createModel/index.d.ts +3 -0
  18. package/dist/createModel/index.js +12 -0
  19. package/dist/createViewState.d.ts +3780 -0
  20. package/dist/createViewState.js +64 -0
  21. package/dist/index.d.ts +4 -0
  22. package/dist/index.js +14 -0
  23. package/dist/loadPlugins.d.ts +13 -0
  24. package/dist/loadPlugins.js +12 -0
  25. package/dist/react-circular-genome-view.umd.production.min.js +185 -0
  26. package/dist/react-circular-genome-view.umd.production.min.js.LICENSE.txt +141 -0
  27. package/dist/react-circular-genome-view.umd.production.min.js.map +1 -0
  28. package/dist/types.d.ts +5 -0
  29. package/dist/types.js +2 -0
  30. package/dist/version.d.ts +1 -0
  31. package/dist/version.js +4 -0
  32. package/dist/webpack.d.ts +7 -0
  33. package/dist/webpack.js +53 -0
  34. package/docs/example.md +105 -0
  35. package/docs/img/exampleView.png +0 -0
  36. package/esm/JBrowseCircularGenomeView/JBrowseCircularGenomeView.d.ts +5 -0
  37. package/esm/JBrowseCircularGenomeView/JBrowseCircularGenomeView.js +21 -0
  38. package/esm/JBrowseCircularGenomeView/index.d.ts +1 -0
  39. package/esm/JBrowseCircularGenomeView/index.js +1 -0
  40. package/esm/corePlugins.d.ts +3 -0
  41. package/esm/corePlugins.js +17 -0
  42. package/esm/createModel/AboutDialog.d.ts +1 -0
  43. package/esm/createModel/AboutDialog.js +1 -0
  44. package/esm/createModel/createConfigModel.d.ts +104 -0
  45. package/esm/createModel/createConfigModel.js +37 -0
  46. package/esm/createModel/createModel.d.ts +1387 -0
  47. package/esm/createModel/createModel.js +78 -0
  48. package/esm/createModel/createSessionModel.d.ts +260 -0
  49. package/esm/createModel/createSessionModel.js +76 -0
  50. package/esm/createModel/index.d.ts +3 -0
  51. package/esm/createModel/index.js +3 -0
  52. package/esm/createViewState.d.ts +3780 -0
  53. package/esm/createViewState.js +58 -0
  54. package/esm/index.d.ts +4 -0
  55. package/esm/index.js +4 -0
  56. package/esm/loadPlugins.d.ts +13 -0
  57. package/esm/loadPlugins.js +6 -0
  58. package/esm/types.d.ts +5 -0
  59. package/esm/types.js +1 -0
  60. package/esm/version.d.ts +1 -0
  61. package/esm/version.js +1 -0
  62. package/esm/webpack.d.ts +7 -0
  63. package/esm/webpack.js +7 -0
  64. package/package.json +68 -0
@@ -0,0 +1,1387 @@
1
+ import PluginManager from '@jbrowse/core/PluginManager';
2
+ import TextSearchManager from '@jbrowse/core/TextSearch/TextSearchManager';
3
+ import RpcManager from '@jbrowse/core/rpc/RpcManager';
4
+ import type { PluginConstructor } from '@jbrowse/core/Plugin';
5
+ import type { UriLocation } from '@jbrowse/core/util';
6
+ import type { Instance, SnapshotIn } from 'mobx-state-tree';
7
+ export default function createModel(runtimePlugins: PluginConstructor[], makeWorkerInstance?: () => Worker): {
8
+ model: import("mobx-state-tree").IModelType<{
9
+ config: import("mobx-state-tree").IModelType<{
10
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
11
+ rpc: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
12
+ defaultDriver: {
13
+ type: string;
14
+ description: string;
15
+ defaultValue: string;
16
+ };
17
+ drivers: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IMapType<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> | undefined, import("mobx-state-tree").ModelSnapshotType<Record<string, any>>, ({} & Partial<import("mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> & import("mobx-state-tree/dist/internal").NonEmptyObject) | undefined>>, [undefined]>;
18
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
19
+ highResolutionScaling: {
20
+ type: string;
21
+ defaultValue: number;
22
+ };
23
+ formatDetails: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
24
+ feature: {
25
+ type: string;
26
+ description: string;
27
+ defaultValue: {};
28
+ contextVariable: string[];
29
+ };
30
+ subfeatures: {
31
+ type: string;
32
+ description: string;
33
+ defaultValue: {};
34
+ contextVariable: string[];
35
+ };
36
+ depth: {
37
+ type: string;
38
+ defaultValue: number;
39
+ description: string;
40
+ };
41
+ maxDepth: {
42
+ type: string;
43
+ defaultValue: number;
44
+ description: string;
45
+ };
46
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
47
+ formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
48
+ config: {
49
+ type: string;
50
+ description: string;
51
+ defaultValue: {};
52
+ contextVariable: string[];
53
+ };
54
+ hideUris: {
55
+ type: string;
56
+ defaultValue: boolean;
57
+ };
58
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
59
+ hierarchical: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
60
+ sort: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
61
+ trackNames: {
62
+ type: string;
63
+ defaultValue: boolean;
64
+ };
65
+ categories: {
66
+ type: string;
67
+ defaultValue: boolean;
68
+ };
69
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
70
+ defaultCollapsed: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
71
+ categoryNames: {
72
+ type: string;
73
+ defaultValue: never[];
74
+ };
75
+ topLevelCategories: {
76
+ type: string;
77
+ defaultValue: boolean;
78
+ };
79
+ subCategories: {
80
+ type: string;
81
+ defaultValue: boolean;
82
+ };
83
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
84
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
85
+ theme: {
86
+ type: string;
87
+ defaultValue: {};
88
+ };
89
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
90
+ assembly: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
91
+ tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
92
+ internetAccounts: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
93
+ connections: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
94
+ aggregateTextSearchAdapters: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
95
+ plugins: import("mobx-state-tree").IType<any, any, any>;
96
+ }, {
97
+ readonly assemblies: ({
98
+ [x: string]: any;
99
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
100
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
101
+ [x: string]: any;
102
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
103
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
104
+ [x: string]: any;
105
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
106
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
107
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)[];
108
+ readonly assemblyName: string;
109
+ readonly rpcManager: any;
110
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
111
+ session: import("mobx-state-tree").IModelType<{
112
+ id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
113
+ name: import("mobx-state-tree").ISimpleType<string>;
114
+ margin: import("mobx-state-tree").IType<number | undefined, number, number>;
115
+ } & {
116
+ drawerPosition: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
117
+ drawerWidth: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
118
+ widgets: import("mobx-state-tree").IMapType<import("mobx-state-tree").IAnyType>;
119
+ activeWidgets: import("mobx-state-tree").IMapType<import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>>;
120
+ minimized: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
121
+ } & {
122
+ connectionInstances: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
123
+ name: import("mobx-state-tree").ISimpleType<string>;
124
+ tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
125
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
126
+ name: {
127
+ type: string;
128
+ defaultValue: string;
129
+ description: string;
130
+ };
131
+ assemblyNames: {
132
+ type: string;
133
+ defaultValue: never[];
134
+ description: string;
135
+ };
136
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "connectionId">>;
137
+ }, {
138
+ connect(_arg: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
139
+ } & {
140
+ afterAttach(): void;
141
+ addTrackConf(trackConf: Record<string, unknown> | ({
142
+ [x: string]: any;
143
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
144
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
145
+ [x: string]: any;
146
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
147
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
148
+ [x: string]: any;
149
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
150
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
151
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)): any;
152
+ addTrackConfs(trackConfs: (Record<string, unknown> | ({
153
+ [x: string]: any;
154
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
155
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
156
+ [x: string]: any;
157
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
158
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
159
+ [x: string]: any;
160
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
161
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
162
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>))[]): void;
163
+ setTrackConfs(trackConfs: import("@jbrowse/core/configuration").AnyConfigurationModel[]): void;
164
+ clear(): void;
165
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
166
+ } & {
167
+ view: import("mobx-state-tree").IAnyModelType;
168
+ }, {
169
+ selection: unknown;
170
+ hovered: unknown;
171
+ } & {
172
+ readonly root: import("mobx-state-tree").TypeOrStateTreeNodeToStateTreeNode<ROOT_MODEL_TYPE>;
173
+ } & {
174
+ readonly jbrowse: any;
175
+ readonly rpcManager: RpcManager;
176
+ readonly configuration: {
177
+ [x: string]: any;
178
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
179
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
180
+ [x: string]: any;
181
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
182
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
183
+ [x: string]: any;
184
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
185
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
186
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>;
187
+ readonly adminMode: boolean;
188
+ readonly textSearchManager: TextSearchManager;
189
+ } & {
190
+ readonly assemblies: Instance<import("@jbrowse/core/assemblyManager").BaseAssemblyConfigSchema>[];
191
+ } & {
192
+ setSelection(thing: unknown): void;
193
+ clearSelection(): void;
194
+ setHovered(thing: unknown): void;
195
+ } & {
196
+ readonly visibleWidget: any;
197
+ } & {
198
+ setDrawerPosition(arg: string): void;
199
+ updateDrawerWidth(drawerWidth: number): number;
200
+ resizeDrawer(distance: number): number;
201
+ addWidget(typeName: string, id: string, initialState?: {}, conf?: unknown): any;
202
+ showWidget(widget: any): void;
203
+ hasWidget(widget: any): boolean;
204
+ hideWidget(widget: any): void;
205
+ minimizeWidgetDrawer(): void;
206
+ showWidgetDrawer(): void;
207
+ hideAllWidgets(): void;
208
+ editConfiguration(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
209
+ afterAttach(): void;
210
+ } & {
211
+ readonly connections: import("@jbrowse/core/pluggableElementTypes/models/baseConnectionConfig").BaseConnectionConfigModel[];
212
+ } & {
213
+ makeConnection(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel, initialSnapshot?: {}): ({
214
+ name: string;
215
+ tracks: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IAnyModelType> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>>;
216
+ configuration: {
217
+ [x: string]: any;
218
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
219
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
220
+ [x: string]: any;
221
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
222
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
223
+ [x: string]: any;
224
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
225
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
226
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
227
+ name: {
228
+ type: string;
229
+ defaultValue: string;
230
+ description: string;
231
+ };
232
+ assemblyNames: {
233
+ type: string;
234
+ defaultValue: never[];
235
+ description: string;
236
+ };
237
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "connectionId">>>;
238
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
239
+ connect(_arg: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
240
+ } & {
241
+ afterAttach(): void;
242
+ addTrackConf(trackConf: Record<string, unknown> | ({
243
+ [x: string]: any;
244
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
245
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
246
+ [x: string]: any;
247
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
248
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
249
+ [x: string]: any;
250
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
251
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
252
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)): any;
253
+ addTrackConfs(trackConfs: (Record<string, unknown> | ({
254
+ [x: string]: any;
255
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
256
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
257
+ [x: string]: any;
258
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
259
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
260
+ [x: string]: any;
261
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
262
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
263
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>))[]): void;
264
+ setTrackConfs(trackConfs: import("@jbrowse/core/configuration").AnyConfigurationModel[]): void;
265
+ clear(): void;
266
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
267
+ name: import("mobx-state-tree").ISimpleType<string>;
268
+ tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
269
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
270
+ name: {
271
+ type: string;
272
+ defaultValue: string;
273
+ description: string;
274
+ };
275
+ assemblyNames: {
276
+ type: string;
277
+ defaultValue: never[];
278
+ description: string;
279
+ };
280
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "connectionId">>;
281
+ }, {
282
+ connect(_arg: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
283
+ } & {
284
+ afterAttach(): void;
285
+ addTrackConf(trackConf: Record<string, unknown> | ({
286
+ [x: string]: any;
287
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
288
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
289
+ [x: string]: any;
290
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
291
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
292
+ [x: string]: any;
293
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
294
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
295
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)): any;
296
+ addTrackConfs(trackConfs: (Record<string, unknown> | ({
297
+ [x: string]: any;
298
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
299
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
300
+ [x: string]: any;
301
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
302
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
303
+ [x: string]: any;
304
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
305
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
306
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>))[]): void;
307
+ setTrackConfs(trackConfs: import("@jbrowse/core/configuration").AnyConfigurationModel[]): void;
308
+ clear(): void;
309
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
310
+ prepareToBreakConnection(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): (Record<string, number> | (() => void))[] | undefined;
311
+ breakConnection(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
312
+ deleteConnection(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): any;
313
+ addConnectionConf(connectionConf: import("@jbrowse/core/configuration").AnyConfigurationModel): any;
314
+ clearConnections(): void;
315
+ } & {
316
+ queueOfDialogs: [import("@jbrowse/core/util").DialogComponentType, unknown][];
317
+ } & {
318
+ readonly DialogComponent: import("@jbrowse/core/util").DialogComponentType | undefined;
319
+ readonly DialogProps: unknown;
320
+ } & {
321
+ removeActiveDialog(): void;
322
+ queueDialog(cb: (doneCallback: () => void) => [import("@jbrowse/core/util").DialogComponentType, unknown]): void;
323
+ } & {
324
+ getReferring(object: import("mobx-state-tree").IAnyStateTreeNode): import("@jbrowse/product-core").ReferringNode[];
325
+ } & {
326
+ removeReferring(referring: import("@jbrowse/product-core").ReferringNode[], track: import("@jbrowse/core/pluggableElementTypes").BaseTrackConfig, callbacks: ((arg: string) => void)[], dereferenceTypeCount: Record<string, number>): void;
327
+ } & {
328
+ readonly tracks: import("@jbrowse/core/configuration").AnyConfigurationModel[];
329
+ } & {
330
+ addTrackConf(trackConf: import("@jbrowse/core/configuration").AnyConfiguration): any;
331
+ deleteTrackConf(trackConf: import("@jbrowse/core/configuration").AnyConfigurationModel): any;
332
+ } & {
333
+ snackbarMessages: import("mobx").IObservableArray<import("@jbrowse/core/ui/SnackbarModel").SnackbarMessage>;
334
+ } & {
335
+ readonly snackbarMessageSet: Map<string, import("@jbrowse/core/ui/SnackbarModel").SnackbarMessage>;
336
+ } & {
337
+ notify(message: string, level?: import("@jbrowse/core/util").NotificationLevel, action?: import("@jbrowse/core/util").SnackAction): void;
338
+ notifyError(errorMessage: string, error?: unknown, extra?: unknown): void;
339
+ pushSnackbarMessage(message: string, level?: import("@jbrowse/core/util").NotificationLevel, action?: import("@jbrowse/core/util").SnackAction): void;
340
+ popSnackbarMessage(): import("@jbrowse/core/ui/SnackbarModel").SnackbarMessage | undefined;
341
+ removeSnackbarMessage(message: string): void;
342
+ } & {
343
+ task: undefined;
344
+ } & {
345
+ readonly version: any;
346
+ readonly assemblies: any[];
347
+ readonly assemblyNames: any[];
348
+ readonly connections: any;
349
+ readonly assemblyManager: any;
350
+ readonly views: any[];
351
+ renderProps(): {
352
+ theme: any;
353
+ highResolutionScaling: any;
354
+ };
355
+ } & {
356
+ addView(typeName: string, initialState?: {}): any;
357
+ removeView(): void;
358
+ } & {
359
+ getTrackActionMenuItems(config: any): {
360
+ label: string;
361
+ onClick: () => void;
362
+ icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
363
+ muiName: string;
364
+ };
365
+ }[];
366
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
367
+ assemblyManager: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
368
+ assemblies: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
369
+ configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
370
+ }, {
371
+ error: unknown;
372
+ loadingP: Promise<void> | undefined;
373
+ volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
374
+ refNameAliases: {
375
+ [x: string]: string;
376
+ } | undefined;
377
+ lowerCaseRefNameAliases: {
378
+ [x: string]: string;
379
+ } | undefined;
380
+ cytobands: import("@jbrowse/core/util").Feature[] | undefined;
381
+ } & {
382
+ getConf(arg: string): any;
383
+ } & {
384
+ readonly initialized: boolean;
385
+ readonly name: string;
386
+ readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
387
+ readonly aliases: string[];
388
+ readonly displayName: string | undefined;
389
+ hasName(name: string): boolean;
390
+ readonly allAliases: string[];
391
+ readonly allRefNames: string[] | undefined;
392
+ readonly lowerCaseRefNames: string[] | undefined;
393
+ readonly allRefNamesWithLowerCase: string[] | undefined;
394
+ readonly rpcManager: RpcManager;
395
+ readonly refNameColors: string[];
396
+ } & {
397
+ readonly refNames: string[] | undefined;
398
+ } & {
399
+ getCanonicalRefName(refName: string): string | undefined;
400
+ getRefNameColor(refName: string): string | undefined;
401
+ isValidRefName(refName: string): boolean;
402
+ } & {
403
+ setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
404
+ regions: import("@jbrowse/core/util").Region[];
405
+ refNameAliases: {
406
+ [x: string]: string;
407
+ };
408
+ lowerCaseRefNameAliases: {
409
+ [x: string]: string;
410
+ };
411
+ cytobands: import("@jbrowse/core/util").Feature[];
412
+ }): void;
413
+ setError(e: unknown): void;
414
+ setRegions(regions: import("@jbrowse/core/util").Region[]): void;
415
+ setRefNameAliases(aliases: {
416
+ [x: string]: string;
417
+ }, lowerCaseAliases: {
418
+ [x: string]: string;
419
+ }): void;
420
+ setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
421
+ setLoadingP(p?: Promise<void>): void;
422
+ load(): Promise<void>;
423
+ loadPre(): Promise<void>;
424
+ } & {
425
+ getAdapterMapEntry(adapterConf: {
426
+ [x: string]: unknown;
427
+ }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
428
+ getRefNameMapForAdapter(adapterConf: {
429
+ [x: string]: unknown;
430
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
431
+ [x: string]: string;
432
+ }>;
433
+ getReverseRefNameMapForAdapter(adapterConf: {
434
+ [x: string]: unknown;
435
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
436
+ [x: string]: string;
437
+ }>;
438
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
439
+ }, {
440
+ readonly assemblyNameMap: Record<string, {
441
+ configuration: any;
442
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
443
+ error: unknown;
444
+ loadingP: Promise<void> | undefined;
445
+ volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
446
+ refNameAliases: {
447
+ [x: string]: string;
448
+ } | undefined;
449
+ lowerCaseRefNameAliases: {
450
+ [x: string]: string;
451
+ } | undefined;
452
+ cytobands: import("@jbrowse/core/util").Feature[] | undefined;
453
+ } & {
454
+ getConf(arg: string): any;
455
+ } & {
456
+ readonly initialized: boolean;
457
+ readonly name: string;
458
+ readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
459
+ readonly aliases: string[];
460
+ readonly displayName: string | undefined;
461
+ hasName(name: string): boolean;
462
+ readonly allAliases: string[];
463
+ readonly allRefNames: string[] | undefined;
464
+ readonly lowerCaseRefNames: string[] | undefined;
465
+ readonly allRefNamesWithLowerCase: string[] | undefined;
466
+ readonly rpcManager: RpcManager;
467
+ readonly refNameColors: string[];
468
+ } & {
469
+ readonly refNames: string[] | undefined;
470
+ } & {
471
+ getCanonicalRefName(refName: string): string | undefined;
472
+ getRefNameColor(refName: string): string | undefined;
473
+ isValidRefName(refName: string): boolean;
474
+ } & {
475
+ setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
476
+ regions: import("@jbrowse/core/util").Region[];
477
+ refNameAliases: {
478
+ [x: string]: string;
479
+ };
480
+ lowerCaseRefNameAliases: {
481
+ [x: string]: string;
482
+ };
483
+ cytobands: import("@jbrowse/core/util").Feature[];
484
+ }): void;
485
+ setError(e: unknown): void;
486
+ setRegions(regions: import("@jbrowse/core/util").Region[]): void;
487
+ setRefNameAliases(aliases: {
488
+ [x: string]: string;
489
+ }, lowerCaseAliases: {
490
+ [x: string]: string;
491
+ }): void;
492
+ setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
493
+ setLoadingP(p?: Promise<void>): void;
494
+ load(): Promise<void>;
495
+ loadPre(): Promise<void>;
496
+ } & {
497
+ getAdapterMapEntry(adapterConf: {
498
+ [x: string]: unknown;
499
+ }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
500
+ getRefNameMapForAdapter(adapterConf: {
501
+ [x: string]: unknown;
502
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
503
+ [x: string]: string;
504
+ }>;
505
+ getReverseRefNameMapForAdapter(adapterConf: {
506
+ [x: string]: unknown;
507
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
508
+ [x: string]: string;
509
+ }>;
510
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
511
+ configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
512
+ }, {
513
+ error: unknown;
514
+ loadingP: Promise<void> | undefined;
515
+ volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
516
+ refNameAliases: {
517
+ [x: string]: string;
518
+ } | undefined;
519
+ lowerCaseRefNameAliases: {
520
+ [x: string]: string;
521
+ } | undefined;
522
+ cytobands: import("@jbrowse/core/util").Feature[] | undefined;
523
+ } & {
524
+ getConf(arg: string): any;
525
+ } & {
526
+ readonly initialized: boolean;
527
+ readonly name: string;
528
+ readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
529
+ readonly aliases: string[];
530
+ readonly displayName: string | undefined;
531
+ hasName(name: string): boolean;
532
+ readonly allAliases: string[];
533
+ readonly allRefNames: string[] | undefined;
534
+ readonly lowerCaseRefNames: string[] | undefined;
535
+ readonly allRefNamesWithLowerCase: string[] | undefined;
536
+ readonly rpcManager: RpcManager;
537
+ readonly refNameColors: string[];
538
+ } & {
539
+ readonly refNames: string[] | undefined;
540
+ } & {
541
+ getCanonicalRefName(refName: string): string | undefined;
542
+ getRefNameColor(refName: string): string | undefined;
543
+ isValidRefName(refName: string): boolean;
544
+ } & {
545
+ setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
546
+ regions: import("@jbrowse/core/util").Region[];
547
+ refNameAliases: {
548
+ [x: string]: string;
549
+ };
550
+ lowerCaseRefNameAliases: {
551
+ [x: string]: string;
552
+ };
553
+ cytobands: import("@jbrowse/core/util").Feature[];
554
+ }): void;
555
+ setError(e: unknown): void;
556
+ setRegions(regions: import("@jbrowse/core/util").Region[]): void;
557
+ setRefNameAliases(aliases: {
558
+ [x: string]: string;
559
+ }, lowerCaseAliases: {
560
+ [x: string]: string;
561
+ }): void;
562
+ setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
563
+ setLoadingP(p?: Promise<void>): void;
564
+ load(): Promise<void>;
565
+ loadPre(): Promise<void>;
566
+ } & {
567
+ getAdapterMapEntry(adapterConf: {
568
+ [x: string]: unknown;
569
+ }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
570
+ getRefNameMapForAdapter(adapterConf: {
571
+ [x: string]: unknown;
572
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
573
+ [x: string]: string;
574
+ }>;
575
+ getReverseRefNameMapForAdapter(adapterConf: {
576
+ [x: string]: unknown;
577
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
578
+ [x: string]: string;
579
+ }>;
580
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>;
581
+ } & {
582
+ get(asmName: string): ({
583
+ configuration: any;
584
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
585
+ error: unknown;
586
+ loadingP: Promise<void> | undefined;
587
+ volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
588
+ refNameAliases: {
589
+ [x: string]: string;
590
+ } | undefined;
591
+ lowerCaseRefNameAliases: {
592
+ [x: string]: string;
593
+ } | undefined;
594
+ cytobands: import("@jbrowse/core/util").Feature[] | undefined;
595
+ } & {
596
+ getConf(arg: string): any;
597
+ } & {
598
+ readonly initialized: boolean;
599
+ readonly name: string;
600
+ readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
601
+ readonly aliases: string[];
602
+ readonly displayName: string | undefined;
603
+ hasName(name: string): boolean;
604
+ readonly allAliases: string[];
605
+ readonly allRefNames: string[] | undefined;
606
+ readonly lowerCaseRefNames: string[] | undefined;
607
+ readonly allRefNamesWithLowerCase: string[] | undefined;
608
+ readonly rpcManager: RpcManager;
609
+ readonly refNameColors: string[];
610
+ } & {
611
+ readonly refNames: string[] | undefined;
612
+ } & {
613
+ getCanonicalRefName(refName: string): string | undefined;
614
+ getRefNameColor(refName: string): string | undefined;
615
+ isValidRefName(refName: string): boolean;
616
+ } & {
617
+ setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
618
+ regions: import("@jbrowse/core/util").Region[];
619
+ refNameAliases: {
620
+ [x: string]: string;
621
+ };
622
+ lowerCaseRefNameAliases: {
623
+ [x: string]: string;
624
+ };
625
+ cytobands: import("@jbrowse/core/util").Feature[];
626
+ }): void;
627
+ setError(e: unknown): void;
628
+ setRegions(regions: import("@jbrowse/core/util").Region[]): void;
629
+ setRefNameAliases(aliases: {
630
+ [x: string]: string;
631
+ }, lowerCaseAliases: {
632
+ [x: string]: string;
633
+ }): void;
634
+ setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
635
+ setLoadingP(p?: Promise<void>): void;
636
+ load(): Promise<void>;
637
+ loadPre(): Promise<void>;
638
+ } & {
639
+ getAdapterMapEntry(adapterConf: {
640
+ [x: string]: unknown;
641
+ }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
642
+ getRefNameMapForAdapter(adapterConf: {
643
+ [x: string]: unknown;
644
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
645
+ [x: string]: string;
646
+ }>;
647
+ getReverseRefNameMapForAdapter(adapterConf: {
648
+ [x: string]: unknown;
649
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
650
+ [x: string]: string;
651
+ }>;
652
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
653
+ configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
654
+ }, {
655
+ error: unknown;
656
+ loadingP: Promise<void> | undefined;
657
+ volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
658
+ refNameAliases: {
659
+ [x: string]: string;
660
+ } | undefined;
661
+ lowerCaseRefNameAliases: {
662
+ [x: string]: string;
663
+ } | undefined;
664
+ cytobands: import("@jbrowse/core/util").Feature[] | undefined;
665
+ } & {
666
+ getConf(arg: string): any;
667
+ } & {
668
+ readonly initialized: boolean;
669
+ readonly name: string;
670
+ readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
671
+ readonly aliases: string[];
672
+ readonly displayName: string | undefined;
673
+ hasName(name: string): boolean;
674
+ readonly allAliases: string[];
675
+ readonly allRefNames: string[] | undefined;
676
+ readonly lowerCaseRefNames: string[] | undefined;
677
+ readonly allRefNamesWithLowerCase: string[] | undefined;
678
+ readonly rpcManager: RpcManager;
679
+ readonly refNameColors: string[];
680
+ } & {
681
+ readonly refNames: string[] | undefined;
682
+ } & {
683
+ getCanonicalRefName(refName: string): string | undefined;
684
+ getRefNameColor(refName: string): string | undefined;
685
+ isValidRefName(refName: string): boolean;
686
+ } & {
687
+ setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
688
+ regions: import("@jbrowse/core/util").Region[];
689
+ refNameAliases: {
690
+ [x: string]: string;
691
+ };
692
+ lowerCaseRefNameAliases: {
693
+ [x: string]: string;
694
+ };
695
+ cytobands: import("@jbrowse/core/util").Feature[];
696
+ }): void;
697
+ setError(e: unknown): void;
698
+ setRegions(regions: import("@jbrowse/core/util").Region[]): void;
699
+ setRefNameAliases(aliases: {
700
+ [x: string]: string;
701
+ }, lowerCaseAliases: {
702
+ [x: string]: string;
703
+ }): void;
704
+ setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
705
+ setLoadingP(p?: Promise<void>): void;
706
+ load(): Promise<void>;
707
+ loadPre(): Promise<void>;
708
+ } & {
709
+ getAdapterMapEntry(adapterConf: {
710
+ [x: string]: unknown;
711
+ }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
712
+ getRefNameMapForAdapter(adapterConf: {
713
+ [x: string]: unknown;
714
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
715
+ [x: string]: string;
716
+ }>;
717
+ getReverseRefNameMapForAdapter(adapterConf: {
718
+ [x: string]: unknown;
719
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
720
+ [x: string]: string;
721
+ }>;
722
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
723
+ readonly assemblyNamesList: any[];
724
+ readonly assemblyList: import("@jbrowse/core/configuration").AnyConfigurationModel[];
725
+ readonly rpcManager: RpcManager;
726
+ } & {
727
+ waitForAssembly(assemblyName: string): Promise<({
728
+ configuration: any;
729
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
730
+ error: unknown;
731
+ loadingP: Promise<void> | undefined;
732
+ volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
733
+ refNameAliases: {
734
+ [x: string]: string;
735
+ } | undefined;
736
+ lowerCaseRefNameAliases: {
737
+ [x: string]: string;
738
+ } | undefined;
739
+ cytobands: import("@jbrowse/core/util").Feature[] | undefined;
740
+ } & {
741
+ getConf(arg: string): any;
742
+ } & {
743
+ readonly initialized: boolean;
744
+ readonly name: string;
745
+ readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
746
+ readonly aliases: string[];
747
+ readonly displayName: string | undefined;
748
+ hasName(name: string): boolean;
749
+ readonly allAliases: string[];
750
+ readonly allRefNames: string[] | undefined;
751
+ readonly lowerCaseRefNames: string[] | undefined;
752
+ readonly allRefNamesWithLowerCase: string[] | undefined;
753
+ readonly rpcManager: RpcManager;
754
+ readonly refNameColors: string[];
755
+ } & {
756
+ readonly refNames: string[] | undefined;
757
+ } & {
758
+ getCanonicalRefName(refName: string): string | undefined;
759
+ getRefNameColor(refName: string): string | undefined;
760
+ isValidRefName(refName: string): boolean;
761
+ } & {
762
+ setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
763
+ regions: import("@jbrowse/core/util").Region[];
764
+ refNameAliases: {
765
+ [x: string]: string;
766
+ };
767
+ lowerCaseRefNameAliases: {
768
+ [x: string]: string;
769
+ };
770
+ cytobands: import("@jbrowse/core/util").Feature[];
771
+ }): void;
772
+ setError(e: unknown): void;
773
+ setRegions(regions: import("@jbrowse/core/util").Region[]): void;
774
+ setRefNameAliases(aliases: {
775
+ [x: string]: string;
776
+ }, lowerCaseAliases: {
777
+ [x: string]: string;
778
+ }): void;
779
+ setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
780
+ setLoadingP(p?: Promise<void>): void;
781
+ load(): Promise<void>;
782
+ loadPre(): Promise<void>;
783
+ } & {
784
+ getAdapterMapEntry(adapterConf: {
785
+ [x: string]: unknown;
786
+ }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
787
+ getRefNameMapForAdapter(adapterConf: {
788
+ [x: string]: unknown;
789
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
790
+ [x: string]: string;
791
+ }>;
792
+ getReverseRefNameMapForAdapter(adapterConf: {
793
+ [x: string]: unknown;
794
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
795
+ [x: string]: string;
796
+ }>;
797
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
798
+ configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
799
+ }, {
800
+ error: unknown;
801
+ loadingP: Promise<void> | undefined;
802
+ volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
803
+ refNameAliases: {
804
+ [x: string]: string;
805
+ } | undefined;
806
+ lowerCaseRefNameAliases: {
807
+ [x: string]: string;
808
+ } | undefined;
809
+ cytobands: import("@jbrowse/core/util").Feature[] | undefined;
810
+ } & {
811
+ getConf(arg: string): any;
812
+ } & {
813
+ readonly initialized: boolean;
814
+ readonly name: string;
815
+ readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
816
+ readonly aliases: string[];
817
+ readonly displayName: string | undefined;
818
+ hasName(name: string): boolean;
819
+ readonly allAliases: string[];
820
+ readonly allRefNames: string[] | undefined;
821
+ readonly lowerCaseRefNames: string[] | undefined;
822
+ readonly allRefNamesWithLowerCase: string[] | undefined;
823
+ readonly rpcManager: RpcManager;
824
+ readonly refNameColors: string[];
825
+ } & {
826
+ readonly refNames: string[] | undefined;
827
+ } & {
828
+ getCanonicalRefName(refName: string): string | undefined;
829
+ getRefNameColor(refName: string): string | undefined;
830
+ isValidRefName(refName: string): boolean;
831
+ } & {
832
+ setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
833
+ regions: import("@jbrowse/core/util").Region[];
834
+ refNameAliases: {
835
+ [x: string]: string;
836
+ };
837
+ lowerCaseRefNameAliases: {
838
+ [x: string]: string;
839
+ };
840
+ cytobands: import("@jbrowse/core/util").Feature[];
841
+ }): void;
842
+ setError(e: unknown): void;
843
+ setRegions(regions: import("@jbrowse/core/util").Region[]): void;
844
+ setRefNameAliases(aliases: {
845
+ [x: string]: string;
846
+ }, lowerCaseAliases: {
847
+ [x: string]: string;
848
+ }): void;
849
+ setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
850
+ setLoadingP(p?: Promise<void>): void;
851
+ load(): Promise<void>;
852
+ loadPre(): Promise<void>;
853
+ } & {
854
+ getAdapterMapEntry(adapterConf: {
855
+ [x: string]: unknown;
856
+ }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
857
+ getRefNameMapForAdapter(adapterConf: {
858
+ [x: string]: unknown;
859
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
860
+ [x: string]: string;
861
+ }>;
862
+ getReverseRefNameMapForAdapter(adapterConf: {
863
+ [x: string]: unknown;
864
+ }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
865
+ [x: string]: string;
866
+ }>;
867
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined>;
868
+ getRefNameMapForAdapter(adapterConf: {
869
+ [x: string]: unknown;
870
+ }, assemblyName: string | undefined, opts: {
871
+ stopToken?: string;
872
+ sessionId: string;
873
+ }): Promise<{
874
+ [x: string]: string;
875
+ } | undefined>;
876
+ getReverseRefNameMapForAdapter(adapterConf: {
877
+ [x: string]: unknown;
878
+ }, assemblyName: string | undefined, opts: {
879
+ stopToken?: string;
880
+ sessionId: string;
881
+ }): Promise<{
882
+ [x: string]: string;
883
+ } | undefined>;
884
+ isValidRefName(refName: string, assemblyName: string): boolean;
885
+ } & {
886
+ afterAttach(): void;
887
+ removeAssembly(asm: import("@jbrowse/core/assemblyManager/assembly").Assembly): void;
888
+ addAssembly(configuration: any): void;
889
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
890
+ internetAccounts: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyType>;
891
+ }, {
892
+ error: unknown;
893
+ adminMode: boolean;
894
+ version: string;
895
+ rpcManager: RpcManager;
896
+ textSearchManager: TextSearchManager;
897
+ } & {
898
+ setSession(sessionSnapshot: SnapshotIn<import("mobx-state-tree").IModelType<{
899
+ id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
900
+ name: import("mobx-state-tree").ISimpleType<string>;
901
+ margin: import("mobx-state-tree").IType<number | undefined, number, number>;
902
+ } & {
903
+ drawerPosition: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
904
+ drawerWidth: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
905
+ widgets: import("mobx-state-tree").IMapType<import("mobx-state-tree").IAnyType>;
906
+ activeWidgets: import("mobx-state-tree").IMapType<import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>>;
907
+ minimized: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
908
+ } & {
909
+ connectionInstances: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
910
+ name: import("mobx-state-tree").ISimpleType<string>;
911
+ tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
912
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
913
+ name: {
914
+ type: string;
915
+ defaultValue: string;
916
+ description: string;
917
+ };
918
+ assemblyNames: {
919
+ type: string;
920
+ defaultValue: never[];
921
+ description: string;
922
+ };
923
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "connectionId">>;
924
+ }, {
925
+ connect(_arg: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
926
+ } & {
927
+ afterAttach(): void;
928
+ addTrackConf(trackConf: Record<string, unknown> | ({
929
+ [x: string]: any;
930
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
931
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
932
+ [x: string]: any;
933
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
934
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
935
+ [x: string]: any;
936
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
937
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
938
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)): any;
939
+ addTrackConfs(trackConfs: (Record<string, unknown> | ({
940
+ [x: string]: any;
941
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
942
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
943
+ [x: string]: any;
944
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
945
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
946
+ [x: string]: any;
947
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
948
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
949
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>))[]): void;
950
+ setTrackConfs(trackConfs: import("@jbrowse/core/configuration").AnyConfigurationModel[]): void;
951
+ clear(): void;
952
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
953
+ } & {
954
+ view: import("mobx-state-tree").IAnyModelType;
955
+ }, {
956
+ selection: unknown;
957
+ hovered: unknown;
958
+ } & {
959
+ readonly root: import("mobx-state-tree").TypeOrStateTreeNodeToStateTreeNode<ROOT_MODEL_TYPE>;
960
+ } & {
961
+ readonly jbrowse: any;
962
+ readonly rpcManager: RpcManager;
963
+ readonly configuration: {
964
+ [x: string]: any;
965
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
966
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
967
+ [x: string]: any;
968
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
969
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
970
+ [x: string]: any;
971
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
972
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
973
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>;
974
+ readonly adminMode: boolean;
975
+ readonly textSearchManager: TextSearchManager;
976
+ } & {
977
+ readonly assemblies: Instance<import("@jbrowse/core/assemblyManager").BaseAssemblyConfigSchema>[];
978
+ } & {
979
+ setSelection(thing: unknown): void;
980
+ clearSelection(): void;
981
+ setHovered(thing: unknown): void;
982
+ } & {
983
+ readonly visibleWidget: any;
984
+ } & {
985
+ setDrawerPosition(arg: string): void;
986
+ updateDrawerWidth(drawerWidth: number): number;
987
+ resizeDrawer(distance: number): number;
988
+ addWidget(typeName: string, id: string, initialState?: {}, conf?: unknown): any;
989
+ showWidget(widget: any): void;
990
+ hasWidget(widget: any): boolean;
991
+ hideWidget(widget: any): void;
992
+ minimizeWidgetDrawer(): void;
993
+ showWidgetDrawer(): void;
994
+ hideAllWidgets(): void;
995
+ editConfiguration(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
996
+ afterAttach(): void;
997
+ } & {
998
+ readonly connections: import("@jbrowse/core/pluggableElementTypes/models/baseConnectionConfig").BaseConnectionConfigModel[];
999
+ } & {
1000
+ makeConnection(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel, initialSnapshot?: {}): ({
1001
+ name: string;
1002
+ tracks: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IAnyModelType> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>>;
1003
+ configuration: {
1004
+ [x: string]: any;
1005
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1006
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1007
+ [x: string]: any;
1008
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1009
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1010
+ [x: string]: any;
1011
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1012
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1013
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1014
+ name: {
1015
+ type: string;
1016
+ defaultValue: string;
1017
+ description: string;
1018
+ };
1019
+ assemblyNames: {
1020
+ type: string;
1021
+ defaultValue: never[];
1022
+ description: string;
1023
+ };
1024
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "connectionId">>>;
1025
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1026
+ connect(_arg: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
1027
+ } & {
1028
+ afterAttach(): void;
1029
+ addTrackConf(trackConf: Record<string, unknown> | ({
1030
+ [x: string]: any;
1031
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1032
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1033
+ [x: string]: any;
1034
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1035
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1036
+ [x: string]: any;
1037
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1038
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1039
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)): any;
1040
+ addTrackConfs(trackConfs: (Record<string, unknown> | ({
1041
+ [x: string]: any;
1042
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1043
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1044
+ [x: string]: any;
1045
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1046
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1047
+ [x: string]: any;
1048
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1049
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1050
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>))[]): void;
1051
+ setTrackConfs(trackConfs: import("@jbrowse/core/configuration").AnyConfigurationModel[]): void;
1052
+ clear(): void;
1053
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1054
+ name: import("mobx-state-tree").ISimpleType<string>;
1055
+ tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
1056
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1057
+ name: {
1058
+ type: string;
1059
+ defaultValue: string;
1060
+ description: string;
1061
+ };
1062
+ assemblyNames: {
1063
+ type: string;
1064
+ defaultValue: never[];
1065
+ description: string;
1066
+ };
1067
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "connectionId">>;
1068
+ }, {
1069
+ connect(_arg: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
1070
+ } & {
1071
+ afterAttach(): void;
1072
+ addTrackConf(trackConf: Record<string, unknown> | ({
1073
+ [x: string]: any;
1074
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1075
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1076
+ [x: string]: any;
1077
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1078
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1079
+ [x: string]: any;
1080
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1081
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1082
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)): any;
1083
+ addTrackConfs(trackConfs: (Record<string, unknown> | ({
1084
+ [x: string]: any;
1085
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1086
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1087
+ [x: string]: any;
1088
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1089
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1090
+ [x: string]: any;
1091
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1092
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1093
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>))[]): void;
1094
+ setTrackConfs(trackConfs: import("@jbrowse/core/configuration").AnyConfigurationModel[]): void;
1095
+ clear(): void;
1096
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
1097
+ prepareToBreakConnection(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): (Record<string, number> | (() => void))[] | undefined;
1098
+ breakConnection(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
1099
+ deleteConnection(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): any;
1100
+ addConnectionConf(connectionConf: import("@jbrowse/core/configuration").AnyConfigurationModel): any;
1101
+ clearConnections(): void;
1102
+ } & {
1103
+ queueOfDialogs: [import("@jbrowse/core/util").DialogComponentType, unknown][];
1104
+ } & {
1105
+ readonly DialogComponent: import("@jbrowse/core/util").DialogComponentType | undefined;
1106
+ readonly DialogProps: unknown;
1107
+ } & {
1108
+ removeActiveDialog(): void;
1109
+ queueDialog(cb: (doneCallback: () => void) => [import("@jbrowse/core/util").DialogComponentType, unknown]): void;
1110
+ } & {
1111
+ getReferring(object: import("mobx-state-tree").IAnyStateTreeNode): import("@jbrowse/product-core").ReferringNode[];
1112
+ } & {
1113
+ removeReferring(referring: import("@jbrowse/product-core").ReferringNode[], track: import("@jbrowse/core/pluggableElementTypes").BaseTrackConfig, callbacks: ((arg: string) => void)[], dereferenceTypeCount: Record<string, number>): void;
1114
+ } & {
1115
+ readonly tracks: import("@jbrowse/core/configuration").AnyConfigurationModel[];
1116
+ } & {
1117
+ addTrackConf(trackConf: import("@jbrowse/core/configuration").AnyConfiguration): any;
1118
+ deleteTrackConf(trackConf: import("@jbrowse/core/configuration").AnyConfigurationModel): any;
1119
+ } & {
1120
+ snackbarMessages: import("mobx").IObservableArray<import("@jbrowse/core/ui/SnackbarModel").SnackbarMessage>;
1121
+ } & {
1122
+ readonly snackbarMessageSet: Map<string, import("@jbrowse/core/ui/SnackbarModel").SnackbarMessage>;
1123
+ } & {
1124
+ notify(message: string, level?: import("@jbrowse/core/util").NotificationLevel, action?: import("@jbrowse/core/util").SnackAction): void;
1125
+ notifyError(errorMessage: string, error?: unknown, extra?: unknown): void;
1126
+ pushSnackbarMessage(message: string, level?: import("@jbrowse/core/util").NotificationLevel, action?: import("@jbrowse/core/util").SnackAction): void;
1127
+ popSnackbarMessage(): import("@jbrowse/core/ui/SnackbarModel").SnackbarMessage | undefined;
1128
+ removeSnackbarMessage(message: string): void;
1129
+ } & {
1130
+ task: undefined;
1131
+ } & {
1132
+ readonly version: any;
1133
+ readonly assemblies: any[];
1134
+ readonly assemblyNames: any[];
1135
+ readonly connections: any;
1136
+ readonly assemblyManager: any;
1137
+ readonly views: any[];
1138
+ renderProps(): {
1139
+ theme: any;
1140
+ highResolutionScaling: any;
1141
+ };
1142
+ } & {
1143
+ addView(typeName: string, initialState?: {}): any;
1144
+ removeView(): void;
1145
+ } & {
1146
+ getTrackActionMenuItems(config: any): {
1147
+ label: string;
1148
+ onClick: () => void;
1149
+ icon: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").SvgIconTypeMap<{}, "svg">> & {
1150
+ muiName: string;
1151
+ };
1152
+ }[];
1153
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>): void;
1154
+ renameCurrentSession(sessionName: string): void;
1155
+ setError(error: unknown): void;
1156
+ addInternetAccount(internetAccount: SnapshotIn<any>): void;
1157
+ findAppropriateInternetAccount(location: UriLocation): any;
1158
+ } & {
1159
+ readonly jbrowse: {
1160
+ configuration: {
1161
+ [x: string]: any;
1162
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1163
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1164
+ [x: string]: any;
1165
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1166
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1167
+ [x: string]: any;
1168
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1169
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1170
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1171
+ rpc: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1172
+ defaultDriver: {
1173
+ type: string;
1174
+ description: string;
1175
+ defaultValue: string;
1176
+ };
1177
+ drivers: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IMapType<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> | undefined, import("mobx-state-tree").ModelSnapshotType<Record<string, any>>, ({} & Partial<import("mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> & import("mobx-state-tree/dist/internal").NonEmptyObject) | undefined>>, [undefined]>;
1178
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1179
+ highResolutionScaling: {
1180
+ type: string;
1181
+ defaultValue: number;
1182
+ };
1183
+ formatDetails: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1184
+ feature: {
1185
+ type: string;
1186
+ description: string;
1187
+ defaultValue: {};
1188
+ contextVariable: string[];
1189
+ };
1190
+ subfeatures: {
1191
+ type: string;
1192
+ description: string;
1193
+ defaultValue: {};
1194
+ contextVariable: string[];
1195
+ };
1196
+ depth: {
1197
+ type: string;
1198
+ defaultValue: number;
1199
+ description: string;
1200
+ };
1201
+ maxDepth: {
1202
+ type: string;
1203
+ defaultValue: number;
1204
+ description: string;
1205
+ };
1206
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1207
+ formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1208
+ config: {
1209
+ type: string;
1210
+ description: string;
1211
+ defaultValue: {};
1212
+ contextVariable: string[];
1213
+ };
1214
+ hideUris: {
1215
+ type: string;
1216
+ defaultValue: boolean;
1217
+ };
1218
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1219
+ hierarchical: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1220
+ sort: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1221
+ trackNames: {
1222
+ type: string;
1223
+ defaultValue: boolean;
1224
+ };
1225
+ categories: {
1226
+ type: string;
1227
+ defaultValue: boolean;
1228
+ };
1229
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1230
+ defaultCollapsed: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1231
+ categoryNames: {
1232
+ type: string;
1233
+ defaultValue: never[];
1234
+ };
1235
+ topLevelCategories: {
1236
+ type: string;
1237
+ defaultValue: boolean;
1238
+ };
1239
+ subCategories: {
1240
+ type: string;
1241
+ defaultValue: boolean;
1242
+ };
1243
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1244
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1245
+ theme: {
1246
+ type: string;
1247
+ defaultValue: {};
1248
+ };
1249
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>>;
1250
+ assembly: {
1251
+ [x: string]: any;
1252
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1253
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1254
+ [x: string]: any;
1255
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1256
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1257
+ [x: string]: any;
1258
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1259
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1260
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>;
1261
+ tracks: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IAnyModelType> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>>;
1262
+ internetAccounts: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IAnyModelType> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>>;
1263
+ connections: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IAnyModelType> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>>;
1264
+ aggregateTextSearchAdapters: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IAnyModelType> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>>;
1265
+ plugins: any;
1266
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1267
+ readonly assemblies: ({
1268
+ [x: string]: any;
1269
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1270
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1271
+ [x: string]: any;
1272
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1273
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1274
+ [x: string]: any;
1275
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1276
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1277
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)[];
1278
+ readonly assemblyName: string;
1279
+ readonly rpcManager: any;
1280
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1281
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1282
+ rpc: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1283
+ defaultDriver: {
1284
+ type: string;
1285
+ description: string;
1286
+ defaultValue: string;
1287
+ };
1288
+ drivers: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IMapType<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> | undefined, import("mobx-state-tree").ModelSnapshotType<Record<string, any>>, ({} & Partial<import("mobx-state-tree/dist/internal").ExtractCFromProps<Record<string, any>>> & import("mobx-state-tree/dist/internal").NonEmptyObject) | undefined>>, [undefined]>;
1289
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1290
+ highResolutionScaling: {
1291
+ type: string;
1292
+ defaultValue: number;
1293
+ };
1294
+ formatDetails: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1295
+ feature: {
1296
+ type: string;
1297
+ description: string;
1298
+ defaultValue: {};
1299
+ contextVariable: string[];
1300
+ };
1301
+ subfeatures: {
1302
+ type: string;
1303
+ description: string;
1304
+ defaultValue: {};
1305
+ contextVariable: string[];
1306
+ };
1307
+ depth: {
1308
+ type: string;
1309
+ defaultValue: number;
1310
+ description: string;
1311
+ };
1312
+ maxDepth: {
1313
+ type: string;
1314
+ defaultValue: number;
1315
+ description: string;
1316
+ };
1317
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1318
+ formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1319
+ config: {
1320
+ type: string;
1321
+ description: string;
1322
+ defaultValue: {};
1323
+ contextVariable: string[];
1324
+ };
1325
+ hideUris: {
1326
+ type: string;
1327
+ defaultValue: boolean;
1328
+ };
1329
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1330
+ hierarchical: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1331
+ sort: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1332
+ trackNames: {
1333
+ type: string;
1334
+ defaultValue: boolean;
1335
+ };
1336
+ categories: {
1337
+ type: string;
1338
+ defaultValue: boolean;
1339
+ };
1340
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1341
+ defaultCollapsed: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1342
+ categoryNames: {
1343
+ type: string;
1344
+ defaultValue: never[];
1345
+ };
1346
+ topLevelCategories: {
1347
+ type: string;
1348
+ defaultValue: boolean;
1349
+ };
1350
+ subCategories: {
1351
+ type: string;
1352
+ defaultValue: boolean;
1353
+ };
1354
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1355
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1356
+ theme: {
1357
+ type: string;
1358
+ defaultValue: {};
1359
+ };
1360
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1361
+ assembly: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
1362
+ tracks: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
1363
+ internetAccounts: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
1364
+ connections: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
1365
+ aggregateTextSearchAdapters: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
1366
+ plugins: import("mobx-state-tree").IType<any, any, any>;
1367
+ }, {
1368
+ readonly assemblies: ({
1369
+ [x: string]: any;
1370
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1371
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1372
+ [x: string]: any;
1373
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1374
+ setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1375
+ [x: string]: any;
1376
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1377
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1378
+ } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>)[];
1379
+ readonly assemblyName: string;
1380
+ readonly rpcManager: any;
1381
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
1382
+ readonly pluginManager: PluginManager;
1383
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
1384
+ pluginManager: PluginManager;
1385
+ };
1386
+ export type ViewStateModel = ReturnType<typeof createModel>['model'];
1387
+ export type ViewModel = Instance<ViewStateModel>;