react-msaview 6.2.3 → 6.3.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 (80) hide show
  1. package/bundle/index.js +104 -104
  2. package/bundle/index.js.map +4 -4
  3. package/dist/components/MSAViewer.d.ts +10 -1
  4. package/dist/components/MSAViewer.js +3 -1
  5. package/dist/components/MSAViewer.js.map +1 -1
  6. package/dist/components/minimap/Minimap.js +1 -1
  7. package/dist/components/minimap/Minimap.js.map +1 -1
  8. package/dist/components/minimap/MinimapSVG.js +2 -2
  9. package/dist/components/minimap/MinimapSVG.js.map +1 -1
  10. package/dist/components/msa/MSAMouseoverCanvas.js +4 -2
  11. package/dist/components/msa/MSAMouseoverCanvas.js.map +1 -1
  12. package/dist/components/msa/msaRaster.d.ts +5 -4
  13. package/dist/components/msa/msaRaster.js +10 -6
  14. package/dist/components/msa/msaRaster.js.map +1 -1
  15. package/dist/components/msa/renderHighlights.d.ts +31 -0
  16. package/dist/components/msa/renderHighlights.js +49 -0
  17. package/dist/components/msa/renderHighlights.js.map +1 -0
  18. package/dist/components/msa/renderMSAMouseover.d.ts +3 -1
  19. package/dist/components/msa/renderMSAMouseover.js +11 -1
  20. package/dist/components/msa/renderMSAMouseover.js.map +1 -1
  21. package/dist/components/tracks/drawTracks.js +4 -0
  22. package/dist/components/tracks/drawTracks.js.map +1 -1
  23. package/dist/components/tree/renderTreeCanvas.js +31 -0
  24. package/dist/components/tree/renderTreeCanvas.js.map +1 -1
  25. package/dist/exportFileName.d.ts +6 -0
  26. package/dist/exportFileName.js +15 -0
  27. package/dist/exportFileName.js.map +1 -0
  28. package/dist/headlessRenderEnv.d.ts +4 -1
  29. package/dist/headlessRenderEnv.js +6 -3
  30. package/dist/headlessRenderEnv.js.map +1 -1
  31. package/dist/index.d.ts +2 -1
  32. package/dist/index.js.map +1 -1
  33. package/dist/model.d.ts +172 -9
  34. package/dist/model.js +134 -3
  35. package/dist/model.js.map +1 -1
  36. package/dist/renderToSvg.js +30 -6
  37. package/dist/renderToSvg.js.map +1 -1
  38. package/dist/svgTestUtil.d.ts +1662 -0
  39. package/dist/svgTestUtil.js +28 -0
  40. package/dist/svgTestUtil.js.map +1 -0
  41. package/dist/types.d.ts +33 -0
  42. package/dist/umd.d.ts +1 -0
  43. package/dist/umd.js +3 -0
  44. package/dist/umd.js.map +1 -1
  45. package/dist/util.d.ts +1 -0
  46. package/dist/util.js +7 -0
  47. package/dist/util.js.map +1 -1
  48. package/dist/version.d.ts +1 -1
  49. package/dist/version.js +1 -1
  50. package/package.json +3 -3
  51. package/src/columnTracks.test.ts +97 -0
  52. package/src/components/MSAViewer.tsx +13 -0
  53. package/src/components/minimap/Minimap.tsx +1 -1
  54. package/src/components/minimap/MinimapSVG.tsx +2 -2
  55. package/src/components/msa/MSAMouseoverCanvas.tsx +4 -2
  56. package/src/components/msa/msaRaster.ts +10 -6
  57. package/src/components/msa/renderHighlights.ts +86 -0
  58. package/src/components/msa/renderMSAMouseover.ts +14 -0
  59. package/src/components/tracks/drawTracks.ts +4 -0
  60. package/src/components/tree/renderTreeCanvas.ts +56 -0
  61. package/src/exportFileName.test.ts +40 -0
  62. package/src/exportFileName.ts +20 -0
  63. package/src/headlessRenderEnv.ts +20 -11
  64. package/src/highlights.test.ts +70 -0
  65. package/src/impgRender.test.tsx +2 -4
  66. package/src/index.ts +4 -0
  67. package/src/model.ts +162 -10
  68. package/src/renderColumnTracksSvg.test.tsx +108 -0
  69. package/src/renderDomainsSvg.test.tsx +25 -10
  70. package/src/renderHighlightsSvg.test.tsx +85 -0
  71. package/src/renderMinimapSvg.test.tsx +6 -13
  72. package/src/renderRasterSvg.test.tsx +21 -93
  73. package/src/renderSequenceLogoSvg.test.tsx +4 -17
  74. package/src/renderToSvg.test.tsx +7 -21
  75. package/src/renderToSvg.tsx +32 -6
  76. package/src/svgTestUtil.ts +40 -0
  77. package/src/types.ts +39 -0
  78. package/src/umd.ts +3 -0
  79. package/src/util.ts +8 -0
  80. package/src/version.ts +1 -1
