@jbrowse/plugin-variants 4.1.3 → 4.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/ChordVariantDisplay/models/configSchema.d.ts +2 -2
- package/esm/LDDisplay/SharedLDConfigSchema.d.ts +3 -3
- package/esm/LDDisplay/components/LDDisplayComponent.js +3 -1
- package/esm/LDDisplay/components/LinesConnectingMatrixToGenomicPosition.d.ts +0 -9
- package/esm/LDDisplay/components/LinesConnectingMatrixToGenomicPosition.js +3 -29
- package/esm/LDDisplay/components/VariantLabels.d.ts +5 -0
- package/esm/LDDisplay/components/VariantLabels.js +27 -0
- package/esm/LDDisplay/components/Wrapper.d.ts +8 -0
- package/esm/LDDisplay/components/Wrapper.js +16 -0
- package/esm/LDDisplay/configSchema1.d.ts +6 -6
- package/esm/LDDisplay/configSchema2.d.ts +6 -6
- package/esm/LDDisplay/renderSvg.js +3 -1
- package/esm/LDRenderer/configSchema.d.ts +2 -2
- package/esm/LDTrack/configSchema.d.ts +8 -8
- package/esm/LinearVariantDisplay/configSchema.d.ts +3 -3
- package/esm/LinearVariantDisplay/model.d.ts +18 -8
- package/esm/MultiLinearVariantDisplay/configSchema.d.ts +6 -6
- package/esm/MultiLinearVariantDisplay/model.d.ts +72 -18
- package/esm/MultiLinearVariantMatrixDisplay/configSchema.d.ts +5 -5
- package/esm/MultiLinearVariantMatrixDisplay/model.d.ts +76 -20
- package/esm/MultiLinearVariantMatrixRenderer/configSchema.d.ts +1 -1
- package/esm/MultiLinearVariantRenderer/configSchema.d.ts +1 -1
- package/esm/PlinkLDAdapter/configSchema.d.ts +2 -2
- package/esm/PlinkLDAdapter/configSchemaTabix.d.ts +4 -4
- package/esm/SplitVcfTabixAdapter/configSchema.d.ts +2 -2
- package/esm/StructuralVariantChordRenderer/configSchema.d.ts +2 -2
- package/esm/VariantFeatureWidget/configSchema.d.ts +1 -1
- package/esm/VariantFeatureWidget/stateModelFactory.d.ts +2 -2
- package/esm/VariantTrack/configSchema.d.ts +8 -8
- package/esm/VcfAdapter/configSchema.d.ts +2 -2
- package/esm/VcfTabixAdapter/configSchema.d.ts +4 -4
- package/esm/shared/MultiVariantBaseModel.d.ts +76 -20
- package/esm/shared/MultiVariantBaseModel.js +53 -3
- package/esm/shared/SharedVariantConfigSchema.d.ts +3 -3
- package/esm/shared/components/RectBg.js +3 -1
- package/esm/shared/components/TreeSidebar.js +38 -5
- package/esm/shared/components/types.d.ts +2 -0
- package/esm/shared/constants.d.ts +1 -0
- package/esm/shared/constants.js +1 -0
- package/esm/shared/makeSidebarSvg.js +3 -2
- package/package.json +8 -8
|
@@ -35,6 +35,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
35
35
|
statusMessage?: string;
|
|
36
36
|
reactElement?: React.ReactElement;
|
|
37
37
|
isRenderingPending?: boolean;
|
|
38
|
+
displayHeight?: number;
|
|
38
39
|
};
|
|
39
40
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
40
41
|
renderProps: any;
|
|
@@ -53,10 +54,11 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
53
54
|
beforeDestroy(): void;
|
|
54
55
|
} & {
|
|
55
56
|
readonly statusMessage: any;
|
|
57
|
+
readonly displayHeight: number | undefined;
|
|
56
58
|
} & {
|
|
57
59
|
afterAttach(): void;
|
|
58
60
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
59
|
-
configuration: import("
|
|
61
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
60
62
|
maxFeatureScreenDensity: {
|
|
61
63
|
type: string;
|
|
62
64
|
description: string;
|
|
@@ -83,7 +85,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
83
85
|
description: string;
|
|
84
86
|
defaultValue: never[];
|
|
85
87
|
};
|
|
86
|
-
}, import("
|
|
88
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
87
89
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
88
90
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
89
91
|
} & {
|
|
@@ -104,6 +106,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
104
106
|
clusterTree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
|
|
105
107
|
treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
106
108
|
lineZoneHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
109
|
+
subtreeFilter: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>;
|
|
107
110
|
} & {
|
|
108
111
|
type: import("@jbrowse/mobx-state-tree").ISimpleType<"LinearVariantMatrixDisplay">;
|
|
109
112
|
lineZoneHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
@@ -395,6 +398,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
395
398
|
statusMessage?: string;
|
|
396
399
|
reactElement?: React.ReactElement;
|
|
397
400
|
isRenderingPending?: boolean;
|
|
401
|
+
displayHeight?: number;
|
|
398
402
|
};
|
|
399
403
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
400
404
|
renderProps: any;
|
|
@@ -413,6 +417,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
413
417
|
beforeDestroy(): void;
|
|
414
418
|
} & {
|
|
415
419
|
readonly statusMessage: any;
|
|
420
|
+
readonly displayHeight: number | undefined;
|
|
416
421
|
} & {
|
|
417
422
|
afterAttach(): void;
|
|
418
423
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
|
|
@@ -439,6 +444,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
439
444
|
statusMessage?: string;
|
|
440
445
|
reactElement?: React.ReactElement;
|
|
441
446
|
isRenderingPending?: boolean;
|
|
447
|
+
displayHeight?: number;
|
|
442
448
|
};
|
|
443
449
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
444
450
|
renderProps: any;
|
|
@@ -457,6 +463,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
457
463
|
beforeDestroy(): void;
|
|
458
464
|
} & {
|
|
459
465
|
readonly statusMessage: any;
|
|
466
|
+
readonly displayHeight: number | undefined;
|
|
460
467
|
} & {
|
|
461
468
|
afterAttach(): void;
|
|
462
469
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -470,7 +477,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
470
477
|
[x: string]: any;
|
|
471
478
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
472
479
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
473
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
480
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
474
481
|
maxFeatureScreenDensity: {
|
|
475
482
|
type: string;
|
|
476
483
|
description: string;
|
|
@@ -497,7 +504,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
497
504
|
description: string;
|
|
498
505
|
defaultValue: never[];
|
|
499
506
|
};
|
|
500
|
-
}, import("
|
|
507
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
|
|
501
508
|
showLegend: boolean | undefined;
|
|
502
509
|
showTooltips: boolean | undefined;
|
|
503
510
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -787,6 +794,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
787
794
|
statusMessage?: string;
|
|
788
795
|
reactElement?: React.ReactElement;
|
|
789
796
|
isRenderingPending?: boolean;
|
|
797
|
+
displayHeight?: number;
|
|
790
798
|
};
|
|
791
799
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
792
800
|
renderProps: any;
|
|
@@ -805,10 +813,11 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
805
813
|
beforeDestroy(): void;
|
|
806
814
|
} & {
|
|
807
815
|
readonly statusMessage: any;
|
|
816
|
+
readonly displayHeight: number | undefined;
|
|
808
817
|
} & {
|
|
809
818
|
afterAttach(): void;
|
|
810
819
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
811
|
-
configuration: import("
|
|
820
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
812
821
|
maxFeatureScreenDensity: {
|
|
813
822
|
type: string;
|
|
814
823
|
description: string;
|
|
@@ -835,7 +844,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
835
844
|
description: string;
|
|
836
845
|
defaultValue: never[];
|
|
837
846
|
};
|
|
838
|
-
}, import("
|
|
847
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
839
848
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
840
849
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
841
850
|
}, {
|
|
@@ -1145,6 +1154,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1145
1154
|
setMafFilter(arg: number): void;
|
|
1146
1155
|
setShowSidebarLabels(arg: boolean): void;
|
|
1147
1156
|
setShowTree(arg: boolean): void;
|
|
1157
|
+
setSubtreeFilter(names?: string[]): void;
|
|
1148
1158
|
setPhasedMode(arg: string): void;
|
|
1149
1159
|
setAutoHeight(auto: boolean): void;
|
|
1150
1160
|
setHasPhased(arg: boolean): void;
|
|
@@ -1190,6 +1200,13 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1190
1200
|
disabled: boolean;
|
|
1191
1201
|
onClick: () => void;
|
|
1192
1202
|
helpText?: undefined;
|
|
1203
|
+
} | {
|
|
1204
|
+
label: string;
|
|
1205
|
+
onClick: () => void;
|
|
1206
|
+
type?: undefined;
|
|
1207
|
+
checked?: undefined;
|
|
1208
|
+
disabled?: undefined;
|
|
1209
|
+
helpText?: undefined;
|
|
1193
1210
|
} | {
|
|
1194
1211
|
label: string;
|
|
1195
1212
|
helpText: string;
|
|
@@ -1309,6 +1326,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1309
1326
|
statusMessage?: string;
|
|
1310
1327
|
reactElement?: React.ReactElement;
|
|
1311
1328
|
isRenderingPending?: boolean;
|
|
1329
|
+
displayHeight?: number;
|
|
1312
1330
|
};
|
|
1313
1331
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1314
1332
|
renderProps: any;
|
|
@@ -1327,6 +1345,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1327
1345
|
beforeDestroy(): void;
|
|
1328
1346
|
} & {
|
|
1329
1347
|
readonly statusMessage: any;
|
|
1348
|
+
readonly displayHeight: number | undefined;
|
|
1330
1349
|
} & {
|
|
1331
1350
|
afterAttach(): void;
|
|
1332
1351
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
|
|
@@ -1353,6 +1372,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1353
1372
|
statusMessage?: string;
|
|
1354
1373
|
reactElement?: React.ReactElement;
|
|
1355
1374
|
isRenderingPending?: boolean;
|
|
1375
|
+
displayHeight?: number;
|
|
1356
1376
|
};
|
|
1357
1377
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1358
1378
|
renderProps: any;
|
|
@@ -1371,6 +1391,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1371
1391
|
beforeDestroy(): void;
|
|
1372
1392
|
} & {
|
|
1373
1393
|
readonly statusMessage: any;
|
|
1394
|
+
readonly displayHeight: number | undefined;
|
|
1374
1395
|
} & {
|
|
1375
1396
|
afterAttach(): void;
|
|
1376
1397
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -1384,7 +1405,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1384
1405
|
[x: string]: any;
|
|
1385
1406
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
1386
1407
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
1387
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
1408
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
1388
1409
|
maxFeatureScreenDensity: {
|
|
1389
1410
|
type: string;
|
|
1390
1411
|
description: string;
|
|
@@ -1411,7 +1432,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1411
1432
|
description: string;
|
|
1412
1433
|
defaultValue: never[];
|
|
1413
1434
|
};
|
|
1414
|
-
}, import("
|
|
1435
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">> & AnyConfigurationSchemaType> & {
|
|
1415
1436
|
setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
|
|
1416
1437
|
[x: string]: any;
|
|
1417
1438
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
@@ -1430,6 +1451,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1430
1451
|
clusterTree: string | undefined;
|
|
1431
1452
|
treeAreaWidth: number;
|
|
1432
1453
|
lineZoneHeight: number;
|
|
1454
|
+
subtreeFilter: (import("@jbrowse/mobx-state-tree").IMSTArray<import("@jbrowse/mobx-state-tree").ISimpleType<string>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>>) | undefined;
|
|
1433
1455
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1434
1456
|
rendererTypeName: string;
|
|
1435
1457
|
error: unknown;
|
|
@@ -1718,6 +1740,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1718
1740
|
statusMessage?: string;
|
|
1719
1741
|
reactElement?: React.ReactElement;
|
|
1720
1742
|
isRenderingPending?: boolean;
|
|
1743
|
+
displayHeight?: number;
|
|
1721
1744
|
};
|
|
1722
1745
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1723
1746
|
renderProps: any;
|
|
@@ -1736,6 +1759,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1736
1759
|
beforeDestroy(): void;
|
|
1737
1760
|
} & {
|
|
1738
1761
|
readonly statusMessage: any;
|
|
1762
|
+
readonly displayHeight: number | undefined;
|
|
1739
1763
|
} & {
|
|
1740
1764
|
afterAttach(): void;
|
|
1741
1765
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
|
|
@@ -1762,6 +1786,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1762
1786
|
statusMessage?: string;
|
|
1763
1787
|
reactElement?: React.ReactElement;
|
|
1764
1788
|
isRenderingPending?: boolean;
|
|
1789
|
+
displayHeight?: number;
|
|
1765
1790
|
};
|
|
1766
1791
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1767
1792
|
renderProps: any;
|
|
@@ -1780,6 +1805,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1780
1805
|
beforeDestroy(): void;
|
|
1781
1806
|
} & {
|
|
1782
1807
|
readonly statusMessage: any;
|
|
1808
|
+
readonly displayHeight: number | undefined;
|
|
1783
1809
|
} & {
|
|
1784
1810
|
afterAttach(): void;
|
|
1785
1811
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -1793,7 +1819,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1793
1819
|
[x: string]: any;
|
|
1794
1820
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
1795
1821
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
1796
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
1822
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
1797
1823
|
maxFeatureScreenDensity: {
|
|
1798
1824
|
type: string;
|
|
1799
1825
|
description: string;
|
|
@@ -1820,7 +1846,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
1820
1846
|
description: string;
|
|
1821
1847
|
defaultValue: never[];
|
|
1822
1848
|
};
|
|
1823
|
-
}, import("
|
|
1849
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
|
|
1824
1850
|
showLegend: boolean | undefined;
|
|
1825
1851
|
showTooltips: boolean | undefined;
|
|
1826
1852
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -2110,6 +2136,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2110
2136
|
statusMessage?: string;
|
|
2111
2137
|
reactElement?: React.ReactElement;
|
|
2112
2138
|
isRenderingPending?: boolean;
|
|
2139
|
+
displayHeight?: number;
|
|
2113
2140
|
};
|
|
2114
2141
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2115
2142
|
renderProps: any;
|
|
@@ -2128,10 +2155,11 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2128
2155
|
beforeDestroy(): void;
|
|
2129
2156
|
} & {
|
|
2130
2157
|
readonly statusMessage: any;
|
|
2158
|
+
readonly displayHeight: number | undefined;
|
|
2131
2159
|
} & {
|
|
2132
2160
|
afterAttach(): void;
|
|
2133
2161
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
2134
|
-
configuration: import("
|
|
2162
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2135
2163
|
maxFeatureScreenDensity: {
|
|
2136
2164
|
type: string;
|
|
2137
2165
|
description: string;
|
|
@@ -2158,7 +2186,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2158
2186
|
description: string;
|
|
2159
2187
|
defaultValue: never[];
|
|
2160
2188
|
};
|
|
2161
|
-
}, import("
|
|
2189
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
2162
2190
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2163
2191
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2164
2192
|
}, {
|
|
@@ -2468,6 +2496,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2468
2496
|
setMafFilter(arg: number): void;
|
|
2469
2497
|
setShowSidebarLabels(arg: boolean): void;
|
|
2470
2498
|
setShowTree(arg: boolean): void;
|
|
2499
|
+
setSubtreeFilter(names?: string[]): void;
|
|
2471
2500
|
setPhasedMode(arg: string): void;
|
|
2472
2501
|
setAutoHeight(auto: boolean): void;
|
|
2473
2502
|
setHasPhased(arg: boolean): void;
|
|
@@ -2513,6 +2542,13 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2513
2542
|
disabled: boolean;
|
|
2514
2543
|
onClick: () => void;
|
|
2515
2544
|
helpText?: undefined;
|
|
2545
|
+
} | {
|
|
2546
|
+
label: string;
|
|
2547
|
+
onClick: () => void;
|
|
2548
|
+
type?: undefined;
|
|
2549
|
+
checked?: undefined;
|
|
2550
|
+
disabled?: undefined;
|
|
2551
|
+
helpText?: undefined;
|
|
2516
2552
|
} | {
|
|
2517
2553
|
label: string;
|
|
2518
2554
|
helpText: string;
|
|
@@ -2632,6 +2668,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2632
2668
|
statusMessage?: string;
|
|
2633
2669
|
reactElement?: React.ReactElement;
|
|
2634
2670
|
isRenderingPending?: boolean;
|
|
2671
|
+
displayHeight?: number;
|
|
2635
2672
|
};
|
|
2636
2673
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2637
2674
|
renderProps: any;
|
|
@@ -2650,10 +2687,11 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2650
2687
|
beforeDestroy(): void;
|
|
2651
2688
|
} & {
|
|
2652
2689
|
readonly statusMessage: any;
|
|
2690
|
+
readonly displayHeight: number | undefined;
|
|
2653
2691
|
} & {
|
|
2654
2692
|
afterAttach(): void;
|
|
2655
2693
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
2656
|
-
configuration: import("
|
|
2694
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2657
2695
|
maxFeatureScreenDensity: {
|
|
2658
2696
|
type: string;
|
|
2659
2697
|
description: string;
|
|
@@ -2680,7 +2718,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2680
2718
|
description: string;
|
|
2681
2719
|
defaultValue: never[];
|
|
2682
2720
|
};
|
|
2683
|
-
}, import("
|
|
2721
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
2684
2722
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2685
2723
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
2686
2724
|
} & {
|
|
@@ -2701,6 +2739,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2701
2739
|
clusterTree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
|
|
2702
2740
|
treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
2703
2741
|
lineZoneHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
2742
|
+
subtreeFilter: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>;
|
|
2704
2743
|
}, {
|
|
2705
2744
|
rendererTypeName: string;
|
|
2706
2745
|
error: unknown;
|
|
@@ -2989,6 +3028,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
2989
3028
|
statusMessage?: string;
|
|
2990
3029
|
reactElement?: React.ReactElement;
|
|
2991
3030
|
isRenderingPending?: boolean;
|
|
3031
|
+
displayHeight?: number;
|
|
2992
3032
|
};
|
|
2993
3033
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2994
3034
|
renderProps: any;
|
|
@@ -3007,6 +3047,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3007
3047
|
beforeDestroy(): void;
|
|
3008
3048
|
} & {
|
|
3009
3049
|
readonly statusMessage: any;
|
|
3050
|
+
readonly displayHeight: number | undefined;
|
|
3010
3051
|
} & {
|
|
3011
3052
|
afterAttach(): void;
|
|
3012
3053
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
|
|
@@ -3033,6 +3074,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3033
3074
|
statusMessage?: string;
|
|
3034
3075
|
reactElement?: React.ReactElement;
|
|
3035
3076
|
isRenderingPending?: boolean;
|
|
3077
|
+
displayHeight?: number;
|
|
3036
3078
|
};
|
|
3037
3079
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
3038
3080
|
renderProps: any;
|
|
@@ -3051,6 +3093,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3051
3093
|
beforeDestroy(): void;
|
|
3052
3094
|
} & {
|
|
3053
3095
|
readonly statusMessage: any;
|
|
3096
|
+
readonly displayHeight: number | undefined;
|
|
3054
3097
|
} & {
|
|
3055
3098
|
afterAttach(): void;
|
|
3056
3099
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -3064,7 +3107,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3064
3107
|
[x: string]: any;
|
|
3065
3108
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
3066
3109
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
3067
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
3110
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3068
3111
|
maxFeatureScreenDensity: {
|
|
3069
3112
|
type: string;
|
|
3070
3113
|
description: string;
|
|
@@ -3091,7 +3134,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3091
3134
|
description: string;
|
|
3092
3135
|
defaultValue: never[];
|
|
3093
3136
|
};
|
|
3094
|
-
}, import("
|
|
3137
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
|
|
3095
3138
|
showLegend: boolean | undefined;
|
|
3096
3139
|
showTooltips: boolean | undefined;
|
|
3097
3140
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -3381,6 +3424,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3381
3424
|
statusMessage?: string;
|
|
3382
3425
|
reactElement?: React.ReactElement;
|
|
3383
3426
|
isRenderingPending?: boolean;
|
|
3427
|
+
displayHeight?: number;
|
|
3384
3428
|
};
|
|
3385
3429
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
3386
3430
|
renderProps: any;
|
|
@@ -3399,10 +3443,11 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3399
3443
|
beforeDestroy(): void;
|
|
3400
3444
|
} & {
|
|
3401
3445
|
readonly statusMessage: any;
|
|
3446
|
+
readonly displayHeight: number | undefined;
|
|
3402
3447
|
} & {
|
|
3403
3448
|
afterAttach(): void;
|
|
3404
3449
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
3405
|
-
configuration: import("
|
|
3450
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3406
3451
|
maxFeatureScreenDensity: {
|
|
3407
3452
|
type: string;
|
|
3408
3453
|
description: string;
|
|
@@ -3429,7 +3474,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3429
3474
|
description: string;
|
|
3430
3475
|
defaultValue: never[];
|
|
3431
3476
|
};
|
|
3432
|
-
}, import("
|
|
3477
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
3433
3478
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
3434
3479
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
3435
3480
|
}, {
|
|
@@ -3739,6 +3784,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3739
3784
|
setMafFilter(arg: number): void;
|
|
3740
3785
|
setShowSidebarLabels(arg: boolean): void;
|
|
3741
3786
|
setShowTree(arg: boolean): void;
|
|
3787
|
+
setSubtreeFilter(names?: string[]): void;
|
|
3742
3788
|
setPhasedMode(arg: string): void;
|
|
3743
3789
|
setAutoHeight(auto: boolean): void;
|
|
3744
3790
|
setHasPhased(arg: boolean): void;
|
|
@@ -3784,6 +3830,13 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3784
3830
|
disabled: boolean;
|
|
3785
3831
|
onClick: () => void;
|
|
3786
3832
|
helpText?: undefined;
|
|
3833
|
+
} | {
|
|
3834
|
+
label: string;
|
|
3835
|
+
onClick: () => void;
|
|
3836
|
+
type?: undefined;
|
|
3837
|
+
checked?: undefined;
|
|
3838
|
+
disabled?: undefined;
|
|
3839
|
+
helpText?: undefined;
|
|
3787
3840
|
} | {
|
|
3788
3841
|
label: string;
|
|
3789
3842
|
helpText: string;
|
|
@@ -3922,6 +3975,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3922
3975
|
statusMessage?: string;
|
|
3923
3976
|
reactElement?: React.ReactElement;
|
|
3924
3977
|
isRenderingPending?: boolean;
|
|
3978
|
+
displayHeight?: number;
|
|
3925
3979
|
};
|
|
3926
3980
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
3927
3981
|
renderProps: any;
|
|
@@ -3940,10 +3994,11 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3940
3994
|
beforeDestroy(): void;
|
|
3941
3995
|
} & {
|
|
3942
3996
|
readonly statusMessage: any;
|
|
3997
|
+
readonly displayHeight: number | undefined;
|
|
3943
3998
|
} & {
|
|
3944
3999
|
afterAttach(): void;
|
|
3945
4000
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
3946
|
-
configuration: import("
|
|
4001
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3947
4002
|
maxFeatureScreenDensity: {
|
|
3948
4003
|
type: string;
|
|
3949
4004
|
description: string;
|
|
@@ -3970,7 +4025,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3970
4025
|
description: string;
|
|
3971
4026
|
defaultValue: never[];
|
|
3972
4027
|
};
|
|
3973
|
-
}, import("
|
|
4028
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
3974
4029
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
3975
4030
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
3976
4031
|
} & {
|
|
@@ -3991,6 +4046,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
3991
4046
|
clusterTree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
|
|
3992
4047
|
treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
3993
4048
|
lineZoneHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
4049
|
+
subtreeFilter: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>;
|
|
3994
4050
|
} & {
|
|
3995
4051
|
type: import("@jbrowse/mobx-state-tree").ISimpleType<"LinearVariantMatrixDisplay">;
|
|
3996
4052
|
lineZoneHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const LinearVariantMatrixRenderer: import("
|
|
1
|
+
declare const LinearVariantMatrixRenderer: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
2
2
|
export default LinearVariantMatrixRenderer;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const configSchema: import("
|
|
1
|
+
declare const configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
2
2
|
export default configSchema;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const PlinkLDAdapter: import("
|
|
1
|
+
declare const PlinkLDAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
ldLocation: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: {
|
|
@@ -6,5 +6,5 @@ declare const PlinkLDAdapter: import("node_modules/@jbrowse/core/src/configurati
|
|
|
6
6
|
locationType: string;
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
-
}, import("
|
|
9
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
10
10
|
export default PlinkLDAdapter;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const PlinkLDTabixAdapter: import("
|
|
1
|
+
declare const PlinkLDTabixAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
ldLocation: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: {
|
|
@@ -6,7 +6,7 @@ declare const PlinkLDTabixAdapter: import("node_modules/@jbrowse/core/src/config
|
|
|
6
6
|
locationType: string;
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
-
index: import("
|
|
9
|
+
index: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
10
10
|
indexType: {
|
|
11
11
|
model: import("@jbrowse/mobx-state-tree").ISimpleType<string>;
|
|
12
12
|
type: string;
|
|
@@ -19,6 +19,6 @@ declare const PlinkLDTabixAdapter: import("node_modules/@jbrowse/core/src/config
|
|
|
19
19
|
locationType: string;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
-
}, import("
|
|
23
|
-
}, import("
|
|
22
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
23
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
24
24
|
export default PlinkLDTabixAdapter;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const SplitVcfTabixAdapter: import("
|
|
1
|
+
declare const SplitVcfTabixAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
vcfGzLocationMap: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: {};
|
|
@@ -19,5 +19,5 @@ declare const SplitVcfTabixAdapter: import("node_modules/@jbrowse/core/src/confi
|
|
|
19
19
|
locationType: string;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
-
}, import("
|
|
22
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
23
23
|
export default SplitVcfTabixAdapter;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const configSchema: import("
|
|
1
|
+
declare const configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
strokeColor: {
|
|
3
3
|
type: string;
|
|
4
4
|
description: string;
|
|
@@ -17,5 +17,5 @@ declare const configSchema: import("node_modules/@jbrowse/core/src/configuration
|
|
|
17
17
|
defaultValue: string;
|
|
18
18
|
contextVariable: string[];
|
|
19
19
|
};
|
|
20
|
-
}, import("
|
|
20
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
21
21
|
export default configSchema;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const configSchema: import("
|
|
1
|
+
export declare const configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
@@ -33,7 +33,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
33
33
|
readonly hasExon: boolean | undefined;
|
|
34
34
|
readonly hasExonOrCDS: boolean | undefined;
|
|
35
35
|
} & {
|
|
36
|
-
|
|
36
|
+
afterCreate(): void;
|
|
37
37
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
38
38
|
descriptions: import("@jbrowse/mobx-state-tree").IType<Record<string, unknown> | undefined, Record<string, unknown> | undefined, Record<string, unknown> | undefined>;
|
|
39
39
|
} & {
|
|
@@ -84,7 +84,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
84
84
|
readonly hasExon: boolean | undefined;
|
|
85
85
|
readonly hasExonOrCDS: boolean | undefined;
|
|
86
86
|
} & {
|
|
87
|
-
|
|
87
|
+
afterCreate(): void;
|
|
88
88
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
89
89
|
descriptions: import("@jbrowse/mobx-state-tree").IType<Record<string, unknown> | undefined, Record<string, unknown> | undefined, Record<string, unknown> | undefined>;
|
|
90
90
|
}>> & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & import("@jbrowse/mobx-state-tree")._NotCustomized, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
export default function VariantTrackF(pluginManager: PluginManager): import("
|
|
2
|
+
export default function VariantTrackF(pluginManager: PluginManager): import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3
3
|
name: {
|
|
4
4
|
description: string;
|
|
5
5
|
type: string;
|
|
@@ -31,7 +31,7 @@ export default function VariantTrackF(pluginManager: PluginManager): import("nod
|
|
|
31
31
|
defaultValue: string;
|
|
32
32
|
};
|
|
33
33
|
adapter: import("@jbrowse/mobx-state-tree").IAnyModelType;
|
|
34
|
-
textSearching: import("
|
|
34
|
+
textSearching: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
35
35
|
indexingAttributes: {
|
|
36
36
|
type: string;
|
|
37
37
|
description: string;
|
|
@@ -43,9 +43,9 @@ export default function VariantTrackF(pluginManager: PluginManager): import("nod
|
|
|
43
43
|
defaultValue: string[];
|
|
44
44
|
};
|
|
45
45
|
textSearchAdapter: import("@jbrowse/mobx-state-tree").IAnyModelType;
|
|
46
|
-
}, import("
|
|
46
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
47
47
|
displays: import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IAnyModelType>;
|
|
48
|
-
formatDetails: import("
|
|
48
|
+
formatDetails: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
49
49
|
feature: {
|
|
50
50
|
type: string;
|
|
51
51
|
description: string;
|
|
@@ -68,8 +68,8 @@ export default function VariantTrackF(pluginManager: PluginManager): import("nod
|
|
|
68
68
|
defaultValue: number;
|
|
69
69
|
description: string;
|
|
70
70
|
};
|
|
71
|
-
}, import("
|
|
72
|
-
formatAbout: import("
|
|
71
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
72
|
+
formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
73
73
|
config: {
|
|
74
74
|
type: string;
|
|
75
75
|
description: string;
|
|
@@ -80,5 +80,5 @@ export default function VariantTrackF(pluginManager: PluginManager): import("nod
|
|
|
80
80
|
type: string;
|
|
81
81
|
defaultValue: boolean;
|
|
82
82
|
};
|
|
83
|
-
}, import("
|
|
84
|
-
}, import("
|
|
83
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
84
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "trackId">>, undefined>>;
|