@jbrowse/product-core 2.17.0 → 3.0.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 (77) hide show
  1. package/dist/RootModel/BaseRootModel.d.ts +6 -43
  2. package/dist/RootModel/BaseRootModel.js +5 -41
  3. package/dist/RootModel/FormatAbout.d.ts +0 -10
  4. package/dist/RootModel/FormatAbout.js +0 -10
  5. package/dist/RootModel/FormatDetails.d.ts +0 -17
  6. package/dist/RootModel/FormatDetails.js +0 -17
  7. package/dist/RootModel/HierarchicalConfig.d.ts +0 -19
  8. package/dist/RootModel/HierarchicalConfig.js +0 -19
  9. package/dist/RootModel/InternetAccounts.d.ts +4 -20
  10. package/dist/RootModel/InternetAccounts.js +0 -20
  11. package/dist/Session/BaseSession.d.ts +5 -96
  12. package/dist/Session/BaseSession.js +1 -63
  13. package/dist/Session/Connections.d.ts +5 -56
  14. package/dist/Session/Connections.js +0 -30
  15. package/dist/Session/DialogQueue.d.ts +3 -22
  16. package/dist/Session/DialogQueue.js +0 -17
  17. package/dist/Session/DrawerWidgets.d.ts +3 -63
  18. package/dist/Session/DrawerWidgets.js +2 -61
  19. package/dist/Session/MultipleViews.d.ts +8 -1760
  20. package/dist/Session/MultipleViews.js +2 -40
  21. package/dist/Session/ReferenceManagement.d.ts +2 -21
  22. package/dist/Session/ReferenceManagement.js +0 -23
  23. package/dist/Session/SessionTracks.d.ts +7 -1748
  24. package/dist/Session/SessionTracks.js +1 -21
  25. package/dist/Session/Themes.d.ts +3 -21
  26. package/dist/Session/Themes.js +1 -17
  27. package/dist/Session/Tracks.d.ts +6 -1737
  28. package/dist/Session/Tracks.js +0 -16
  29. package/dist/rpcWorker.d.ts +2 -2
  30. package/dist/rpcWorker.js +3 -17
  31. package/dist/ui/AboutDialog.d.ts +2 -3
  32. package/dist/ui/AboutDialog.js +2 -3
  33. package/dist/ui/AboutDialogContents.d.ts +2 -3
  34. package/dist/ui/AboutDialogContents.js +20 -53
  35. package/dist/ui/FileInfoPanel.d.ts +2 -3
  36. package/dist/ui/FileInfoPanel.js +5 -28
  37. package/dist/ui/RefNameInfoDialog.d.ts +2 -3
  38. package/dist/ui/RefNameInfoDialog.js +17 -44
  39. package/esm/RootModel/BaseRootModel.d.ts +6 -43
  40. package/esm/RootModel/BaseRootModel.js +6 -42
  41. package/esm/RootModel/FormatAbout.d.ts +0 -10
  42. package/esm/RootModel/FormatAbout.js +0 -10
  43. package/esm/RootModel/FormatDetails.d.ts +0 -17
  44. package/esm/RootModel/FormatDetails.js +0 -17
  45. package/esm/RootModel/HierarchicalConfig.d.ts +0 -19
  46. package/esm/RootModel/HierarchicalConfig.js +0 -19
  47. package/esm/RootModel/InternetAccounts.d.ts +4 -20
  48. package/esm/RootModel/InternetAccounts.js +0 -20
  49. package/esm/Session/BaseSession.d.ts +5 -96
  50. package/esm/Session/BaseSession.js +1 -63
  51. package/esm/Session/Connections.d.ts +5 -56
  52. package/esm/Session/Connections.js +1 -31
  53. package/esm/Session/DialogQueue.d.ts +3 -22
  54. package/esm/Session/DialogQueue.js +0 -17
  55. package/esm/Session/DrawerWidgets.d.ts +3 -63
  56. package/esm/Session/DrawerWidgets.js +2 -61
  57. package/esm/Session/MultipleViews.d.ts +8 -1760
  58. package/esm/Session/MultipleViews.js +2 -40
  59. package/esm/Session/ReferenceManagement.d.ts +2 -21
  60. package/esm/Session/ReferenceManagement.js +0 -23
  61. package/esm/Session/SessionTracks.d.ts +7 -1748
  62. package/esm/Session/SessionTracks.js +1 -21
  63. package/esm/Session/Themes.d.ts +3 -21
  64. package/esm/Session/Themes.js +1 -17
  65. package/esm/Session/Tracks.d.ts +6 -1737
  66. package/esm/Session/Tracks.js +0 -16
  67. package/esm/rpcWorker.d.ts +2 -2
  68. package/esm/rpcWorker.js +3 -17
  69. package/esm/ui/AboutDialog.d.ts +2 -3
  70. package/esm/ui/AboutDialog.js +3 -4
  71. package/esm/ui/AboutDialogContents.d.ts +2 -3
  72. package/esm/ui/AboutDialogContents.js +20 -30
  73. package/esm/ui/FileInfoPanel.d.ts +2 -3
  74. package/esm/ui/FileInfoPanel.js +5 -5
  75. package/esm/ui/RefNameInfoDialog.d.ts +2 -3
  76. package/esm/ui/RefNameInfoDialog.js +18 -22
  77. package/package.json +3 -3