@@ -0,0 +1,1662 @@
1
+ import MSAModelF from './model.ts';
2
+ type Snapshot = NonNullable<Parameters<ReturnType<typeof MSAModelF>['create']>[0]>;
3
+ export declare function installSvgTestEnv(contextExtras?: Partial<CanvasRenderingContext2D>): void;
4
+ export declare function createTestModel(snapshot: Omit<Snapshot, 'type'>, width?: number): import("@jbrowse/mobx-state-tree").ModelInstanceTypeProps<Omit<Omit<Omit<{}, "autoTreeAreaWidth" | "drawLabels" | "drawNodeBubbles" | "drawTree" | "labelsAlignRight" | "showBranchLen" | "treeAreaWidth" | "treeWidth"> & {
5
+ drawLabels: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6
+ labelsAlignRight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
7
+ treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
8
+ treeWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
9
+ showBranchLen: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
10
+ drawTree: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
11
+ drawNodeBubbles: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
12
+ autoTreeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
13
+ }, "bgColor" | "colorSchemeName" | "msaFormat" | "showColumnStats"> & {
14
+ bgColor: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
15
+ colorSchemeName: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<string>, [undefined]>;
16
+ showColumnStats: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
17
+ msaFormat: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<import("msa-parsers").MSAFormat>>;
18
+ }, "allowedGappyness" | "colWidth" | "collapsed" | "columnTracks" | "currentAlignment" | "data" | "drawMsaLetters" | "featureFilters" | "gffFilehandle" | "height" | "hideGaps" | "highlightColumns" | "highlights" | "id" | "msaFilehandle" | "relativeTo" | "rowHeight" | "scrollX" | "scrollY" | "scrollZoom" | "showDomainLegend" | "showDomains" | "showOnly" | "subFeatureRows" | "treeFilehandle" | "treeMetadataFilehandle" | "turnedOffTracks" | "type"> & {
19
+ id: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<string>, [undefined]>;
20
+ showDomains: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
21
+ showDomainLegend: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
22
+ hideGaps: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
23
+ allowedGappyness: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
24
+ subFeatureRows: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
25
+ type: import("@jbrowse/mobx-state-tree").ISimpleType<"MsaView">;
26
+ drawMsaLetters: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
27
+ scrollZoom: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
28
+ height: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
29
+ rowHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
30
+ scrollY: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
31
+ scrollX: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
32
+ colWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
33
+ treeFilehandle: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISnapshotProcessor<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<{
34
+ locationType: "LocalPathLocation";
35
+ localPath: string;
36
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
37
+ locationType: "BlobLocation";
38
+ name: string;
39
+ blobId: string;
40
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
41
+ locationType: "FileHandleLocation";
42
+ name: string;
43
+ handleId: string;
44
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
45
+ locationType: "UriLocation";
46
+ uri: string;
47
+ baseUri: string | undefined;
48
+ internetAccountId: string | undefined;
49
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
50
+ internetAccountType: string;
51
+ authInfo: any;
52
+ }> | undefined;
53
+ }>, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
54
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
55
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
56
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
57
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
58
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
59
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
60
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
61
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
62
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
63
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
64
+ }> | {
65
+ locationType: "UriLocation";
66
+ uri: string;
67
+ internetAccountId: string | undefined;
68
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
69
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
70
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
71
+ }> | undefined;
72
+ }, ({
73
+ blobId: string;
74
+ locationType: "BlobLocation";
75
+ name: string;
76
+ } & Partial<{
77
+ locationType: "BlobLocation";
78
+ name: string;
79
+ blobId: string;
80
+ }>) | ({
81
+ handleId: string;
82
+ locationType: "FileHandleLocation";
83
+ name: string;
84
+ } & Partial<{
85
+ locationType: "FileHandleLocation";
86
+ name: string;
87
+ handleId: string;
88
+ }>) | ({
89
+ localPath: string;
90
+ locationType: "LocalPathLocation";
91
+ } & Partial<{
92
+ locationType: "LocalPathLocation";
93
+ localPath: string;
94
+ }>) | ({
95
+ locationType: "UriLocation";
96
+ uri: string;
97
+ } & Partial<{
98
+ locationType: "UriLocation";
99
+ uri: string;
100
+ baseUri: string | undefined;
101
+ internetAccountId: string | undefined;
102
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
103
+ internetAccountType: string;
104
+ authInfo: any;
105
+ }> | undefined;
106
+ }>)>, import("@jbrowse/core/util/types/mst").LegacyFileLocation | import("@jbrowse/mobx-state-tree").ModelCreationType<{
107
+ locationType: "LocalPathLocation";
108
+ localPath: string;
109
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
110
+ locationType: "BlobLocation";
111
+ name: string;
112
+ blobId: string;
113
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
114
+ locationType: "FileHandleLocation";
115
+ name: string;
116
+ handleId: string;
117
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
118
+ locationType: "UriLocation";
119
+ uri: string;
120
+ baseUri: string | undefined;
121
+ internetAccountId: string | undefined;
122
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
123
+ internetAccountType: string;
124
+ authInfo: any;
125
+ }> | undefined;
126
+ }>, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
127
+ msaFilehandle: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISnapshotProcessor<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<{
128
+ locationType: "LocalPathLocation";
129
+ localPath: string;
130
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
131
+ locationType: "BlobLocation";
132
+ name: string;
133
+ blobId: string;
134
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
135
+ locationType: "FileHandleLocation";
136
+ name: string;
137
+ handleId: string;
138
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
139
+ locationType: "UriLocation";
140
+ uri: string;
141
+ baseUri: string | undefined;
142
+ internetAccountId: string | undefined;
143
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
144
+ internetAccountType: string;
145
+ authInfo: any;
146
+ }> | undefined;
147
+ }>, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
148
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
149
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
150
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
151
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
152
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
153
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
154
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
155
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
156
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
157
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
158
+ }> | {
159
+ locationType: "UriLocation";
160
+ uri: string;
161
+ internetAccountId: string | undefined;
162
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
163
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
164
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
165
+ }> | undefined;
166
+ }, ({
167
+ blobId: string;
168
+ locationType: "BlobLocation";
169
+ name: string;
170
+ } & Partial<{
171
+ locationType: "BlobLocation";
172
+ name: string;
173
+ blobId: string;
174
+ }>) | ({
175
+ handleId: string;
176
+ locationType: "FileHandleLocation";
177
+ name: string;
178
+ } & Partial<{
179
+ locationType: "FileHandleLocation";
180
+ name: string;
181
+ handleId: string;
182
+ }>) | ({
183
+ localPath: string;
184
+ locationType: "LocalPathLocation";
185
+ } & Partial<{
186
+ locationType: "LocalPathLocation";
187
+ localPath: string;
188
+ }>) | ({
189
+ locationType: "UriLocation";
190
+ uri: string;
191
+ } & Partial<{
192
+ locationType: "UriLocation";
193
+ uri: string;
194
+ baseUri: string | undefined;
195
+ internetAccountId: string | undefined;
196
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
197
+ internetAccountType: string;
198
+ authInfo: any;
199
+ }> | undefined;
200
+ }>)>, import("@jbrowse/core/util/types/mst").LegacyFileLocation | import("@jbrowse/mobx-state-tree").ModelCreationType<{
201
+ locationType: "LocalPathLocation";
202
+ localPath: string;
203
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
204
+ locationType: "BlobLocation";
205
+ name: string;
206
+ blobId: string;
207
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
208
+ locationType: "FileHandleLocation";
209
+ name: string;
210
+ handleId: string;
211
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
212
+ locationType: "UriLocation";
213
+ uri: string;
214
+ baseUri: string | undefined;
215
+ internetAccountId: string | undefined;
216
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
217
+ internetAccountType: string;
218
+ authInfo: any;
219
+ }> | undefined;
220
+ }>, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
221
+ treeMetadataFilehandle: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISnapshotProcessor<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<{
222
+ locationType: "LocalPathLocation";
223
+ localPath: string;
224
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
225
+ locationType: "BlobLocation";
226
+ name: string;
227
+ blobId: string;
228
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
229
+ locationType: "FileHandleLocation";
230
+ name: string;
231
+ handleId: string;
232
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
233
+ locationType: "UriLocation";
234
+ uri: string;
235
+ baseUri: string | undefined;
236
+ internetAccountId: string | undefined;
237
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
238
+ internetAccountType: string;
239
+ authInfo: any;
240
+ }> | undefined;
241
+ }>, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
242
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
243
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
244
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
245
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
246
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
247
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
248
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
249
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
250
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
251
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
252
+ }> | {
253
+ locationType: "UriLocation";
254
+ uri: string;
255
+ internetAccountId: string | undefined;
256
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
257
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
258
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
259
+ }> | undefined;
260
+ }, ({
261
+ blobId: string;
262
+ locationType: "BlobLocation";
263
+ name: string;
264
+ } & Partial<{
265
+ locationType: "BlobLocation";
266
+ name: string;
267
+ blobId: string;
268
+ }>) | ({
269
+ handleId: string;
270
+ locationType: "FileHandleLocation";
271
+ name: string;
272
+ } & Partial<{
273
+ locationType: "FileHandleLocation";
274
+ name: string;
275
+ handleId: string;
276
+ }>) | ({
277
+ localPath: string;
278
+ locationType: "LocalPathLocation";
279
+ } & Partial<{
280
+ locationType: "LocalPathLocation";
281
+ localPath: string;
282
+ }>) | ({
283
+ locationType: "UriLocation";
284
+ uri: string;
285
+ } & Partial<{
286
+ locationType: "UriLocation";
287
+ uri: string;
288
+ baseUri: string | undefined;
289
+ internetAccountId: string | undefined;
290
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
291
+ internetAccountType: string;
292
+ authInfo: any;
293
+ }> | undefined;
294
+ }>)>, import("@jbrowse/core/util/types/mst").LegacyFileLocation | import("@jbrowse/mobx-state-tree").ModelCreationType<{
295
+ locationType: "LocalPathLocation";
296
+ localPath: string;
297
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
298
+ locationType: "BlobLocation";
299
+ name: string;
300
+ blobId: string;
301
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
302
+ locationType: "FileHandleLocation";
303
+ name: string;
304
+ handleId: string;
305
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
306
+ locationType: "UriLocation";
307
+ uri: string;
308
+ baseUri: string | undefined;
309
+ internetAccountId: string | undefined;
310
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
311
+ internetAccountType: string;
312
+ authInfo: any;
313
+ }> | undefined;
314
+ }>, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
315
+ gffFilehandle: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISnapshotProcessor<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<{
316
+ locationType: "LocalPathLocation";
317
+ localPath: string;
318
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
319
+ locationType: "BlobLocation";
320
+ name: string;
321
+ blobId: string;
322
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
323
+ locationType: "FileHandleLocation";
324
+ name: string;
325
+ handleId: string;
326
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
327
+ locationType: "UriLocation";
328
+ uri: string;
329
+ baseUri: string | undefined;
330
+ internetAccountId: string | undefined;
331
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
332
+ internetAccountType: string;
333
+ authInfo: any;
334
+ }> | undefined;
335
+ }>, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
336
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
337
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
338
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
339
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
340
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
341
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
342
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
343
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
344
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
345
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
346
+ }> | {
347
+ locationType: "UriLocation";
348
+ uri: string;
349
+ internetAccountId: string | undefined;
350
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
351
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
352
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
353
+ }> | undefined;
354
+ }, ({
355
+ blobId: string;
356
+ locationType: "BlobLocation";
357
+ name: string;
358
+ } & Partial<{
359
+ locationType: "BlobLocation";
360
+ name: string;
361
+ blobId: string;
362
+ }>) | ({
363
+ handleId: string;
364
+ locationType: "FileHandleLocation";
365
+ name: string;
366
+ } & Partial<{
367
+ locationType: "FileHandleLocation";
368
+ name: string;
369
+ handleId: string;
370
+ }>) | ({
371
+ localPath: string;
372
+ locationType: "LocalPathLocation";
373
+ } & Partial<{
374
+ locationType: "LocalPathLocation";
375
+ localPath: string;
376
+ }>) | ({
377
+ locationType: "UriLocation";
378
+ uri: string;
379
+ } & Partial<{
380
+ locationType: "UriLocation";
381
+ uri: string;
382
+ baseUri: string | undefined;
383
+ internetAccountId: string | undefined;
384
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
385
+ internetAccountType: string;
386
+ authInfo: any;
387
+ }> | undefined;
388
+ }>)>, import("@jbrowse/core/util/types/mst").LegacyFileLocation | import("@jbrowse/mobx-state-tree").ModelCreationType<{
389
+ locationType: "LocalPathLocation";
390
+ localPath: string;
391
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
392
+ locationType: "BlobLocation";
393
+ name: string;
394
+ blobId: string;
395
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
396
+ locationType: "FileHandleLocation";
397
+ name: string;
398
+ handleId: string;
399
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
400
+ locationType: "UriLocation";
401
+ uri: string;
402
+ baseUri: string | undefined;
403
+ internetAccountId: string | undefined;
404
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
405
+ internetAccountType: string;
406
+ authInfo: any;
407
+ }> | undefined;
408
+ }>, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
409
+ currentAlignment: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
410
+ collapsed: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>, [undefined]>;
411
+ showOnly: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
412
+ turnedOffTracks: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>, [undefined]>;
413
+ columnTracks: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IType<import("./types.ts").ColumnTrackSpec, import("./types.ts").ColumnTrackSpec, import("./types.ts").ColumnTrackSpec>>, [undefined]>;
414
+ data: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IModelType<{
415
+ tree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
416
+ msa: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
417
+ treeMetadata: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
418
+ gff: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
419
+ }, {
420
+ setTree(tree?: string): void;
421
+ setMSA(msa?: string): void;
422
+ setTreeMetadata(treeMetadata?: string): void;
423
+ setGFF(gff?: string): void;
424
+ }, import("@jbrowse/mobx-state-tree")._NotCustomized, {
425
+ [k: string]: string | undefined;
426
+ }>, [undefined]>;
427
+ featureFilters: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>, [undefined]>;
428
+ relativeTo: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
429
+ highlightColumns: import("@jbrowse/mobx-state-tree").IType<number[] | undefined, number[] | undefined, number[] | undefined>;
430
+ highlights: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IType<import("./types.ts").Highlight, import("./types.ts").Highlight, import("./types.ts").Highlight>>, [undefined]>;
431
+ }> & {
432
+ queueOfDialogs: [import("@jbrowse/core/util").DialogComponentType, any][];
433
+ } & {
434
+ readonly DialogComponent: import("@jbrowse/core/util").DialogComponentType | undefined;
435
+ readonly DialogProps: any;
436
+ } & {
437
+ removeActiveDialog(): void;
438
+ queueDialog(cb: (doneCallback: () => void) => [import("@jbrowse/core/util").DialogComponentType, unknown]): void;
439
+ } & {
440
+ setTreeAreaWidth(n: number): void;
441
+ setTreeWidth(n: number): void;
442
+ setLabelsAlignRight(arg: boolean): void;
443
+ setDrawTree(arg: boolean): void;
444
+ setAutoTreeAreaWidth(arg: boolean): void;
445
+ setShowBranchLen(arg: boolean): void;
446
+ setDrawNodeBubbles(arg: boolean): void;
447
+ setDrawLabels(arg: boolean): void;
448
+ } & {
449
+ setColorSchemeName(name: string): void;
450
+ setBgColor(arg: boolean): void;
451
+ setShowColumnStats(arg: boolean): void;
452
+ setMSAFormat(arg?: import("msa-parsers").MSAFormat): void;
453
+ } & {
454
+ headerHeight: number;
455
+ status: {
456
+ msg: string;
457
+ url?: string;
458
+ onCancel?: () => void;
459
+ } | undefined;
460
+ highResScaleFactor: number;
461
+ loadingMSA: boolean;
462
+ loadingTree: boolean;
463
+ volatileWidth: number | undefined;
464
+ resizeHandleWidth: number;
465
+ blockSize: number;
466
+ mouseRow: number | undefined;
467
+ mouseCol: number | undefined;
468
+ mouseClickRow: number | undefined;
469
+ mouseClickCol: number | undefined;
470
+ hoveredTreeNode: {
471
+ nodeId: string;
472
+ descendantNames: string[];
473
+ } | undefined;
474
+ highlightedColumns: number[] | undefined;
475
+ minimapHeight: number;
476
+ conservationTrackHeight: number;
477
+ sequenceLogoTrackHeight: number;
478
+ marginLeft: number;
479
+ error: unknown;
480
+ annotations: import("msa-parsers").Annotation[];
481
+ } & {
482
+ drawRelativeTo(id: string | undefined): void;
483
+ setHideGaps(arg: boolean): void;
484
+ setAllowedGappyness(arg: number): void;
485
+ setLoadingMSA(arg: boolean): void;
486
+ setLoadingTree(arg: boolean): void;
487
+ setWidth(arg: number): void;
488
+ setHighResScaleFactor(arg: number): void;
489
+ setHeight(height: number): void;
490
+ setError(error?: unknown): void;
491
+ setMousePos(col?: number, row?: number): void;
492
+ setHighlightedColumns(columns?: number[]): void;
493
+ setHighlights(highlights: import("./types.ts").Highlight[]): void;
494
+ setShowDomains(arg: boolean): void;
495
+ setShowDomainLegend(arg: boolean): void;
496
+ setSubFeatureRows(arg: boolean): void;
497
+ setMouseClickPos(col?: number, row?: number): void;
498
+ setRowHeight(n: number): void;
499
+ setColWidth(n: number): void;
500
+ setCurrentAlignment(n: number): void;
501
+ toggleCollapsed(node: string): void;
502
+ setShowOnly(node?: string): void;
503
+ setData(data: {
504
+ msa?: string;
505
+ tree?: string;
506
+ treeMetadata?: string;
507
+ gff?: string;
508
+ }): void;
509
+ setMSAFilehandle(msaFilehandle?: import("@jbrowse/core/util").FileLocation): void;
510
+ setTreeFilehandle(treeFilehandle?: import("@jbrowse/core/util").FileLocation): void;
511
+ setTreeMetadataFilehandle(treeMetadataFilehandle?: import("@jbrowse/core/util").FileLocation): void;
512
+ setGFFFilehandle(gffFilehandle?: import("@jbrowse/core/util").FileLocation): void;
513
+ setMSA(result: string): void;
514
+ setTree(result: string): void;
515
+ setTreeMetadata(result: string): void;
516
+ } & {
517
+ readonly hideGapsEffective: boolean;
518
+ readonly realAllowedGappyness: number;
519
+ readonly actuallyShowDomains: boolean;
520
+ readonly viewInitialized: boolean;
521
+ readonly width: number;
522
+ } & {
523
+ extraViewMenuItems(): never[];
524
+ readonly colorScheme: Record<string, string>;
525
+ readonly header: Record<string, unknown> | {
526
+ info: string;
527
+ version: string | undefined;
528
+ } | {
529
+ General: Record<string, string[]>;
530
+ Accessions: {
531
+ [k: string]: string | undefined;
532
+ };
533
+ Dbxref: {
534
+ [k: string]: string;
535
+ };
536
+ };
537
+ readonly alignmentNames: string[];
538
+ readonly noTree: boolean;
539
+ readonly noDomains: boolean;
540
+ menuItems(): never[];
541
+ readonly treeMetadata: Record<string, Record<string, string> | undefined>;
542
+ readonly MSA: import("msa-parsers").MSAParserType | null;
543
+ readonly numColumns: number;
544
+ readonly tree: import("./types.ts").NodeWithIds;
545
+ readonly rowNames: string[];
546
+ readonly rowNamesSet: Map<string, number>;
547
+ readonly mouseOverRowName: string | undefined;
548
+ readonly hoveredInsertion: {
549
+ rowName: string;
550
+ col: number;
551
+ letters: string;
552
+ } | undefined;
553
+ readonly root: import("./hierarchy.ts").HierarchyNode<import("./types.ts").NodeWithIds>;
554
+ readonly msaAreaWidth: number;
555
+ readonly treeAreaWidthMinusMargin: number;
556
+ readonly blanks: number[];
557
+ readonly insertionPositions: Map<string, {
558
+ pos: number;
559
+ letters: string;
560
+ }[]>;
561
+ readonly rows: [string, string][];
562
+ readonly numRows: number;
563
+ readonly seqPosGlobalColIndex: Map<string, Int32Array<ArrayBuffer>>;
564
+ readonly rowMap: Map<string, string>;
565
+ readonly columns: Map<string, string>;
566
+ readonly columns2d: string[];
567
+ readonly fontSize: number;
568
+ readonly colStats: import("./columnCounts.ts").ColumnCounts;
569
+ readonly sequenceType: 'dna' | 'rna' | 'amino';
570
+ readonly colConsensus: {
571
+ letter: string;
572
+ color: string | undefined;
573
+ }[];
574
+ readonly colClustalX: Record<string, string>[];
575
+ readonly conservation: number[];
576
+ readonly alphabetMaxBits: number;
577
+ readonly propertyConservation: number[];
578
+ readonly hierarchy: import("./hierarchy.ts").HierarchyNode<import("./types.ts").NodeWithIdsAndLength>;
579
+ readonly totalHeight: number;
580
+ readonly leaves: import("./hierarchy.ts").HierarchyNode<import("./types.ts").NodeWithIdsAndLength>[];
581
+ readonly maxBranchLength: number;
582
+ readonly maxDepthToLeaf: number;
583
+ readonly allBranchesLength0: boolean;
584
+ readonly showBranchLenEffective: boolean;
585
+ } & {
586
+ readonly totalWidth: number;
587
+ } & {
588
+ readonly dataInitialized: boolean;
589
+ readonly blocksX: number[];
590
+ readonly blocksY: number[];
591
+ readonly visibleMsaHeight: number;
592
+ } & {
593
+ readonly blocks2d: (readonly [number, number])[];
594
+ readonly isLoading: boolean;
595
+ readonly maxScrollX: number;
596
+ readonly maxScrollY: number;
597
+ readonly showMsaLetters: boolean;
598
+ readonly showTreeText: boolean;
599
+ } & {
600
+ setDrawMsaLetters(arg: boolean): void;
601
+ setScrollZoom(arg: boolean): void;
602
+ setHoveredTreeNode(nodeId?: string): void;
603
+ calculateNeighborJoiningTreeFromMSA(): void;
604
+ resetZoom(): void;
605
+ zoomOutHorizontal(): void;
606
+ zoomInHorizontal(): void;
607
+ zoomInVertical(): void;
608
+ zoomOutVertical(): void;
609
+ zoomIn(): void;
610
+ zoomOut(): void;
611
+ zoomToPos(scaleFactor: number, offsetX: number, offsetY: number): void;
612
+ doScrollY(deltaY: number): void;
613
+ setScrollY(n: number): void;
614
+ setAnnotations(annotations: import("msa-parsers").Annotation[]): void;
615
+ setDomains(data?: Record<string, import("msa-parsers").InterProScanResults>): void;
616
+ applyGFFText(gffText: string): void;
617
+ doScrollX(deltaX: number): void;
618
+ setScrollX(n: number): void;
619
+ setColumnTracks(tracks: import("./types.ts").ColumnTrackSpec[]): void;
620
+ toggleTrack(id: string): void;
621
+ setStatus(status?: {
622
+ msg: string;
623
+ url?: string;
624
+ onCancel?: () => void;
625
+ }): void;
626
+ } & {
627
+ readonly labelWidthMap: Map<string, number>;
628
+ readonly labelWidthScale: number;
629
+ readonly labelsWidth: number;
630
+ readonly secondaryStructureConsensus: string | undefined;
631
+ readonly seqConsensus: string | undefined;
632
+ readonly adapterTrackModels: import("./types.ts").BasicTrack[];
633
+ readonly columnTrackContent: Map<string, {
634
+ values?: number[];
635
+ data?: string;
636
+ }>;
637
+ readonly columnTrackModels: import("./types.ts").BasicTrack[];
638
+ readonly tracks: import("./types.ts").BasicTrack[];
639
+ readonly turnedOnTracks: import("./types.ts").BasicTrack[];
640
+ readonly showHorizontalScrollbar: boolean;
641
+ visibleColToRowLetter(rowName: string, visibleCol: number): string | undefined;
642
+ visibleColToSeqPos(rowName: string, visibleCol: number): number | undefined;
643
+ visibleColToSeqPosOneBased(rowName: string, visibleCol: number): number | undefined;
644
+ globalColToVisibleCol(globalCol: number): number | undefined;
645
+ seqPosToGlobalCol(rowName: string, seqPos: number): number;
646
+ seqPosToVisibleCol(rowName: string, seqPos: number): number | undefined;
647
+ } & {
648
+ readonly msaAreaHeight: number;
649
+ readonly totalTrackAreaHeight: number;
650
+ readonly annotationTypes: Map<string, import("msa-parsers").Annotation>;
651
+ readonly filteredAnnotations: import("msa-parsers").Annotation[];
652
+ readonly annotationsByRow: Record<string, import("msa-parsers").Annotation[]>;
653
+ } & {
654
+ readonly showVerticalScrollbar: boolean;
655
+ } & {
656
+ readonly verticalScrollbarWidth: 0 | 20;
657
+ readonly msaCanvasWidth: number;
658
+ readonly segmentDomainTypes: import("msa-parsers").Annotation[];
659
+ readonly categoricalDomainTypes: import("msa-parsers").Annotation[];
660
+ readonly fillPalette: {
661
+ [x: string]: string;
662
+ };
663
+ readonly strokePalette: {
664
+ [k: string]: string;
665
+ };
666
+ readonly segmentLabels: Map<string, string>;
667
+ readonly visibleDomainTypes: import("msa-parsers").Annotation[];
668
+ readonly domainBands: Map<string, import("./types.ts").DomainBand[]>;
669
+ readonly domainBandsByStart: Map<string, import("./types.ts").DomainBand[]>;
670
+ readonly mouseOverDomains: import("msa-parsers").Annotation[];
671
+ readonly referenceRowIndex: number | undefined;
672
+ readonly hoveredRowIndices: number[];
673
+ readonly highlightedColumnRuns: {
674
+ start: number;
675
+ end: number;
676
+ }[];
677
+ readonly resolvedHighlights: import("./types.ts").ResolvedHighlight[];
678
+ readonly mouseOverColumnStats: {
679
+ col: number;
680
+ total: number;
681
+ gaps: number;
682
+ gapFraction: number;
683
+ conservation: number;
684
+ propertyConservation: number | undefined;
685
+ consensusLetter: string;
686
+ consensusCount: number;
687
+ consensusFraction: number;
688
+ distribution: [string, number][];
689
+ } | undefined;
690
+ getRowData(name: string): {
691
+ data: {
692
+ name?: string;
693
+ accession?: string;
694
+ dbxref?: string;
695
+ } | undefined;
696
+ treeMetadata: Record<string, string> | undefined;
697
+ };
698
+ } & {
699
+ setHeaderHeight(arg: number): void;
700
+ setConservationTrackHeight(arg: number): void;
701
+ setSequenceLogoTrackHeight(arg: number): void;
702
+ reset(): void;
703
+ exportSVG(opts: import("./renderToSvg.tsx").ExportSvgOptions): Promise<void>;
704
+ initFilter(arg: string): void;
705
+ setFilter(arg: string, flag: boolean): void;
706
+ fit(): void;
707
+ fitVertically(): void;
708
+ fitHorizontally(): void;
709
+ afterCreate(): void;
710
+ } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IModelType<Omit<Omit<Omit<{}, "autoTreeAreaWidth" | "drawLabels" | "drawNodeBubbles" | "drawTree" | "labelsAlignRight" | "showBranchLen" | "treeAreaWidth" | "treeWidth"> & {
711
+ drawLabels: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
712
+ labelsAlignRight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
713
+ treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
714
+ treeWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
715
+ showBranchLen: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
716
+ drawTree: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
717
+ drawNodeBubbles: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
718
+ autoTreeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
719
+ }, "bgColor" | "colorSchemeName" | "msaFormat" | "showColumnStats"> & {
720
+ bgColor: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
721
+ colorSchemeName: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<string>, [undefined]>;
722
+ showColumnStats: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
723
+ msaFormat: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<import("msa-parsers").MSAFormat>>;
724
+ }, "allowedGappyness" | "colWidth" | "collapsed" | "columnTracks" | "currentAlignment" | "data" | "drawMsaLetters" | "featureFilters" | "gffFilehandle" | "height" | "hideGaps" | "highlightColumns" | "highlights" | "id" | "msaFilehandle" | "relativeTo" | "rowHeight" | "scrollX" | "scrollY" | "scrollZoom" | "showDomainLegend" | "showDomains" | "showOnly" | "subFeatureRows" | "treeFilehandle" | "treeMetadataFilehandle" | "turnedOffTracks" | "type"> & {
725
+ id: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<string>, [undefined]>;
726
+ showDomains: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
727
+ showDomainLegend: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
728
+ hideGaps: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
729
+ allowedGappyness: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
730
+ subFeatureRows: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
731
+ type: import("@jbrowse/mobx-state-tree").ISimpleType<"MsaView">;
732
+ drawMsaLetters: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
733
+ scrollZoom: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>, [undefined]>;
734
+ height: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
735
+ rowHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
736
+ scrollY: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
737
+ scrollX: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
738
+ colWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
739
+ treeFilehandle: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISnapshotProcessor<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<{
740
+ locationType: "LocalPathLocation";
741
+ localPath: string;
742
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
743
+ locationType: "BlobLocation";
744
+ name: string;
745
+ blobId: string;
746
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
747
+ locationType: "FileHandleLocation";
748
+ name: string;
749
+ handleId: string;
750
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
751
+ locationType: "UriLocation";
752
+ uri: string;
753
+ baseUri: string | undefined;
754
+ internetAccountId: string | undefined;
755
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
756
+ internetAccountType: string;
757
+ authInfo: any;
758
+ }> | undefined;
759
+ }>, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
760
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
761
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
762
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
763
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
764
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
765
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
766
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
767
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
768
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
769
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
770
+ }> | {
771
+ locationType: "UriLocation";
772
+ uri: string;
773
+ internetAccountId: string | undefined;
774
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
775
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
776
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
777
+ }> | undefined;
778
+ }, ({
779
+ blobId: string;
780
+ locationType: "BlobLocation";
781
+ name: string;
782
+ } & Partial<{
783
+ locationType: "BlobLocation";
784
+ name: string;
785
+ blobId: string;
786
+ }>) | ({
787
+ handleId: string;
788
+ locationType: "FileHandleLocation";
789
+ name: string;
790
+ } & Partial<{
791
+ locationType: "FileHandleLocation";
792
+ name: string;
793
+ handleId: string;
794
+ }>) | ({
795
+ localPath: string;
796
+ locationType: "LocalPathLocation";
797
+ } & Partial<{
798
+ locationType: "LocalPathLocation";
799
+ localPath: string;
800
+ }>) | ({
801
+ locationType: "UriLocation";
802
+ uri: string;
803
+ } & Partial<{
804
+ locationType: "UriLocation";
805
+ uri: string;
806
+ baseUri: string | undefined;
807
+ internetAccountId: string | undefined;
808
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
809
+ internetAccountType: string;
810
+ authInfo: any;
811
+ }> | undefined;
812
+ }>)>, import("@jbrowse/core/util/types/mst").LegacyFileLocation | import("@jbrowse/mobx-state-tree").ModelCreationType<{
813
+ locationType: "LocalPathLocation";
814
+ localPath: string;
815
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
816
+ locationType: "BlobLocation";
817
+ name: string;
818
+ blobId: string;
819
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
820
+ locationType: "FileHandleLocation";
821
+ name: string;
822
+ handleId: string;
823
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
824
+ locationType: "UriLocation";
825
+ uri: string;
826
+ baseUri: string | undefined;
827
+ internetAccountId: string | undefined;
828
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
829
+ internetAccountType: string;
830
+ authInfo: any;
831
+ }> | undefined;
832
+ }>, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
833
+ msaFilehandle: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISnapshotProcessor<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<{
834
+ locationType: "LocalPathLocation";
835
+ localPath: string;
836
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
837
+ locationType: "BlobLocation";
838
+ name: string;
839
+ blobId: string;
840
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
841
+ locationType: "FileHandleLocation";
842
+ name: string;
843
+ handleId: string;
844
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
845
+ locationType: "UriLocation";
846
+ uri: string;
847
+ baseUri: string | undefined;
848
+ internetAccountId: string | undefined;
849
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
850
+ internetAccountType: string;
851
+ authInfo: any;
852
+ }> | undefined;
853
+ }>, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
854
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
855
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
856
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
857
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
858
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
859
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
860
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
861
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
862
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
863
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
864
+ }> | {
865
+ locationType: "UriLocation";
866
+ uri: string;
867
+ internetAccountId: string | undefined;
868
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
869
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
870
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
871
+ }> | undefined;
872
+ }, ({
873
+ blobId: string;
874
+ locationType: "BlobLocation";
875
+ name: string;
876
+ } & Partial<{
877
+ locationType: "BlobLocation";
878
+ name: string;
879
+ blobId: string;
880
+ }>) | ({
881
+ handleId: string;
882
+ locationType: "FileHandleLocation";
883
+ name: string;
884
+ } & Partial<{
885
+ locationType: "FileHandleLocation";
886
+ name: string;
887
+ handleId: string;
888
+ }>) | ({
889
+ localPath: string;
890
+ locationType: "LocalPathLocation";
891
+ } & Partial<{
892
+ locationType: "LocalPathLocation";
893
+ localPath: string;
894
+ }>) | ({
895
+ locationType: "UriLocation";
896
+ uri: string;
897
+ } & Partial<{
898
+ locationType: "UriLocation";
899
+ uri: string;
900
+ baseUri: string | undefined;
901
+ internetAccountId: string | undefined;
902
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
903
+ internetAccountType: string;
904
+ authInfo: any;
905
+ }> | undefined;
906
+ }>)>, import("@jbrowse/core/util/types/mst").LegacyFileLocation | import("@jbrowse/mobx-state-tree").ModelCreationType<{
907
+ locationType: "LocalPathLocation";
908
+ localPath: string;
909
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
910
+ locationType: "BlobLocation";
911
+ name: string;
912
+ blobId: string;
913
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
914
+ locationType: "FileHandleLocation";
915
+ name: string;
916
+ handleId: string;
917
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
918
+ locationType: "UriLocation";
919
+ uri: string;
920
+ baseUri: string | undefined;
921
+ internetAccountId: string | undefined;
922
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
923
+ internetAccountType: string;
924
+ authInfo: any;
925
+ }> | undefined;
926
+ }>, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
927
+ treeMetadataFilehandle: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISnapshotProcessor<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<{
928
+ locationType: "LocalPathLocation";
929
+ localPath: string;
930
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
931
+ locationType: "BlobLocation";
932
+ name: string;
933
+ blobId: string;
934
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
935
+ locationType: "FileHandleLocation";
936
+ name: string;
937
+ handleId: string;
938
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
939
+ locationType: "UriLocation";
940
+ uri: string;
941
+ baseUri: string | undefined;
942
+ internetAccountId: string | undefined;
943
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
944
+ internetAccountType: string;
945
+ authInfo: any;
946
+ }> | undefined;
947
+ }>, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
948
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
949
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
950
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
951
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
952
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
953
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
954
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
955
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
956
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
957
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
958
+ }> | {
959
+ locationType: "UriLocation";
960
+ uri: string;
961
+ internetAccountId: string | undefined;
962
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
963
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
964
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
965
+ }> | undefined;
966
+ }, ({
967
+ blobId: string;
968
+ locationType: "BlobLocation";
969
+ name: string;
970
+ } & Partial<{
971
+ locationType: "BlobLocation";
972
+ name: string;
973
+ blobId: string;
974
+ }>) | ({
975
+ handleId: string;
976
+ locationType: "FileHandleLocation";
977
+ name: string;
978
+ } & Partial<{
979
+ locationType: "FileHandleLocation";
980
+ name: string;
981
+ handleId: string;
982
+ }>) | ({
983
+ localPath: string;
984
+ locationType: "LocalPathLocation";
985
+ } & Partial<{
986
+ locationType: "LocalPathLocation";
987
+ localPath: string;
988
+ }>) | ({
989
+ locationType: "UriLocation";
990
+ uri: string;
991
+ } & Partial<{
992
+ locationType: "UriLocation";
993
+ uri: string;
994
+ baseUri: string | undefined;
995
+ internetAccountId: string | undefined;
996
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
997
+ internetAccountType: string;
998
+ authInfo: any;
999
+ }> | undefined;
1000
+ }>)>, import("@jbrowse/core/util/types/mst").LegacyFileLocation | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1001
+ locationType: "LocalPathLocation";
1002
+ localPath: string;
1003
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1004
+ locationType: "BlobLocation";
1005
+ name: string;
1006
+ blobId: string;
1007
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1008
+ locationType: "FileHandleLocation";
1009
+ name: string;
1010
+ handleId: string;
1011
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1012
+ locationType: "UriLocation";
1013
+ uri: string;
1014
+ baseUri: string | undefined;
1015
+ internetAccountId: string | undefined;
1016
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
1017
+ internetAccountType: string;
1018
+ authInfo: any;
1019
+ }> | undefined;
1020
+ }>, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
1021
+ gffFilehandle: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISnapshotProcessor<import("@jbrowse/mobx-state-tree").ITypeUnion<import("@jbrowse/mobx-state-tree").ModelCreationType<{
1022
+ locationType: "LocalPathLocation";
1023
+ localPath: string;
1024
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1025
+ locationType: "BlobLocation";
1026
+ name: string;
1027
+ blobId: string;
1028
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1029
+ locationType: "FileHandleLocation";
1030
+ name: string;
1031
+ handleId: string;
1032
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1033
+ locationType: "UriLocation";
1034
+ uri: string;
1035
+ baseUri: string | undefined;
1036
+ internetAccountId: string | undefined;
1037
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
1038
+ internetAccountType: string;
1039
+ authInfo: any;
1040
+ }> | undefined;
1041
+ }>, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1042
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1043
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1044
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1045
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1046
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1047
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1048
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1049
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1050
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1051
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1052
+ }> | {
1053
+ locationType: "UriLocation";
1054
+ uri: string;
1055
+ internetAccountId: string | undefined;
1056
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1057
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1058
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1059
+ }> | undefined;
1060
+ }, ({
1061
+ blobId: string;
1062
+ locationType: "BlobLocation";
1063
+ name: string;
1064
+ } & Partial<{
1065
+ locationType: "BlobLocation";
1066
+ name: string;
1067
+ blobId: string;
1068
+ }>) | ({
1069
+ handleId: string;
1070
+ locationType: "FileHandleLocation";
1071
+ name: string;
1072
+ } & Partial<{
1073
+ locationType: "FileHandleLocation";
1074
+ name: string;
1075
+ handleId: string;
1076
+ }>) | ({
1077
+ localPath: string;
1078
+ locationType: "LocalPathLocation";
1079
+ } & Partial<{
1080
+ locationType: "LocalPathLocation";
1081
+ localPath: string;
1082
+ }>) | ({
1083
+ locationType: "UriLocation";
1084
+ uri: string;
1085
+ } & Partial<{
1086
+ locationType: "UriLocation";
1087
+ uri: string;
1088
+ baseUri: string | undefined;
1089
+ internetAccountId: string | undefined;
1090
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
1091
+ internetAccountType: string;
1092
+ authInfo: any;
1093
+ }> | undefined;
1094
+ }>)>, import("@jbrowse/core/util/types/mst").LegacyFileLocation | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1095
+ locationType: "LocalPathLocation";
1096
+ localPath: string;
1097
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1098
+ locationType: "BlobLocation";
1099
+ name: string;
1100
+ blobId: string;
1101
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1102
+ locationType: "FileHandleLocation";
1103
+ name: string;
1104
+ handleId: string;
1105
+ }> | import("@jbrowse/mobx-state-tree").ModelCreationType<{
1106
+ locationType: "UriLocation";
1107
+ uri: string;
1108
+ baseUri: string | undefined;
1109
+ internetAccountId: string | undefined;
1110
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelCreationType<{
1111
+ internetAccountType: string;
1112
+ authInfo: any;
1113
+ }> | undefined;
1114
+ }>, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
1115
+ currentAlignment: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
1116
+ collapsed: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>, [undefined]>;
1117
+ showOnly: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
1118
+ turnedOffTracks: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>, [undefined]>;
1119
+ columnTracks: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IType<import("./types.ts").ColumnTrackSpec, import("./types.ts").ColumnTrackSpec, import("./types.ts").ColumnTrackSpec>>, [undefined]>;
1120
+ data: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IModelType<{
1121
+ tree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
1122
+ msa: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
1123
+ treeMetadata: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
1124
+ gff: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
1125
+ }, {
1126
+ setTree(tree?: string): void;
1127
+ setMSA(msa?: string): void;
1128
+ setTreeMetadata(treeMetadata?: string): void;
1129
+ setGFF(gff?: string): void;
1130
+ }, import("@jbrowse/mobx-state-tree")._NotCustomized, {
1131
+ [k: string]: string | undefined;
1132
+ }>, [undefined]>;
1133
+ featureFilters: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>, [undefined]>;
1134
+ relativeTo: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
1135
+ highlightColumns: import("@jbrowse/mobx-state-tree").IType<number[] | undefined, number[] | undefined, number[] | undefined>;
1136
+ highlights: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IType<import("./types.ts").Highlight, import("./types.ts").Highlight, import("./types.ts").Highlight>>, [undefined]>;
1137
+ }, {
1138
+ queueOfDialogs: [import("@jbrowse/core/util").DialogComponentType, any][];
1139
+ } & {
1140
+ readonly DialogComponent: import("@jbrowse/core/util").DialogComponentType | undefined;
1141
+ readonly DialogProps: any;
1142
+ } & {
1143
+ removeActiveDialog(): void;
1144
+ queueDialog(cb: (doneCallback: () => void) => [import("@jbrowse/core/util").DialogComponentType, unknown]): void;
1145
+ } & {
1146
+ setTreeAreaWidth(n: number): void;
1147
+ setTreeWidth(n: number): void;
1148
+ setLabelsAlignRight(arg: boolean): void;
1149
+ setDrawTree(arg: boolean): void;
1150
+ setAutoTreeAreaWidth(arg: boolean): void;
1151
+ setShowBranchLen(arg: boolean): void;
1152
+ setDrawNodeBubbles(arg: boolean): void;
1153
+ setDrawLabels(arg: boolean): void;
1154
+ } & {
1155
+ setColorSchemeName(name: string): void;
1156
+ setBgColor(arg: boolean): void;
1157
+ setShowColumnStats(arg: boolean): void;
1158
+ setMSAFormat(arg?: import("msa-parsers").MSAFormat): void;
1159
+ } & {
1160
+ headerHeight: number;
1161
+ status: {
1162
+ msg: string;
1163
+ url?: string;
1164
+ onCancel?: () => void;
1165
+ } | undefined;
1166
+ highResScaleFactor: number;
1167
+ loadingMSA: boolean;
1168
+ loadingTree: boolean;
1169
+ volatileWidth: number | undefined;
1170
+ resizeHandleWidth: number;
1171
+ blockSize: number;
1172
+ mouseRow: number | undefined;
1173
+ mouseCol: number | undefined;
1174
+ mouseClickRow: number | undefined;
1175
+ mouseClickCol: number | undefined;
1176
+ hoveredTreeNode: {
1177
+ nodeId: string;
1178
+ descendantNames: string[];
1179
+ } | undefined;
1180
+ highlightedColumns: number[] | undefined;
1181
+ minimapHeight: number;
1182
+ conservationTrackHeight: number;
1183
+ sequenceLogoTrackHeight: number;
1184
+ marginLeft: number;
1185
+ error: unknown;
1186
+ annotations: import("msa-parsers").Annotation[];
1187
+ } & {
1188
+ drawRelativeTo(id: string | undefined): void;
1189
+ setHideGaps(arg: boolean): void;
1190
+ setAllowedGappyness(arg: number): void;
1191
+ setLoadingMSA(arg: boolean): void;
1192
+ setLoadingTree(arg: boolean): void;
1193
+ setWidth(arg: number): void;
1194
+ setHighResScaleFactor(arg: number): void;
1195
+ setHeight(height: number): void;
1196
+ setError(error?: unknown): void;
1197
+ setMousePos(col?: number, row?: number): void;
1198
+ setHighlightedColumns(columns?: number[]): void;
1199
+ setHighlights(highlights: import("./types.ts").Highlight[]): void;
1200
+ setShowDomains(arg: boolean): void;
1201
+ setShowDomainLegend(arg: boolean): void;
1202
+ setSubFeatureRows(arg: boolean): void;
1203
+ setMouseClickPos(col?: number, row?: number): void;
1204
+ setRowHeight(n: number): void;
1205
+ setColWidth(n: number): void;
1206
+ setCurrentAlignment(n: number): void;
1207
+ toggleCollapsed(node: string): void;
1208
+ setShowOnly(node?: string): void;
1209
+ setData(data: {
1210
+ msa?: string;
1211
+ tree?: string;
1212
+ treeMetadata?: string;
1213
+ gff?: string;
1214
+ }): void;
1215
+ setMSAFilehandle(msaFilehandle?: import("@jbrowse/core/util").FileLocation): void;
1216
+ setTreeFilehandle(treeFilehandle?: import("@jbrowse/core/util").FileLocation): void;
1217
+ setTreeMetadataFilehandle(treeMetadataFilehandle?: import("@jbrowse/core/util").FileLocation): void;
1218
+ setGFFFilehandle(gffFilehandle?: import("@jbrowse/core/util").FileLocation): void;
1219
+ setMSA(result: string): void;
1220
+ setTree(result: string): void;
1221
+ setTreeMetadata(result: string): void;
1222
+ } & {
1223
+ readonly hideGapsEffective: boolean;
1224
+ readonly realAllowedGappyness: number;
1225
+ readonly actuallyShowDomains: boolean;
1226
+ readonly viewInitialized: boolean;
1227
+ readonly width: number;
1228
+ } & {
1229
+ extraViewMenuItems(): never[];
1230
+ readonly colorScheme: Record<string, string>;
1231
+ readonly header: Record<string, unknown> | {
1232
+ info: string;
1233
+ version: string | undefined;
1234
+ } | {
1235
+ General: Record<string, string[]>;
1236
+ Accessions: {
1237
+ [k: string]: string | undefined;
1238
+ };
1239
+ Dbxref: {
1240
+ [k: string]: string;
1241
+ };
1242
+ };
1243
+ readonly alignmentNames: string[];
1244
+ readonly noTree: boolean;
1245
+ readonly noDomains: boolean;
1246
+ menuItems(): never[];
1247
+ readonly treeMetadata: Record<string, Record<string, string> | undefined>;
1248
+ readonly MSA: import("msa-parsers").MSAParserType | null;
1249
+ readonly numColumns: number;
1250
+ readonly tree: import("./types.ts").NodeWithIds;
1251
+ readonly rowNames: string[];
1252
+ readonly rowNamesSet: Map<string, number>;
1253
+ readonly mouseOverRowName: string | undefined;
1254
+ readonly hoveredInsertion: {
1255
+ rowName: string;
1256
+ col: number;
1257
+ letters: string;
1258
+ } | undefined;
1259
+ readonly root: import("./hierarchy.ts").HierarchyNode<import("./types.ts").NodeWithIds>;
1260
+ readonly msaAreaWidth: number;
1261
+ readonly treeAreaWidthMinusMargin: number;
1262
+ readonly blanks: number[];
1263
+ readonly insertionPositions: Map<string, {
1264
+ pos: number;
1265
+ letters: string;
1266
+ }[]>;
1267
+ readonly rows: [string, string][];
1268
+ readonly numRows: number;
1269
+ readonly seqPosGlobalColIndex: Map<string, Int32Array<ArrayBuffer>>;
1270
+ readonly rowMap: Map<string, string>;
1271
+ readonly columns: Map<string, string>;
1272
+ readonly columns2d: string[];
1273
+ readonly fontSize: number;
1274
+ readonly colStats: import("./columnCounts.ts").ColumnCounts;
1275
+ readonly sequenceType: 'dna' | 'rna' | 'amino';
1276
+ readonly colConsensus: {
1277
+ letter: string;
1278
+ color: string | undefined;
1279
+ }[];
1280
+ readonly colClustalX: Record<string, string>[];
1281
+ readonly conservation: number[];
1282
+ readonly alphabetMaxBits: number;
1283
+ readonly propertyConservation: number[];
1284
+ readonly hierarchy: import("./hierarchy.ts").HierarchyNode<import("./types.ts").NodeWithIdsAndLength>;
1285
+ readonly totalHeight: number;
1286
+ readonly leaves: import("./hierarchy.ts").HierarchyNode<import("./types.ts").NodeWithIdsAndLength>[];
1287
+ readonly maxBranchLength: number;
1288
+ readonly maxDepthToLeaf: number;
1289
+ readonly allBranchesLength0: boolean;
1290
+ readonly showBranchLenEffective: boolean;
1291
+ } & {
1292
+ readonly totalWidth: number;
1293
+ } & {
1294
+ readonly dataInitialized: boolean;
1295
+ readonly blocksX: number[];
1296
+ readonly blocksY: number[];
1297
+ readonly visibleMsaHeight: number;
1298
+ } & {
1299
+ readonly blocks2d: (readonly [number, number])[];
1300
+ readonly isLoading: boolean;
1301
+ readonly maxScrollX: number;
1302
+ readonly maxScrollY: number;
1303
+ readonly showMsaLetters: boolean;
1304
+ readonly showTreeText: boolean;
1305
+ } & {
1306
+ setDrawMsaLetters(arg: boolean): void;
1307
+ setScrollZoom(arg: boolean): void;
1308
+ setHoveredTreeNode(nodeId?: string): void;
1309
+ calculateNeighborJoiningTreeFromMSA(): void;
1310
+ resetZoom(): void;
1311
+ zoomOutHorizontal(): void;
1312
+ zoomInHorizontal(): void;
1313
+ zoomInVertical(): void;
1314
+ zoomOutVertical(): void;
1315
+ zoomIn(): void;
1316
+ zoomOut(): void;
1317
+ zoomToPos(scaleFactor: number, offsetX: number, offsetY: number): void;
1318
+ doScrollY(deltaY: number): void;
1319
+ setScrollY(n: number): void;
1320
+ setAnnotations(annotations: import("msa-parsers").Annotation[]): void;
1321
+ setDomains(data?: Record<string, import("msa-parsers").InterProScanResults>): void;
1322
+ applyGFFText(gffText: string): void;
1323
+ doScrollX(deltaX: number): void;
1324
+ setScrollX(n: number): void;
1325
+ setColumnTracks(tracks: import("./types.ts").ColumnTrackSpec[]): void;
1326
+ toggleTrack(id: string): void;
1327
+ setStatus(status?: {
1328
+ msg: string;
1329
+ url?: string;
1330
+ onCancel?: () => void;
1331
+ }): void;
1332
+ } & {
1333
+ readonly labelWidthMap: Map<string, number>;
1334
+ readonly labelWidthScale: number;
1335
+ readonly labelsWidth: number;
1336
+ readonly secondaryStructureConsensus: string | undefined;
1337
+ readonly seqConsensus: string | undefined;
1338
+ readonly adapterTrackModels: import("./types.ts").BasicTrack[];
1339
+ readonly columnTrackContent: Map<string, {
1340
+ values?: number[];
1341
+ data?: string;
1342
+ }>;
1343
+ readonly columnTrackModels: import("./types.ts").BasicTrack[];
1344
+ readonly tracks: import("./types.ts").BasicTrack[];
1345
+ readonly turnedOnTracks: import("./types.ts").BasicTrack[];
1346
+ readonly showHorizontalScrollbar: boolean;
1347
+ visibleColToRowLetter(rowName: string, visibleCol: number): string | undefined;
1348
+ visibleColToSeqPos(rowName: string, visibleCol: number): number | undefined;
1349
+ visibleColToSeqPosOneBased(rowName: string, visibleCol: number): number | undefined;
1350
+ globalColToVisibleCol(globalCol: number): number | undefined;
1351
+ seqPosToGlobalCol(rowName: string, seqPos: number): number;
1352
+ seqPosToVisibleCol(rowName: string, seqPos: number): number | undefined;
1353
+ } & {
1354
+ readonly msaAreaHeight: number;
1355
+ readonly totalTrackAreaHeight: number;
1356
+ readonly annotationTypes: Map<string, import("msa-parsers").Annotation>;
1357
+ readonly filteredAnnotations: import("msa-parsers").Annotation[];
1358
+ readonly annotationsByRow: Record<string, import("msa-parsers").Annotation[]>;
1359
+ } & {
1360
+ readonly showVerticalScrollbar: boolean;
1361
+ } & {
1362
+ readonly verticalScrollbarWidth: 0 | 20;
1363
+ readonly msaCanvasWidth: number;
1364
+ readonly segmentDomainTypes: import("msa-parsers").Annotation[];
1365
+ readonly categoricalDomainTypes: import("msa-parsers").Annotation[];
1366
+ readonly fillPalette: {
1367
+ [x: string]: string;
1368
+ };
1369
+ readonly strokePalette: {
1370
+ [k: string]: string;
1371
+ };
1372
+ readonly segmentLabels: Map<string, string>;
1373
+ readonly visibleDomainTypes: import("msa-parsers").Annotation[];
1374
+ readonly domainBands: Map<string, import("./types.ts").DomainBand[]>;
1375
+ readonly domainBandsByStart: Map<string, import("./types.ts").DomainBand[]>;
1376
+ readonly mouseOverDomains: import("msa-parsers").Annotation[];
1377
+ readonly referenceRowIndex: number | undefined;
1378
+ readonly hoveredRowIndices: number[];
1379
+ readonly highlightedColumnRuns: {
1380
+ start: number;
1381
+ end: number;
1382
+ }[];
1383
+ readonly resolvedHighlights: import("./types.ts").ResolvedHighlight[];
1384
+ readonly mouseOverColumnStats: {
1385
+ col: number;
1386
+ total: number;
1387
+ gaps: number;
1388
+ gapFraction: number;
1389
+ conservation: number;
1390
+ propertyConservation: number | undefined;
1391
+ consensusLetter: string;
1392
+ consensusCount: number;
1393
+ consensusFraction: number;
1394
+ distribution: [string, number][];
1395
+ } | undefined;
1396
+ getRowData(name: string): {
1397
+ data: {
1398
+ name?: string;
1399
+ accession?: string;
1400
+ dbxref?: string;
1401
+ } | undefined;
1402
+ treeMetadata: Record<string, string> | undefined;
1403
+ };
1404
+ } & {
1405
+ setHeaderHeight(arg: number): void;
1406
+ setConservationTrackHeight(arg: number): void;
1407
+ setSequenceLogoTrackHeight(arg: number): void;
1408
+ reset(): void;
1409
+ exportSVG(opts: import("./renderToSvg.tsx").ExportSvgOptions): Promise<void>;
1410
+ initFilter(arg: string): void;
1411
+ setFilter(arg: string, flag: boolean): void;
1412
+ fit(): void;
1413
+ fitVertically(): void;
1414
+ fitHorizontally(): void;
1415
+ afterCreate(): void;
1416
+ }, import("@jbrowse/mobx-state-tree")._NotCustomized, {
1417
+ bgColor: boolean;
1418
+ colorSchemeName: string;
1419
+ showColumnStats: boolean;
1420
+ msaFormat: import("msa-parsers").MSAFormat | undefined;
1421
+ drawLabels: boolean;
1422
+ labelsAlignRight: boolean;
1423
+ treeAreaWidth: number;
1424
+ treeWidth: number;
1425
+ showBranchLen: boolean;
1426
+ drawTree: boolean;
1427
+ drawNodeBubbles: boolean;
1428
+ autoTreeAreaWidth: boolean;
1429
+ columnTracks: import("./types.ts").ColumnTrackSpec[];
1430
+ id: string;
1431
+ showDomains: boolean;
1432
+ showDomainLegend: boolean;
1433
+ hideGaps: boolean;
1434
+ allowedGappyness: number;
1435
+ subFeatureRows: boolean;
1436
+ type: "MsaView";
1437
+ drawMsaLetters: boolean;
1438
+ scrollZoom: boolean;
1439
+ height: number;
1440
+ rowHeight: number;
1441
+ scrollY: number;
1442
+ scrollX: number;
1443
+ colWidth: number;
1444
+ treeFilehandle: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1445
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1446
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1447
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1448
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1449
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1450
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1451
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1452
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1453
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1454
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1455
+ }> | {
1456
+ locationType: "UriLocation";
1457
+ uri: string;
1458
+ internetAccountId: string | undefined;
1459
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1460
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1461
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1462
+ }> | undefined;
1463
+ } | undefined;
1464
+ msaFilehandle: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1465
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1466
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1467
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1468
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1469
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1470
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1471
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1472
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1473
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1474
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1475
+ }> | {
1476
+ locationType: "UriLocation";
1477
+ uri: string;
1478
+ internetAccountId: string | undefined;
1479
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1480
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1481
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1482
+ }> | undefined;
1483
+ } | undefined;
1484
+ treeMetadataFilehandle: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1485
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1486
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1487
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1488
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1489
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1490
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1491
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1492
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1493
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1494
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1495
+ }> | {
1496
+ locationType: "UriLocation";
1497
+ uri: string;
1498
+ internetAccountId: string | undefined;
1499
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1500
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1501
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1502
+ }> | undefined;
1503
+ } | undefined;
1504
+ gffFilehandle: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1505
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1506
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1507
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1508
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1509
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1510
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1511
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1512
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1513
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1514
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1515
+ }> | {
1516
+ locationType: "UriLocation";
1517
+ uri: string;
1518
+ internetAccountId: string | undefined;
1519
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1520
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1521
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1522
+ }> | undefined;
1523
+ } | undefined;
1524
+ currentAlignment: number;
1525
+ collapsed: string[];
1526
+ showOnly: string | undefined;
1527
+ turnedOffTracks: import("mobx").IKeyValueMap<boolean>;
1528
+ featureFilters: import("mobx").IKeyValueMap<boolean>;
1529
+ relativeTo: string | undefined;
1530
+ highlightColumns: number[] | undefined;
1531
+ highlights: import("./types.ts").Highlight[];
1532
+ data: {
1533
+ tree?: string | undefined;
1534
+ msa?: string | undefined;
1535
+ treeMetadata?: string | undefined;
1536
+ gff?: string | undefined;
1537
+ };
1538
+ } | {
1539
+ bgColor: boolean;
1540
+ colorSchemeName: string;
1541
+ showColumnStats: boolean;
1542
+ msaFormat: import("msa-parsers").MSAFormat | undefined;
1543
+ drawLabels: boolean;
1544
+ labelsAlignRight: boolean;
1545
+ treeAreaWidth: number;
1546
+ treeWidth: number;
1547
+ showBranchLen: boolean;
1548
+ drawTree: boolean;
1549
+ drawNodeBubbles: boolean;
1550
+ autoTreeAreaWidth: boolean;
1551
+ columnTracks?: undefined;
1552
+ id: string;
1553
+ showDomains: boolean;
1554
+ showDomainLegend: boolean;
1555
+ hideGaps: boolean;
1556
+ allowedGappyness: number;
1557
+ subFeatureRows: boolean;
1558
+ type: "MsaView";
1559
+ drawMsaLetters: boolean;
1560
+ scrollZoom: boolean;
1561
+ height: number;
1562
+ rowHeight: number;
1563
+ scrollY: number;
1564
+ scrollX: number;
1565
+ colWidth: number;
1566
+ treeFilehandle: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1567
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1568
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1569
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1570
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1571
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1572
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1573
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1574
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1575
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1576
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1577
+ }> | {
1578
+ locationType: "UriLocation";
1579
+ uri: string;
1580
+ internetAccountId: string | undefined;
1581
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1582
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1583
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1584
+ }> | undefined;
1585
+ } | undefined;
1586
+ msaFilehandle: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1587
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1588
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1589
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1590
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1591
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1592
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1593
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1594
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1595
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1596
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1597
+ }> | {
1598
+ locationType: "UriLocation";
1599
+ uri: string;
1600
+ internetAccountId: string | undefined;
1601
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1602
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1603
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1604
+ }> | undefined;
1605
+ } | undefined;
1606
+ treeMetadataFilehandle: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1607
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1608
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1609
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1610
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1611
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1612
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1613
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1614
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1615
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1616
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1617
+ }> | {
1618
+ locationType: "UriLocation";
1619
+ uri: string;
1620
+ internetAccountId: string | undefined;
1621
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1622
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1623
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1624
+ }> | undefined;
1625
+ } | undefined;
1626
+ gffFilehandle: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1627
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"LocalPathLocation">;
1628
+ localPath: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1629
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1630
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"BlobLocation">;
1631
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1632
+ blobId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1633
+ }> | import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1634
+ locationType: import("@jbrowse/mobx-state-tree").ISimpleType<"FileHandleLocation">;
1635
+ name: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1636
+ handleId: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1637
+ }> | {
1638
+ locationType: "UriLocation";
1639
+ uri: string;
1640
+ internetAccountId: string | undefined;
1641
+ internetAccountPreAuthorization: import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
1642
+ internetAccountType: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
1643
+ authInfo: import("@jbrowse/mobx-state-tree").IType<any, any, any>;
1644
+ }> | undefined;
1645
+ } | undefined;
1646
+ currentAlignment: number;
1647
+ collapsed: string[];
1648
+ showOnly: string | undefined;
1649
+ turnedOffTracks: import("mobx").IKeyValueMap<boolean>;
1650
+ featureFilters: import("mobx").IKeyValueMap<boolean>;
1651
+ relativeTo: string | undefined;
1652
+ highlightColumns: number[] | undefined;
1653
+ highlights: import("./types.ts").Highlight[];
1654
+ data: {
1655
+ tree?: string | undefined;
1656
+ msa?: string | undefined;
1657
+ treeMetadata?: string | undefined;
1658
+ gff?: string | undefined;
1659
+ };
1660
+ }>>;
1661
+ export declare function syntheticProteinMsa(rows: number, cols: number): string;
1662
+ export {};