@@ -1,14 +1,8 @@
1
- import { IAnyStateTreeNode, Instance } from 'mobx-state-tree';
2
- import PluginManager from '@jbrowse/core/PluginManager';
3
- import { Region } from '@jbrowse/core/util';
4
- import { IBaseViewModel } from '@jbrowse/core/pluggableElementTypes';
5
- import { IBaseViewModelWithDisplayedRegions } from '@jbrowse/core/pluggableElementTypes/models/BaseViewModel';
6
- /**
7
- * #stateModel MultipleViewsSessionMixin
8
- * composed of
9
- * - [BaseSessionModel](../basesessionmodel)
10
- * - [DrawerWidgetSessionMixin](../drawerwidgetsessionmixin)
11
- */
1
+ import type PluginManager from '@jbrowse/core/PluginManager';
2
+ import type { IBaseViewModel } from '@jbrowse/core/pluggableElementTypes';
3
+ import type { IBaseViewModelWithDisplayedRegions } from '@jbrowse/core/pluggableElementTypes/models/BaseViewModel';
4
+ import type { Region } from '@jbrowse/core/util';
5
+ import type { IAnyStateTreeNode, Instance } from 'mobx-state-tree';
12
6
  export declare function MultipleViewsSessionMixin(pluginManager: PluginManager): import("mobx-state-tree").IModelType<{
13
7
  id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
14
8
  name: import("mobx-state-tree").ISimpleType<string>;
@@ -20,1693 +14,12 @@ export declare function MultipleViewsSessionMixin(pluginManager: PluginManager):
20
14
  activeWidgets: import("mobx-state-tree").IMapType<import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>>;
21
15
  minimized: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
22
16
  } & {
23
- /**
24
- * #property
25
- */
26
17
  views: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyType>;
27
18
  }, {
28
19
  selection: unknown;
29
20
  hovered: unknown;
30
21
  } & {
31
- readonly root: {
32
- jbrowse: any;
33
- session: any;
34
- sessionPath: string;
35
- assemblyManager: {
36
- assemblies: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
37
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
38
- }, {
39
- error: unknown;
40
- loadingP: Promise<void> | undefined;
41
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly" /**
42
- * #property
43
- */).BasicRegion[] | undefined;
44
- refNameAliases: {
45
- [x: string]: string;
46
- } | undefined;
47
- lowerCaseRefNameAliases: {
48
- [x: string]: string;
49
- } | undefined;
50
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
51
- } & {
52
- getConf(arg: string): any;
53
- } & {
54
- readonly initialized: boolean;
55
- readonly name: string;
56
- readonly regions: import("@jbrowse/core/assemblyManager/assembly" /**
57
- * #action
58
- */).BasicRegion[] | undefined;
59
- readonly aliases: string[];
60
- readonly displayName: string | undefined;
61
- hasName(name: string): boolean;
62
- readonly allAliases: string[];
63
- readonly allRefNames: string[] | undefined;
64
- readonly lowerCaseRefNames: string[] | undefined;
65
- readonly allRefNamesWithLowerCase: string[] | undefined;
66
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
67
- readonly refNameColors: string[];
68
- } & {
69
- readonly refNames: string[] | undefined;
70
- } & {
71
- getCanonicalRefName(refName: string): string | undefined;
72
- getRefNameColor(refName: string): string | undefined;
73
- isValidRefName(refName: string): boolean;
74
- } & {
75
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
76
- regions: import("@jbrowse/core/util").Region[];
77
- refNameAliases: {
78
- [x: string]: string;
79
- };
80
- lowerCaseRefNameAliases: {
81
- [x: string]: string;
82
- };
83
- cytobands: import("@jbrowse/core/util").Feature[];
84
- }): void;
85
- setError(e: unknown): void;
86
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
87
- setRefNameAliases(aliases: {
88
- [x: string]: string;
89
- }, lowerCaseAliases: {
90
- [x: string]: string;
91
- }): void;
92
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
93
- setLoadingP(p?: Promise<void>): void;
94
- load(): Promise<void>;
95
- loadPre(): Promise<void>;
96
- } & {
97
- getAdapterMapEntry(adapterConf: {
98
- [x: string]: unknown;
99
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
100
- getRefNameMapForAdapter(adapterConf: {
101
- [x: string]: unknown;
102
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
103
- [x: string]: string;
104
- }>;
105
- getReverseRefNameMapForAdapter(adapterConf: {
106
- [x: string]: unknown;
107
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
108
- [x: string]: string;
109
- }>;
110
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
111
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
112
- }, {
113
- error: unknown;
114
- loadingP: Promise<void> | undefined;
115
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
116
- refNameAliases: {
117
- [x: string]: string;
118
- } | undefined;
119
- lowerCaseRefNameAliases: {
120
- [x: string]: string;
121
- } | undefined;
122
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
123
- } & {
124
- getConf(arg: string): any;
125
- } & {
126
- readonly initialized: boolean;
127
- readonly name: string;
128
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
129
- readonly aliases: string[];
130
- readonly displayName: string | undefined;
131
- hasName(name: string): boolean;
132
- readonly allAliases: string[];
133
- readonly allRefNames: string[] | undefined;
134
- readonly lowerCaseRefNames: string[] | undefined;
135
- readonly allRefNamesWithLowerCase: string[] | undefined;
136
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
137
- readonly refNameColors: string[];
138
- } & {
139
- readonly refNames: string[] | undefined;
140
- } & {
141
- getCanonicalRefName(refName: string): string | undefined;
142
- getRefNameColor(refName: string): string | undefined;
143
- isValidRefName(refName: string): boolean;
144
- } & {
145
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
146
- regions: import("@jbrowse/core/util").Region[];
147
- refNameAliases: {
148
- [x: string]: string;
149
- };
150
- lowerCaseRefNameAliases: {
151
- [x: string]: string;
152
- };
153
- cytobands: import("@jbrowse/core/util").Feature[];
154
- }): void;
155
- setError(e: unknown): void;
156
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
157
- setRefNameAliases(aliases: {
158
- [x: string]: string;
159
- }, lowerCaseAliases: {
160
- [x: string]: string;
161
- }): void;
162
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
163
- setLoadingP(p?: Promise<void>): void;
164
- load(): Promise<void>;
165
- loadPre(): Promise<void>;
166
- } & {
167
- getAdapterMapEntry(adapterConf: {
168
- [x: string]: unknown;
169
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
170
- getRefNameMapForAdapter(adapterConf: {
171
- [x: string]: unknown;
172
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
173
- [x: string]: string;
174
- }>;
175
- getReverseRefNameMapForAdapter(adapterConf: {
176
- [x: string]: unknown;
177
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
178
- [x: string]: string;
179
- }>;
180
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>;
181
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
182
- readonly assemblyNameMap: Record<string, {
183
- configuration: any;
184
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
185
- error: unknown;
186
- loadingP: Promise<void> | undefined;
187
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
188
- refNameAliases: {
189
- [x: string]: string;
190
- } | undefined;
191
- lowerCaseRefNameAliases: {
192
- [x: string]: string;
193
- } | undefined;
194
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
195
- } & {
196
- getConf(arg: string): any;
197
- } & {
198
- readonly initialized: boolean;
199
- readonly name: string;
200
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
201
- readonly aliases: string[];
202
- readonly displayName: string | undefined;
203
- hasName(name: string): boolean;
204
- readonly allAliases: string[];
205
- readonly allRefNames: string[] | undefined;
206
- readonly lowerCaseRefNames: string[] | undefined;
207
- readonly allRefNamesWithLowerCase: string[] | undefined;
208
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
209
- readonly refNameColors: string[];
210
- } & {
211
- readonly refNames: string[] | undefined;
212
- } & {
213
- getCanonicalRefName(refName: string): string | undefined;
214
- getRefNameColor(refName: string): string | undefined;
215
- isValidRefName(refName: string): boolean;
216
- } & {
217
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
218
- regions: import("@jbrowse/core/util").Region[];
219
- refNameAliases: {
220
- [x: string]: string;
221
- };
222
- lowerCaseRefNameAliases: {
223
- [x: string]: string;
224
- };
225
- cytobands: import("@jbrowse/core/util").Feature[];
226
- }): void;
227
- setError(e: unknown): void;
228
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
229
- setRefNameAliases(aliases: {
230
- [x: string]: string;
231
- }, lowerCaseAliases: {
232
- [x: string]: string;
233
- }): void;
234
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
235
- setLoadingP(p?: Promise<void>): void;
236
- load(): Promise<void>;
237
- loadPre(): Promise<void>;
238
- } & {
239
- getAdapterMapEntry(adapterConf: {
240
- [x: string]: unknown;
241
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
242
- getRefNameMapForAdapter(adapterConf: {
243
- [x: string]: unknown;
244
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
245
- [x: string]: string;
246
- }>;
247
- getReverseRefNameMapForAdapter(adapterConf: {
248
- [x: string]: unknown;
249
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
250
- [x: string]: string;
251
- }>;
252
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
253
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
254
- }, {
255
- error: unknown;
256
- loadingP: Promise<void> | undefined;
257
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
258
- refNameAliases: {
259
- [x: string]: string;
260
- } | undefined;
261
- lowerCaseRefNameAliases: {
262
- [x: string]: string;
263
- } | undefined;
264
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
265
- } & {
266
- getConf(arg: string): any;
267
- } & {
268
- readonly initialized: boolean;
269
- readonly name: string;
270
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
271
- readonly aliases: string[];
272
- readonly displayName: string | undefined;
273
- hasName(name: string): boolean;
274
- readonly allAliases: string[];
275
- readonly allRefNames: string[] | undefined;
276
- readonly lowerCaseRefNames: string[] | undefined;
277
- readonly allRefNamesWithLowerCase: string[] | undefined;
278
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
279
- readonly refNameColors: string[];
280
- } & {
281
- readonly refNames: string[] | undefined;
282
- } & {
283
- getCanonicalRefName(refName: string): string | undefined;
284
- getRefNameColor(refName: string): string | undefined;
285
- isValidRefName(refName: string): boolean;
286
- } & {
287
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
288
- regions: import("@jbrowse/core/util").Region[];
289
- refNameAliases: {
290
- [x: string]: string;
291
- };
292
- lowerCaseRefNameAliases: {
293
- [x: string]: string;
294
- };
295
- cytobands: import("@jbrowse/core/util").Feature[];
296
- }): void;
297
- setError(e: unknown): void;
298
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
299
- setRefNameAliases(aliases: {
300
- [x: string]: string;
301
- }, lowerCaseAliases: {
302
- [x: string]: string;
303
- }): void;
304
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
305
- setLoadingP(p?: Promise<void>): void;
306
- load(): Promise<void>;
307
- loadPre(): Promise<void>;
308
- } & {
309
- getAdapterMapEntry(adapterConf: {
310
- [x: string]: unknown;
311
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
312
- getRefNameMapForAdapter(adapterConf: {
313
- [x: string]: unknown;
314
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
315
- [x: string]: string;
316
- }>;
317
- getReverseRefNameMapForAdapter(adapterConf: {
318
- [x: string]: unknown;
319
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
320
- [x: string]: string;
321
- }>;
322
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>;
323
- } & {
324
- get(asmName: string): ({
325
- configuration: any;
326
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
327
- error: unknown;
328
- loadingP: Promise<void> | undefined;
329
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
330
- refNameAliases: {
331
- [x: string]: string;
332
- } | undefined;
333
- lowerCaseRefNameAliases: {
334
- [x: string]: string;
335
- } | undefined;
336
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
337
- } & {
338
- getConf(arg: string): any;
339
- } & {
340
- readonly initialized: boolean;
341
- readonly name: string;
342
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
343
- readonly aliases: string[];
344
- readonly displayName: string | undefined;
345
- hasName(name: string): boolean;
346
- readonly allAliases: string[];
347
- readonly allRefNames: string[] | undefined;
348
- readonly lowerCaseRefNames: string[] | undefined;
349
- readonly allRefNamesWithLowerCase: string[] | undefined;
350
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
351
- readonly refNameColors: string[];
352
- } & {
353
- readonly refNames: string[] | undefined;
354
- } & {
355
- getCanonicalRefName(refName: string): string | undefined;
356
- getRefNameColor(refName: string): string | undefined;
357
- isValidRefName(refName: string): boolean;
358
- } & {
359
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
360
- regions: import("@jbrowse/core/util").Region[];
361
- refNameAliases: {
362
- [x: string]: string;
363
- };
364
- lowerCaseRefNameAliases: {
365
- [x: string]: string;
366
- };
367
- cytobands: import("@jbrowse/core/util").Feature[];
368
- }): void;
369
- setError(e: unknown): void;
370
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
371
- setRefNameAliases(aliases: {
372
- [x: string]: string;
373
- }, lowerCaseAliases: {
374
- [x: string]: string;
375
- }): void;
376
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
377
- setLoadingP(p?: Promise<void>): void;
378
- load(): Promise<void>;
379
- loadPre(): Promise<void>;
380
- } & {
381
- getAdapterMapEntry(adapterConf: {
382
- [x: string]: unknown;
383
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
384
- getRefNameMapForAdapter(adapterConf: {
385
- [x: string]: unknown;
386
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
387
- [x: string]: string;
388
- }>;
389
- getReverseRefNameMapForAdapter(adapterConf: {
390
- [x: string]: unknown;
391
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
392
- [x: string]: string;
393
- }>;
394
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
395
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
396
- }, {
397
- error: unknown;
398
- loadingP: Promise<void> | undefined;
399
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
400
- refNameAliases: {
401
- [x: string]: string;
402
- } | undefined;
403
- lowerCaseRefNameAliases: {
404
- [x: string]: string;
405
- } | undefined;
406
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
407
- } & {
408
- getConf(arg: string): any;
409
- } & {
410
- readonly initialized: boolean;
411
- readonly name: string;
412
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
413
- readonly aliases: string[];
414
- readonly displayName: string | undefined;
415
- hasName(name: string): boolean;
416
- readonly allAliases: string[];
417
- readonly allRefNames: string[] | undefined;
418
- readonly lowerCaseRefNames: string[] | undefined;
419
- readonly allRefNamesWithLowerCase: string[] | undefined;
420
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
421
- readonly refNameColors: string[];
422
- } & {
423
- readonly refNames: string[] | undefined;
424
- } & {
425
- getCanonicalRefName(refName: string): string | undefined;
426
- getRefNameColor(refName: string): string | undefined;
427
- isValidRefName(refName: string): boolean;
428
- } & {
429
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
430
- regions: import("@jbrowse/core/util").Region[];
431
- refNameAliases: {
432
- [x: string]: string;
433
- };
434
- lowerCaseRefNameAliases: {
435
- [x: string]: string;
436
- };
437
- cytobands: import("@jbrowse/core/util").Feature[];
438
- }): void;
439
- setError(e: unknown): void;
440
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
441
- setRefNameAliases(aliases: {
442
- [x: string]: string;
443
- }, lowerCaseAliases: {
444
- [x: string]: string;
445
- }): void;
446
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
447
- setLoadingP(p?: Promise<void>): void;
448
- load(): Promise<void>;
449
- loadPre(): Promise<void>;
450
- } & {
451
- getAdapterMapEntry(adapterConf: {
452
- [x: string]: unknown;
453
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
454
- getRefNameMapForAdapter(adapterConf: {
455
- [x: string]: unknown;
456
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
457
- [x: string]: string;
458
- }>;
459
- getReverseRefNameMapForAdapter(adapterConf: {
460
- [x: string]: unknown;
461
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
462
- [x: string]: string;
463
- }>;
464
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
465
- readonly assemblyNamesList: any[];
466
- readonly assemblyList: import("@jbrowse/core/configuration").AnyConfigurationModel[];
467
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
468
- } & {
469
- waitForAssembly(assemblyName: string): Promise<({
470
- configuration: any;
471
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
472
- error: unknown;
473
- loadingP: Promise<void> | undefined;
474
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
475
- refNameAliases: {
476
- [x: string]: string;
477
- } | undefined;
478
- lowerCaseRefNameAliases: {
479
- [x: string]: string;
480
- } | undefined;
481
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
482
- } & {
483
- getConf(arg: string): any;
484
- } & {
485
- readonly initialized: boolean;
486
- readonly name: string;
487
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
488
- readonly aliases: string[];
489
- readonly displayName: string | undefined;
490
- hasName(name: string): boolean;
491
- readonly allAliases: string[];
492
- readonly allRefNames: string[] | undefined;
493
- readonly lowerCaseRefNames: string[] | undefined;
494
- readonly allRefNamesWithLowerCase: string[] | undefined;
495
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
496
- readonly refNameColors: string[];
497
- } & {
498
- readonly refNames: string[] | undefined;
499
- } & {
500
- getCanonicalRefName(refName: string): string | undefined;
501
- getRefNameColor(refName: string): string | undefined;
502
- isValidRefName(refName: string): boolean;
503
- } & {
504
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
505
- regions: import("@jbrowse/core/util").Region[];
506
- refNameAliases: {
507
- [x: string]: string;
508
- };
509
- lowerCaseRefNameAliases: {
510
- [x: string]: string;
511
- };
512
- cytobands: import("@jbrowse/core/util").Feature[];
513
- }): void;
514
- setError(e: unknown): void;
515
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
516
- setRefNameAliases(aliases: {
517
- [x: string]: string;
518
- }, lowerCaseAliases: {
519
- [x: string]: string;
520
- }): void;
521
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
522
- setLoadingP(p?: Promise<void>): void;
523
- load(): Promise<void>;
524
- loadPre(): Promise<void>;
525
- } & {
526
- getAdapterMapEntry(adapterConf: {
527
- [x: string]: unknown;
528
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
529
- getRefNameMapForAdapter(adapterConf: {
530
- [x: string]: unknown;
531
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
532
- [x: string]: string;
533
- }>;
534
- getReverseRefNameMapForAdapter(adapterConf: {
535
- [x: string]: unknown;
536
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
537
- [x: string]: string;
538
- }>;
539
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
540
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
541
- }, {
542
- error: unknown;
543
- loadingP: Promise<void> | undefined;
544
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
545
- refNameAliases: {
546
- [x: string]: string;
547
- } | undefined;
548
- lowerCaseRefNameAliases: {
549
- [x: string]: string;
550
- } | undefined;
551
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
552
- } & {
553
- getConf(arg: string): any;
554
- } & {
555
- readonly initialized: boolean;
556
- readonly name: string;
557
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
558
- readonly aliases: string[];
559
- readonly displayName: string | undefined;
560
- hasName(name: string): boolean;
561
- readonly allAliases: string[];
562
- readonly allRefNames: string[] | undefined;
563
- readonly lowerCaseRefNames: string[] | undefined;
564
- readonly allRefNamesWithLowerCase: string[] | undefined;
565
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
566
- readonly refNameColors: string[];
567
- } & {
568
- readonly refNames: string[] | undefined;
569
- } & {
570
- getCanonicalRefName(refName: string): string | undefined;
571
- getRefNameColor(refName: string): string | undefined;
572
- isValidRefName(refName: string): boolean;
573
- } & {
574
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
575
- regions: import("@jbrowse/core/util").Region[];
576
- refNameAliases: {
577
- [x: string]: string;
578
- };
579
- lowerCaseRefNameAliases: {
580
- [x: string]: string;
581
- };
582
- cytobands: import("@jbrowse/core/util").Feature[];
583
- }): void;
584
- setError(e: unknown): void;
585
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
586
- setRefNameAliases(aliases: {
587
- [x: string]: string;
588
- }, lowerCaseAliases: {
589
- [x: string]: string;
590
- }): void;
591
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
592
- setLoadingP(p?: Promise<void>): void;
593
- load(): Promise<void>;
594
- loadPre(): Promise<void>;
595
- } & {
596
- getAdapterMapEntry(adapterConf: {
597
- [x: string]: unknown;
598
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
599
- getRefNameMapForAdapter(adapterConf: {
600
- [x: string]: unknown;
601
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
602
- [x: string]: string;
603
- }>;
604
- getReverseRefNameMapForAdapter(adapterConf: {
605
- [x: string]: unknown;
606
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
607
- [x: string]: string;
608
- }>;
609
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined>;
610
- getRefNameMapForAdapter(adapterConf: {
611
- [x: string]: unknown;
612
- }, assemblyName: string | undefined, opts: {
613
- signal?: AbortSignal;
614
- sessionId: string;
615
- }): Promise<{
616
- [x: string]: string;
617
- } | undefined>;
618
- getReverseRefNameMapForAdapter(adapterConf: {
619
- [x: string]: unknown;
620
- }, assemblyName: string | undefined, opts: {
621
- signal?: AbortSignal;
622
- sessionId: string;
623
- }): Promise<{
624
- [x: string]: string;
625
- } | undefined>;
626
- isValidRefName(refName: string, assemblyName: string): boolean;
627
- } & {
628
- afterAttach(): void;
629
- removeAssembly(asm: import("@jbrowse/core/assemblyManager/assembly").Assembly): void;
630
- addAssembly(configuration: any): void;
631
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
632
- assemblies: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
633
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
634
- }, {
635
- error: unknown;
636
- loadingP: Promise<void> | undefined;
637
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly" /**
638
- * #property
639
- */).BasicRegion[] | undefined;
640
- refNameAliases: {
641
- [x: string]: string;
642
- } | undefined;
643
- lowerCaseRefNameAliases: {
644
- [x: string]: string;
645
- } | undefined;
646
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
647
- } & {
648
- getConf(arg: string): any;
649
- } & {
650
- readonly initialized: boolean;
651
- readonly name: string;
652
- readonly regions: import("@jbrowse/core/assemblyManager/assembly" /**
653
- * #action
654
- */).BasicRegion[] | undefined;
655
- readonly aliases: string[];
656
- readonly displayName: string | undefined;
657
- hasName(name: string): boolean;
658
- readonly allAliases: string[];
659
- readonly allRefNames: string[] | undefined;
660
- readonly lowerCaseRefNames: string[] | undefined;
661
- readonly allRefNamesWithLowerCase: string[] | undefined;
662
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
663
- readonly refNameColors: string[];
664
- } & {
665
- readonly refNames: string[] | undefined;
666
- } & {
667
- getCanonicalRefName(refName: string): string | undefined;
668
- getRefNameColor(refName: string): string | undefined;
669
- isValidRefName(refName: string): boolean;
670
- } & {
671
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
672
- regions: import("@jbrowse/core/util").Region[];
673
- refNameAliases: {
674
- [x: string]: string;
675
- };
676
- lowerCaseRefNameAliases: {
677
- [x: string]: string;
678
- };
679
- cytobands: import("@jbrowse/core/util").Feature[];
680
- }): void;
681
- setError(e: unknown): void;
682
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
683
- setRefNameAliases(aliases: {
684
- [x: string]: string;
685
- }, lowerCaseAliases: {
686
- [x: string]: string;
687
- }): void;
688
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
689
- setLoadingP(p?: Promise<void>): void;
690
- load(): Promise<void>;
691
- loadPre(): Promise<void>;
692
- } & {
693
- getAdapterMapEntry(adapterConf: {
694
- [x: string]: unknown;
695
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
696
- getRefNameMapForAdapter(adapterConf: {
697
- [x: string]: unknown;
698
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
699
- [x: string]: string;
700
- }>;
701
- getReverseRefNameMapForAdapter(adapterConf: {
702
- [x: string]: unknown;
703
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
704
- [x: string]: string;
705
- }>;
706
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
707
- }, {
708
- readonly assemblyNameMap: Record<string, {
709
- configuration: any;
710
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
711
- error: unknown;
712
- loadingP: Promise<void> | undefined;
713
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
714
- refNameAliases: {
715
- [x: string]: string;
716
- } | undefined;
717
- lowerCaseRefNameAliases: {
718
- [x: string]: string;
719
- } | undefined;
720
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
721
- } & {
722
- getConf(arg: string): any;
723
- } & {
724
- readonly initialized: boolean;
725
- readonly name: string;
726
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
727
- readonly aliases: string[];
728
- readonly displayName: string | undefined;
729
- hasName(name: string): boolean;
730
- readonly allAliases: string[];
731
- readonly allRefNames: string[] | undefined;
732
- readonly lowerCaseRefNames: string[] | undefined;
733
- readonly allRefNamesWithLowerCase: string[] | undefined;
734
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
735
- readonly refNameColors: string[];
736
- } & {
737
- readonly refNames: string[] | undefined;
738
- } & {
739
- getCanonicalRefName(refName: string): string | undefined;
740
- getRefNameColor(refName: string): string | undefined;
741
- isValidRefName(refName: string): boolean;
742
- } & {
743
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
744
- regions: import("@jbrowse/core/util").Region[];
745
- refNameAliases: {
746
- [x: string]: string;
747
- };
748
- lowerCaseRefNameAliases: {
749
- [x: string]: string;
750
- };
751
- cytobands: import("@jbrowse/core/util").Feature[];
752
- }): void;
753
- setError(e: unknown): void;
754
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
755
- setRefNameAliases(aliases: {
756
- [x: string]: string;
757
- }, lowerCaseAliases: {
758
- [x: string]: string;
759
- }): void;
760
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
761
- setLoadingP(p?: Promise<void>): void;
762
- load(): Promise<void>;
763
- loadPre(): Promise<void>;
764
- } & {
765
- getAdapterMapEntry(adapterConf: {
766
- [x: string]: unknown;
767
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
768
- getRefNameMapForAdapter(adapterConf: {
769
- [x: string]: unknown;
770
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
771
- [x: string]: string;
772
- }>;
773
- getReverseRefNameMapForAdapter(adapterConf: {
774
- [x: string]: unknown;
775
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
776
- [x: string]: string;
777
- }>;
778
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
779
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
780
- }, {
781
- error: unknown;
782
- loadingP: Promise<void> | undefined;
783
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
784
- refNameAliases: {
785
- [x: string]: string;
786
- } | undefined;
787
- lowerCaseRefNameAliases: {
788
- [x: string]: string;
789
- } | undefined;
790
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
791
- } & {
792
- getConf(arg: string): any;
793
- } & {
794
- readonly initialized: boolean;
795
- readonly name: string;
796
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
797
- readonly aliases: string[];
798
- readonly displayName: string | undefined;
799
- hasName(name: string): boolean;
800
- readonly allAliases: string[];
801
- readonly allRefNames: string[] | undefined;
802
- readonly lowerCaseRefNames: string[] | undefined;
803
- readonly allRefNamesWithLowerCase: string[] | undefined;
804
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
805
- readonly refNameColors: string[];
806
- } & {
807
- readonly refNames: string[] | undefined;
808
- } & {
809
- getCanonicalRefName(refName: string): string | undefined;
810
- getRefNameColor(refName: string): string | undefined;
811
- isValidRefName(refName: string): boolean;
812
- } & {
813
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
814
- regions: import("@jbrowse/core/util").Region[];
815
- refNameAliases: {
816
- [x: string]: string;
817
- };
818
- lowerCaseRefNameAliases: {
819
- [x: string]: string;
820
- };
821
- cytobands: import("@jbrowse/core/util").Feature[];
822
- }): void;
823
- setError(e: unknown): void;
824
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
825
- setRefNameAliases(aliases: {
826
- [x: string]: string;
827
- }, lowerCaseAliases: {
828
- [x: string]: string;
829
- }): void;
830
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
831
- setLoadingP(p?: Promise<void>): void;
832
- load(): Promise<void>;
833
- loadPre(): Promise<void>;
834
- } & {
835
- getAdapterMapEntry(adapterConf: {
836
- [x: string]: unknown;
837
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
838
- getRefNameMapForAdapter(adapterConf: {
839
- [x: string]: unknown;
840
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
841
- [x: string]: string;
842
- }>;
843
- getReverseRefNameMapForAdapter(adapterConf: {
844
- [x: string]: unknown;
845
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
846
- [x: string]: string;
847
- }>;
848
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>;
849
- } & {
850
- get(asmName: string): ({
851
- configuration: any;
852
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
853
- error: unknown;
854
- loadingP: Promise<void> | undefined;
855
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
856
- refNameAliases: {
857
- [x: string]: string;
858
- } | undefined;
859
- lowerCaseRefNameAliases: {
860
- [x: string]: string;
861
- } | undefined;
862
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
863
- } & {
864
- getConf(arg: string): any;
865
- } & {
866
- readonly initialized: boolean;
867
- readonly name: string;
868
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
869
- readonly aliases: string[];
870
- readonly displayName: string | undefined;
871
- hasName(name: string): boolean;
872
- readonly allAliases: string[];
873
- readonly allRefNames: string[] | undefined;
874
- readonly lowerCaseRefNames: string[] | undefined;
875
- readonly allRefNamesWithLowerCase: string[] | undefined;
876
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
877
- readonly refNameColors: string[];
878
- } & {
879
- readonly refNames: string[] | undefined;
880
- } & {
881
- getCanonicalRefName(refName: string): string | undefined;
882
- getRefNameColor(refName: string): string | undefined;
883
- isValidRefName(refName: string): boolean;
884
- } & {
885
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
886
- regions: import("@jbrowse/core/util").Region[];
887
- refNameAliases: {
888
- [x: string]: string;
889
- };
890
- lowerCaseRefNameAliases: {
891
- [x: string]: string;
892
- };
893
- cytobands: import("@jbrowse/core/util").Feature[];
894
- }): void;
895
- setError(e: unknown): void;
896
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
897
- setRefNameAliases(aliases: {
898
- [x: string]: string;
899
- }, lowerCaseAliases: {
900
- [x: string]: string;
901
- }): void;
902
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
903
- setLoadingP(p?: Promise<void>): void;
904
- load(): Promise<void>;
905
- loadPre(): Promise<void>;
906
- } & {
907
- getAdapterMapEntry(adapterConf: {
908
- [x: string]: unknown;
909
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
910
- getRefNameMapForAdapter(adapterConf: {
911
- [x: string]: unknown;
912
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
913
- [x: string]: string;
914
- }>;
915
- getReverseRefNameMapForAdapter(adapterConf: {
916
- [x: string]: unknown;
917
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
918
- [x: string]: string;
919
- }>;
920
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
921
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
922
- }, {
923
- error: unknown;
924
- loadingP: Promise<void> | undefined;
925
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
926
- refNameAliases: {
927
- [x: string]: string;
928
- } | undefined;
929
- lowerCaseRefNameAliases: {
930
- [x: string]: string;
931
- } | undefined;
932
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
933
- } & {
934
- getConf(arg: string): any;
935
- } & {
936
- readonly initialized: boolean;
937
- readonly name: string;
938
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
939
- readonly aliases: string[];
940
- readonly displayName: string | undefined;
941
- hasName(name: string): boolean;
942
- readonly allAliases: string[];
943
- readonly allRefNames: string[] | undefined;
944
- readonly lowerCaseRefNames: string[] | undefined;
945
- readonly allRefNamesWithLowerCase: string[] | undefined;
946
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
947
- readonly refNameColors: string[];
948
- } & {
949
- readonly refNames: string[] | undefined;
950
- } & {
951
- getCanonicalRefName(refName: string): string | undefined;
952
- getRefNameColor(refName: string): string | undefined;
953
- isValidRefName(refName: string): boolean;
954
- } & {
955
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
956
- regions: import("@jbrowse/core/util").Region[];
957
- refNameAliases: {
958
- [x: string]: string;
959
- };
960
- lowerCaseRefNameAliases: {
961
- [x: string]: string;
962
- };
963
- cytobands: import("@jbrowse/core/util").Feature[];
964
- }): void;
965
- setError(e: unknown): void;
966
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
967
- setRefNameAliases(aliases: {
968
- [x: string]: string;
969
- }, lowerCaseAliases: {
970
- [x: string]: string;
971
- }): void;
972
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
973
- setLoadingP(p?: Promise<void>): void;
974
- load(): Promise<void>;
975
- loadPre(): Promise<void>;
976
- } & {
977
- getAdapterMapEntry(adapterConf: {
978
- [x: string]: unknown;
979
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
980
- getRefNameMapForAdapter(adapterConf: {
981
- [x: string]: unknown;
982
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
983
- [x: string]: string;
984
- }>;
985
- getReverseRefNameMapForAdapter(adapterConf: {
986
- [x: string]: unknown;
987
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
988
- [x: string]: string;
989
- }>;
990
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
991
- readonly assemblyNamesList: any[];
992
- readonly assemblyList: import("@jbrowse/core/configuration").AnyConfigurationModel[];
993
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
994
- } & {
995
- waitForAssembly(assemblyName: string): Promise<({
996
- configuration: any;
997
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
998
- error: unknown;
999
- loadingP: Promise<void> | undefined;
1000
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1001
- refNameAliases: {
1002
- [x: string]: string;
1003
- } | undefined;
1004
- lowerCaseRefNameAliases: {
1005
- [x: string]: string;
1006
- } | undefined;
1007
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1008
- } & {
1009
- getConf(arg: string): any;
1010
- } & {
1011
- readonly initialized: boolean;
1012
- readonly name: string;
1013
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1014
- readonly aliases: string[];
1015
- readonly displayName: string | undefined;
1016
- hasName(name: string): boolean;
1017
- readonly allAliases: string[];
1018
- readonly allRefNames: string[] | undefined;
1019
- readonly lowerCaseRefNames: string[] | undefined;
1020
- readonly allRefNamesWithLowerCase: string[] | undefined;
1021
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1022
- readonly refNameColors: string[];
1023
- } & {
1024
- readonly refNames: string[] | undefined;
1025
- } & {
1026
- getCanonicalRefName(refName: string): string | undefined;
1027
- getRefNameColor(refName: string): string | undefined;
1028
- isValidRefName(refName: string): boolean;
1029
- } & {
1030
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1031
- regions: import("@jbrowse/core/util").Region[];
1032
- refNameAliases: {
1033
- [x: string]: string;
1034
- };
1035
- lowerCaseRefNameAliases: {
1036
- [x: string]: string;
1037
- };
1038
- cytobands: import("@jbrowse/core/util").Feature[];
1039
- }): void;
1040
- setError(e: unknown): void;
1041
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1042
- setRefNameAliases(aliases: {
1043
- [x: string]: string;
1044
- }, lowerCaseAliases: {
1045
- [x: string]: string;
1046
- }): void;
1047
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1048
- setLoadingP(p?: Promise<void>): void;
1049
- load(): Promise<void>;
1050
- loadPre(): Promise<void>;
1051
- } & {
1052
- getAdapterMapEntry(adapterConf: {
1053
- [x: string]: unknown;
1054
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1055
- getRefNameMapForAdapter(adapterConf: {
1056
- [x: string]: unknown;
1057
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1058
- [x: string]: string;
1059
- }>;
1060
- getReverseRefNameMapForAdapter(adapterConf: {
1061
- [x: string]: unknown;
1062
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1063
- [x: string]: string;
1064
- }>;
1065
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1066
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
1067
- }, {
1068
- error: unknown;
1069
- loadingP: Promise<void> | undefined;
1070
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1071
- refNameAliases: {
1072
- [x: string]: string;
1073
- } | undefined;
1074
- lowerCaseRefNameAliases: {
1075
- [x: string]: string;
1076
- } | undefined;
1077
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1078
- } & {
1079
- getConf(arg: string): any;
1080
- } & {
1081
- readonly initialized: boolean;
1082
- readonly name: string;
1083
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1084
- readonly aliases: string[];
1085
- readonly displayName: string | undefined;
1086
- hasName(name: string): boolean;
1087
- readonly allAliases: string[];
1088
- readonly allRefNames: string[] | undefined;
1089
- readonly lowerCaseRefNames: string[] | undefined;
1090
- readonly allRefNamesWithLowerCase: string[] | undefined;
1091
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1092
- readonly refNameColors: string[];
1093
- } & {
1094
- readonly refNames: string[] | undefined;
1095
- } & {
1096
- getCanonicalRefName(refName: string): string | undefined;
1097
- getRefNameColor(refName: string): string | undefined;
1098
- isValidRefName(refName: string): boolean;
1099
- } & {
1100
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1101
- regions: import("@jbrowse/core/util").Region[];
1102
- refNameAliases: {
1103
- [x: string]: string;
1104
- };
1105
- lowerCaseRefNameAliases: {
1106
- [x: string]: string;
1107
- };
1108
- cytobands: import("@jbrowse/core/util").Feature[];
1109
- }): void;
1110
- setError(e: unknown): void;
1111
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1112
- setRefNameAliases(aliases: {
1113
- [x: string]: string;
1114
- }, lowerCaseAliases: {
1115
- [x: string]: string;
1116
- }): void;
1117
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1118
- setLoadingP(p?: Promise<void>): void;
1119
- load(): Promise<void>;
1120
- loadPre(): Promise<void>;
1121
- } & {
1122
- getAdapterMapEntry(adapterConf: {
1123
- [x: string]: unknown;
1124
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1125
- getRefNameMapForAdapter(adapterConf: {
1126
- [x: string]: unknown;
1127
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1128
- [x: string]: string;
1129
- }>;
1130
- getReverseRefNameMapForAdapter(adapterConf: {
1131
- [x: string]: unknown;
1132
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1133
- [x: string]: string;
1134
- }>;
1135
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined>;
1136
- getRefNameMapForAdapter(adapterConf: {
1137
- [x: string]: unknown;
1138
- }, assemblyName: string | undefined, opts: {
1139
- signal?: AbortSignal;
1140
- sessionId: string;
1141
- }): Promise<{
1142
- [x: string]: string;
1143
- } | undefined>;
1144
- getReverseRefNameMapForAdapter(adapterConf: {
1145
- [x: string]: unknown;
1146
- }, assemblyName: string | undefined, opts: {
1147
- signal?: AbortSignal;
1148
- sessionId: string;
1149
- }): Promise<{
1150
- [x: string]: string;
1151
- } | undefined>;
1152
- isValidRefName(refName: string, assemblyName: string): boolean;
1153
- } & {
1154
- afterAttach(): void;
1155
- removeAssembly(asm: import("@jbrowse/core/assemblyManager/assembly").Assembly): void;
1156
- addAssembly(configuration: any): void;
1157
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
1158
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1159
- rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1160
- adminMode: boolean;
1161
- error: unknown;
1162
- textSearchManager: import("@jbrowse/core/util").TextSearchManager;
1163
- pluginManager: PluginManager;
1164
- } & {
1165
- setError(error: unknown): void;
1166
- setSession(sessionSnapshot?: import("mobx-state-tree").SnapshotIn<import("mobx-state-tree").IAnyType>): void;
1167
- setDefaultSession(): void;
1168
- setSessionPath(path: string): void;
1169
- renameCurrentSession(newName: string): void;
1170
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1171
- jbrowse: import("mobx-state-tree").IAnyType;
1172
- session: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IAnyType>;
1173
- sessionPath: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1174
- assemblyManager: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1175
- assemblies: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1176
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
1177
- }, {
1178
- error: unknown;
1179
- loadingP: Promise<void> | undefined;
1180
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1181
- refNameAliases: {
1182
- [x: string]: string;
1183
- } | undefined;
1184
- lowerCaseRefNameAliases: {
1185
- [x: string]: string;
1186
- } | undefined;
1187
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1188
- } & {
1189
- getConf(arg: string): any;
1190
- } & {
1191
- readonly initialized: boolean;
1192
- readonly name: string;
1193
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1194
- readonly aliases: string[];
1195
- readonly displayName: string | undefined;
1196
- hasName(name: string): boolean;
1197
- readonly allAliases: string[];
1198
- readonly allRefNames: string[] | undefined;
1199
- readonly lowerCaseRefNames: string[] | undefined;
1200
- readonly allRefNamesWithLowerCase: string[] | undefined;
1201
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1202
- readonly refNameColors: string[];
1203
- } & {
1204
- readonly refNames: string[] | undefined;
1205
- } & {
1206
- getCanonicalRefName(refName: string): string | undefined;
1207
- getRefNameColor(refName: string): string | undefined;
1208
- isValidRefName(refName: string): boolean;
1209
- } & {
1210
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1211
- regions: import("@jbrowse/core/util").Region[];
1212
- refNameAliases: {
1213
- [x: string]: string;
1214
- };
1215
- lowerCaseRefNameAliases: {
1216
- [x: string]: string;
1217
- };
1218
- cytobands: import("@jbrowse/core/util").Feature[];
1219
- }): void;
1220
- setError(e: unknown): void;
1221
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1222
- setRefNameAliases(aliases: {
1223
- [x: string]: string;
1224
- }, lowerCaseAliases: {
1225
- [x: string]: string;
1226
- }): void;
1227
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1228
- setLoadingP(p?: Promise<void>): void;
1229
- load(): Promise<void>;
1230
- loadPre(): Promise<void>;
1231
- } & {
1232
- getAdapterMapEntry(adapterConf: {
1233
- [x: string]: unknown;
1234
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1235
- getRefNameMapForAdapter(adapterConf: {
1236
- [x: string]: unknown;
1237
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1238
- [x: string]: string;
1239
- }>;
1240
- getReverseRefNameMapForAdapter(adapterConf: {
1241
- [x: string]: unknown;
1242
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1243
- [x: string]: string;
1244
- }>;
1245
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
1246
- }, {
1247
- readonly assemblyNameMap: Record<string, {
1248
- configuration: any;
1249
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1250
- error: unknown;
1251
- loadingP: Promise<void> | undefined;
1252
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1253
- refNameAliases: {
1254
- [x: string]: string;
1255
- } | undefined;
1256
- lowerCaseRefNameAliases: {
1257
- [x: string]: string;
1258
- } | undefined;
1259
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1260
- } & {
1261
- getConf(arg: string): any;
1262
- } & {
1263
- readonly initialized: boolean;
1264
- readonly name: string;
1265
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1266
- readonly aliases: string[];
1267
- readonly displayName: string | undefined;
1268
- hasName(name: string): boolean;
1269
- readonly allAliases: string[];
1270
- readonly allRefNames: string[] | undefined;
1271
- readonly lowerCaseRefNames: string[] | undefined;
1272
- readonly allRefNamesWithLowerCase: string[] | undefined;
1273
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1274
- readonly refNameColors: string[];
1275
- } & {
1276
- readonly refNames: string[] | undefined;
1277
- } & {
1278
- getCanonicalRefName(refName: string): string | undefined;
1279
- getRefNameColor(refName: string): string | undefined;
1280
- isValidRefName(refName: string): boolean;
1281
- } & {
1282
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1283
- regions: import("@jbrowse/core/util").Region[];
1284
- refNameAliases: {
1285
- [x: string]: string;
1286
- };
1287
- lowerCaseRefNameAliases: {
1288
- [x: string]: string;
1289
- };
1290
- cytobands: import("@jbrowse/core/util").Feature[];
1291
- }): void;
1292
- setError(e: unknown): void;
1293
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1294
- setRefNameAliases(aliases: {
1295
- [x: string]: string;
1296
- }, lowerCaseAliases: {
1297
- [x: string]: string;
1298
- }): void;
1299
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1300
- setLoadingP(p?: Promise<void>): void;
1301
- load(): Promise<void>;
1302
- loadPre(): Promise<void>;
1303
- } & {
1304
- getAdapterMapEntry(adapterConf: {
1305
- [x: string]: unknown;
1306
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1307
- getRefNameMapForAdapter(adapterConf: {
1308
- [x: string]: unknown;
1309
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1310
- [x: string]: string;
1311
- }>;
1312
- getReverseRefNameMapForAdapter(adapterConf: {
1313
- [x: string]: unknown;
1314
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1315
- [x: string]: string;
1316
- }>;
1317
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1318
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
1319
- }, {
1320
- error: unknown;
1321
- loadingP: Promise<void> | undefined;
1322
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1323
- refNameAliases: {
1324
- [x: string]: string;
1325
- } | undefined;
1326
- lowerCaseRefNameAliases: {
1327
- [x: string]: string;
1328
- } | undefined;
1329
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1330
- } & {
1331
- getConf(arg: string): any;
1332
- } & {
1333
- readonly initialized: boolean;
1334
- readonly name: string;
1335
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1336
- readonly aliases: string[];
1337
- readonly displayName: string | undefined;
1338
- hasName(name: string): boolean;
1339
- readonly allAliases: string[];
1340
- readonly allRefNames: string[] | undefined;
1341
- readonly lowerCaseRefNames: string[] | undefined;
1342
- readonly allRefNamesWithLowerCase: string[] | undefined;
1343
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1344
- readonly refNameColors: string[];
1345
- } & {
1346
- readonly refNames: string[] | undefined;
1347
- } & {
1348
- getCanonicalRefName(refName: string): string | undefined;
1349
- getRefNameColor(refName: string): string | undefined;
1350
- isValidRefName(refName: string): boolean;
1351
- } & {
1352
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1353
- regions: import("@jbrowse/core/util").Region[];
1354
- refNameAliases: {
1355
- [x: string]: string;
1356
- };
1357
- lowerCaseRefNameAliases: {
1358
- [x: string]: string;
1359
- };
1360
- cytobands: import("@jbrowse/core/util").Feature[];
1361
- }): void;
1362
- setError(e: unknown): void;
1363
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1364
- setRefNameAliases(aliases: {
1365
- [x: string]: string;
1366
- }, lowerCaseAliases: {
1367
- [x: string]: string;
1368
- }): void;
1369
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1370
- setLoadingP(p?: Promise<void>): void;
1371
- load(): Promise<void>;
1372
- loadPre(): Promise<void>;
1373
- } & {
1374
- getAdapterMapEntry(adapterConf: {
1375
- [x: string]: unknown;
1376
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1377
- getRefNameMapForAdapter(adapterConf: {
1378
- [x: string]: unknown;
1379
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1380
- [x: string]: string;
1381
- }>;
1382
- getReverseRefNameMapForAdapter(adapterConf: {
1383
- [x: string]: unknown;
1384
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1385
- [x: string]: string;
1386
- }>;
1387
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>;
1388
- } & {
1389
- get(asmName: string): ({
1390
- configuration: any;
1391
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1392
- error: unknown;
1393
- loadingP: Promise<void> | undefined;
1394
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1395
- refNameAliases: {
1396
- [x: string]: string;
1397
- } | undefined;
1398
- lowerCaseRefNameAliases: {
1399
- [x: string]: string;
1400
- } | undefined;
1401
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1402
- } & {
1403
- getConf(arg: string): any;
1404
- } & {
1405
- readonly initialized: boolean;
1406
- readonly name: string;
1407
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1408
- readonly aliases: string[];
1409
- readonly displayName: string | undefined;
1410
- hasName(name: string): boolean;
1411
- readonly allAliases: string[];
1412
- readonly allRefNames: string[] | undefined;
1413
- readonly lowerCaseRefNames: string[] | undefined;
1414
- readonly allRefNamesWithLowerCase: string[] | undefined;
1415
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1416
- readonly refNameColors: string[];
1417
- } & {
1418
- readonly refNames: string[] | undefined;
1419
- } & {
1420
- getCanonicalRefName(refName: string): string | undefined;
1421
- getRefNameColor(refName: string): string | undefined;
1422
- isValidRefName(refName: string): boolean;
1423
- } & {
1424
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1425
- regions: import("@jbrowse/core/util").Region[];
1426
- refNameAliases: {
1427
- [x: string]: string;
1428
- };
1429
- lowerCaseRefNameAliases: {
1430
- [x: string]: string;
1431
- };
1432
- cytobands: import("@jbrowse/core/util").Feature[];
1433
- }): void;
1434
- setError(e: unknown): void;
1435
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1436
- setRefNameAliases(aliases: {
1437
- [x: string]: string;
1438
- }, lowerCaseAliases: {
1439
- [x: string]: string;
1440
- }): void;
1441
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1442
- setLoadingP(p?: Promise<void>): void;
1443
- load(): Promise<void>;
1444
- loadPre(): Promise<void>;
1445
- } & {
1446
- getAdapterMapEntry(adapterConf: {
1447
- [x: string]: unknown;
1448
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1449
- getRefNameMapForAdapter(adapterConf: {
1450
- [x: string]: unknown;
1451
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1452
- [x: string]: string;
1453
- }>;
1454
- getReverseRefNameMapForAdapter(adapterConf: {
1455
- [x: string]: unknown;
1456
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1457
- [x: string]: string;
1458
- }>;
1459
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1460
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
1461
- }, {
1462
- error: unknown;
1463
- loadingP: Promise<void> | undefined;
1464
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1465
- refNameAliases: {
1466
- [x: string]: string;
1467
- } | undefined;
1468
- lowerCaseRefNameAliases: {
1469
- [x: string]: string;
1470
- } | undefined;
1471
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1472
- } & {
1473
- getConf(arg: string): any;
1474
- } & {
1475
- readonly initialized: boolean;
1476
- readonly name: string;
1477
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1478
- readonly aliases: string[];
1479
- readonly displayName: string | undefined;
1480
- hasName(name: string): boolean;
1481
- readonly allAliases: string[];
1482
- readonly allRefNames: string[] | undefined;
1483
- readonly lowerCaseRefNames: string[] | undefined;
1484
- readonly allRefNamesWithLowerCase: string[] | undefined;
1485
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1486
- readonly refNameColors: string[];
1487
- } & {
1488
- readonly refNames: string[] | undefined;
1489
- } & {
1490
- getCanonicalRefName(refName: string): string | undefined;
1491
- getRefNameColor(refName: string): string | undefined;
1492
- isValidRefName(refName: string): boolean;
1493
- } & {
1494
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1495
- regions: import("@jbrowse/core/util").Region[];
1496
- refNameAliases: {
1497
- [x: string]: string;
1498
- };
1499
- lowerCaseRefNameAliases: {
1500
- [x: string]: string;
1501
- };
1502
- cytobands: import("@jbrowse/core/util").Feature[];
1503
- }): void;
1504
- setError(e: unknown): void;
1505
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1506
- setRefNameAliases(aliases: {
1507
- [x: string]: string;
1508
- }, lowerCaseAliases: {
1509
- [x: string]: string;
1510
- }): void;
1511
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1512
- setLoadingP(p?: Promise<void>): void;
1513
- load(): Promise<void>;
1514
- loadPre(): Promise<void>;
1515
- } & {
1516
- getAdapterMapEntry(adapterConf: {
1517
- [x: string]: unknown;
1518
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1519
- getRefNameMapForAdapter(adapterConf: {
1520
- [x: string]: unknown;
1521
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1522
- [x: string]: string;
1523
- }>;
1524
- getReverseRefNameMapForAdapter(adapterConf: {
1525
- [x: string]: unknown;
1526
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1527
- [x: string]: string;
1528
- }>;
1529
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
1530
- readonly assemblyNamesList: any[];
1531
- readonly assemblyList: import("@jbrowse/core/configuration").AnyConfigurationModel[];
1532
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1533
- } & {
1534
- waitForAssembly(assemblyName: string): Promise<({
1535
- configuration: any;
1536
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1537
- error: unknown;
1538
- loadingP: Promise<void> | undefined;
1539
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1540
- refNameAliases: {
1541
- [x: string]: string;
1542
- } | undefined;
1543
- lowerCaseRefNameAliases: {
1544
- [x: string]: string;
1545
- } | undefined;
1546
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1547
- } & {
1548
- getConf(arg: string): any;
1549
- } & {
1550
- readonly initialized: boolean;
1551
- readonly name: string;
1552
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1553
- readonly aliases: string[];
1554
- readonly displayName: string | undefined;
1555
- hasName(name: string): boolean;
1556
- readonly allAliases: string[];
1557
- readonly allRefNames: string[] | undefined;
1558
- readonly lowerCaseRefNames: string[] | undefined;
1559
- readonly allRefNamesWithLowerCase: string[] | undefined;
1560
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1561
- readonly refNameColors: string[];
1562
- } & {
1563
- readonly refNames: string[] | undefined;
1564
- } & {
1565
- getCanonicalRefName(refName: string): string | undefined;
1566
- getRefNameColor(refName: string): string | undefined;
1567
- isValidRefName(refName: string): boolean;
1568
- } & {
1569
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1570
- regions: import("@jbrowse/core/util").Region[];
1571
- refNameAliases: {
1572
- [x: string]: string;
1573
- };
1574
- lowerCaseRefNameAliases: {
1575
- [x: string]: string;
1576
- };
1577
- cytobands: import("@jbrowse/core/util").Feature[];
1578
- }): void;
1579
- setError(e: unknown): void;
1580
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1581
- setRefNameAliases(aliases: {
1582
- [x: string]: string;
1583
- }, lowerCaseAliases: {
1584
- [x: string]: string;
1585
- }): void;
1586
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1587
- setLoadingP(p?: Promise<void>): void;
1588
- load(): Promise<void>;
1589
- loadPre(): Promise<void>;
1590
- } & {
1591
- getAdapterMapEntry(adapterConf: {
1592
- [x: string]: unknown;
1593
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1594
- getRefNameMapForAdapter(adapterConf: {
1595
- [x: string]: unknown;
1596
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1597
- [x: string]: string;
1598
- }>;
1599
- getReverseRefNameMapForAdapter(adapterConf: {
1600
- [x: string]: unknown;
1601
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1602
- [x: string]: string;
1603
- }>;
1604
- } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1605
- configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
1606
- }, {
1607
- error: unknown;
1608
- loadingP: Promise<void> | undefined;
1609
- volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1610
- refNameAliases: {
1611
- [x: string]: string;
1612
- } | undefined;
1613
- lowerCaseRefNameAliases: {
1614
- [x: string]: string;
1615
- } | undefined;
1616
- cytobands: import("@jbrowse/core/util").Feature[] | undefined;
1617
- } & {
1618
- getConf(arg: string): any;
1619
- } & {
1620
- readonly initialized: boolean;
1621
- readonly name: string;
1622
- readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
1623
- readonly aliases: string[];
1624
- readonly displayName: string | undefined;
1625
- hasName(name: string): boolean;
1626
- readonly allAliases: string[];
1627
- readonly allRefNames: string[] | undefined;
1628
- readonly lowerCaseRefNames: string[] | undefined;
1629
- readonly allRefNamesWithLowerCase: string[] | undefined;
1630
- readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1631
- readonly refNameColors: string[];
1632
- } & {
1633
- readonly refNames: string[] | undefined;
1634
- } & {
1635
- getCanonicalRefName(refName: string): string | undefined;
1636
- getRefNameColor(refName: string): string | undefined;
1637
- isValidRefName(refName: string): boolean;
1638
- } & {
1639
- setLoaded({ regions, refNameAliases, lowerCaseRefNameAliases, cytobands, }: {
1640
- regions: import("@jbrowse/core/util").Region[];
1641
- refNameAliases: {
1642
- [x: string]: string;
1643
- };
1644
- lowerCaseRefNameAliases: {
1645
- [x: string]: string;
1646
- };
1647
- cytobands: import("@jbrowse/core/util").Feature[];
1648
- }): void;
1649
- setError(e: unknown): void;
1650
- setRegions(regions: import("@jbrowse/core/util").Region[]): void;
1651
- setRefNameAliases(aliases: {
1652
- [x: string]: string;
1653
- }, lowerCaseAliases: {
1654
- [x: string]: string;
1655
- }): void;
1656
- setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
1657
- setLoadingP(p?: Promise<void>): void;
1658
- load(): Promise<void>;
1659
- loadPre(): Promise<void>;
1660
- } & {
1661
- getAdapterMapEntry(adapterConf: {
1662
- [x: string]: unknown;
1663
- }, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
1664
- getRefNameMapForAdapter(adapterConf: {
1665
- [x: string]: unknown;
1666
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1667
- [x: string]: string;
1668
- }>;
1669
- getReverseRefNameMapForAdapter(adapterConf: {
1670
- [x: string]: unknown;
1671
- }, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
1672
- [x: string]: string;
1673
- }>;
1674
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined>;
1675
- getRefNameMapForAdapter(adapterConf: {
1676
- [x: string]: unknown;
1677
- }, assemblyName: string | undefined, opts: {
1678
- signal?: AbortSignal;
1679
- sessionId: string;
1680
- }): Promise<{
1681
- [x: string]: string;
1682
- } | undefined>;
1683
- getReverseRefNameMapForAdapter(adapterConf: {
1684
- [x: string]: unknown;
1685
- }, assemblyName: string | undefined, opts: {
1686
- signal?: AbortSignal;
1687
- sessionId: string;
1688
- }): Promise<{
1689
- [x: string]: string;
1690
- } | undefined>;
1691
- isValidRefName(refName: string, assemblyName: string): boolean;
1692
- } & {
1693
- afterAttach(): void;
1694
- removeAssembly(asm: import("@jbrowse/core/assemblyManager/assembly").Assembly): void;
1695
- addAssembly(configuration: any): void;
1696
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1697
- }, {
1698
- rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
1699
- adminMode: boolean;
1700
- error: unknown;
1701
- textSearchManager: import("@jbrowse/core/util").TextSearchManager;
1702
- pluginManager: PluginManager;
1703
- } & {
1704
- setError(error: unknown): void;
1705
- setSession(sessionSnapshot?: import("mobx-state-tree").SnapshotIn<import("mobx-state-tree").IAnyType>): void;
1706
- setDefaultSession(): void;
1707
- setSessionPath(path: string): void;
1708
- renameCurrentSession(newName: string): void;
1709
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
22
+ readonly root: import("mobx-state-tree").TypeOrStateTreeNodeToStateTreeNode<ROOT_MODEL_TYPE>;
1710
23
  } & {
1711
24
  readonly jbrowse: any;
1712
25
  readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
@@ -1718,48 +31,13 @@ export declare function MultipleViewsSessionMixin(pluginManager: PluginManager):
1718
31
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1719
32
  setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1720
33
  [x: string]: any;
1721
- } & import("mobx-state-tree/dist/internal" /**
1722
- * #action
1723
- */).NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
34
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1724
35
  } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1725
36
  } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>;
1726
37
  readonly adminMode: boolean;
1727
38
  readonly textSearchManager: import("@jbrowse/core/util").TextSearchManager;
1728
39
  } & {
1729
- readonly assemblies: ({
1730
- [x: string]: any;
1731
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1732
- setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1733
- [x: string]: any;
1734
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1735
- setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1736
- [x: string]: any;
1737
- } & import("mobx-state-tree/dist/internal").NonEmptyObject & any & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1738
- } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration").AnyConfigurationSchemaType>);
1739
- } & import("mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1740
- aliases: {
1741
- type: string;
1742
- defaultValue: never[];
1743
- description: string;
1744
- };
1745
- sequence: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
1746
- refNameColors: {
1747
- type: string;
1748
- defaultValue: never[];
1749
- description: string;
1750
- };
1751
- refNameAliases: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1752
- adapter: import("mobx-state-tree").IAnyModelType;
1753
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1754
- cytobands: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1755
- adapter: import("mobx-state-tree").IAnyModelType;
1756
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
1757
- displayName: {
1758
- type: string;
1759
- defaultValue: string;
1760
- description: string;
1761
- };
1762
- }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "name">>>)[];
40
+ readonly assemblies: Instance<import("@jbrowse/core/assemblyManager").BaseAssemblyConfigSchema>[];
1763
41
  } & {
1764
42
  setSelection(thing: unknown): void;
1765
43
  clearSelection(): void;
@@ -1780,48 +58,18 @@ export declare function MultipleViewsSessionMixin(pluginManager: PluginManager):
1780
58
  editConfiguration(configuration: import("@jbrowse/core/configuration").AnyConfigurationModel): void;
1781
59
  afterAttach(): void;
1782
60
  } & {
1783
- /**
1784
- * #action
1785
- */
1786
61
  moveViewDown(id: string): void;
1787
- /**
1788
- * #action
1789
- */
1790
62
  moveViewUp(id: string): void;
1791
- /**
1792
- * #action
1793
- */
1794
63
  moveViewToTop(id: string): void;
1795
- /**
1796
- * #action
1797
- */
1798
64
  moveViewToBottom(id: string): void;
1799
- /**
1800
- * #action
1801
- */
1802
65
  addView(typeName: string, initialState?: {}): any;
1803
- /**
1804
- * #action
1805
- */
1806
66
  removeView(view: IBaseViewModel): void;
1807
- /**
1808
- * #action
1809
- */
1810
67
  addLinearGenomeViewOfAssembly(assemblyName: string, initialState?: {}): any;
1811
- /**
1812
- * #action
1813
- */
1814
68
  addViewOfAssembly(viewType: string, assemblyName: string, initialState?: Record<string, unknown>): any;
1815
- /**
1816
- * #action
1817
- */
1818
69
  addViewFromAnotherView(viewType: string, otherView: IBaseViewModelWithDisplayedRegions, initialState?: {
1819
70
  displayedRegions?: Region[];
1820
71
  }): any;
1821
72
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
1822
- /** Session mixin MST type for a session that manages multiple views */
1823
73
  export type SessionWithMultipleViewsType = ReturnType<typeof MultipleViewsSessionMixin>;
1824
- /** Instance of a session with multiple views */
1825
74
  export type SessionWithMultipleViews = Instance<SessionWithMultipleViewsType>;
1826
- /** Type guard for SessionWithMultipleViews */
1827
75
  export declare function isSessionWithMultipleViews(session: IAnyStateTreeNode): session is SessionWithMultipleViews;