@jbrowse/plugin-sequence 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/BgzipFastaAdapter/configSchema.d.ts +2 -2
- package/esm/ChromSizesAdapter/configSchema.d.ts +2 -2
- package/esm/DivSequenceRenderer/configSchema.d.ts +2 -2
- package/esm/IndexedFastaAdapter/configSchema.d.ts +2 -2
- package/esm/LinearReferenceSequenceDisplay/configSchema.d.ts +4 -4
- package/esm/LinearReferenceSequenceDisplay/model.d.ts +22 -10
- package/esm/ReferenceSequenceTrack/configSchema.d.ts +4 -4
- package/esm/SequenceSearchAdapter/configSchema.d.ts +2 -2
- package/esm/TwoBitAdapter/configSchema.d.ts +2 -2
- package/esm/UnindexedFastaAdapter/configSchema.d.ts +2 -2
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const BgzipFastaAdapter: import("
|
|
1
|
+
declare const BgzipFastaAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
fastaLocation: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: {
|
|
@@ -28,5 +28,5 @@ declare const BgzipFastaAdapter: import("node_modules/@jbrowse/core/src/configur
|
|
|
28
28
|
locationType: string;
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
|
-
}, import("
|
|
31
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
32
32
|
export default BgzipFastaAdapter;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const ChromSizesAdapter: import("
|
|
1
|
+
declare const ChromSizesAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
chromSizesLocation: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: {
|
|
@@ -6,5 +6,5 @@ declare const ChromSizesAdapter: import("node_modules/@jbrowse/core/src/configur
|
|
|
6
6
|
locationType: string;
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
-
}, import("
|
|
9
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
10
10
|
export default ChromSizesAdapter;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare const DivSequenceRenderer: import("
|
|
1
|
+
declare const DivSequenceRenderer: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
height: {
|
|
3
3
|
type: string;
|
|
4
4
|
description: string;
|
|
5
5
|
defaultValue: number;
|
|
6
6
|
};
|
|
7
|
-
}, import("
|
|
7
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
8
8
|
export default DivSequenceRenderer;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const IndexedFastaAdapter: import("
|
|
1
|
+
declare const IndexedFastaAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
fastaLocation: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: {
|
|
@@ -21,5 +21,5 @@ declare const IndexedFastaAdapter: import("node_modules/@jbrowse/core/src/config
|
|
|
21
21
|
locationType: string;
|
|
22
22
|
};
|
|
23
23
|
};
|
|
24
|
-
}, import("
|
|
24
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
25
25
|
export default IndexedFastaAdapter;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare const configSchema: import("
|
|
2
|
-
renderer: import("
|
|
1
|
+
export declare const configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
|
+
renderer: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3
3
|
height: {
|
|
4
4
|
type: string;
|
|
5
5
|
description: string;
|
|
6
6
|
defaultValue: number;
|
|
7
7
|
};
|
|
8
|
-
}, import("
|
|
9
|
-
}, import("
|
|
8
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
9
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
@@ -33,6 +33,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
33
33
|
statusMessage?: string;
|
|
34
34
|
reactElement?: React.ReactElement;
|
|
35
35
|
isRenderingPending?: boolean;
|
|
36
|
+
displayHeight?: number;
|
|
36
37
|
};
|
|
37
38
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
38
39
|
renderProps: any;
|
|
@@ -51,10 +52,11 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
51
52
|
beforeDestroy(): void;
|
|
52
53
|
} & {
|
|
53
54
|
readonly statusMessage: any;
|
|
55
|
+
readonly displayHeight: number | undefined;
|
|
54
56
|
} & {
|
|
55
57
|
afterAttach(): void;
|
|
56
58
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
57
|
-
configuration: import("
|
|
59
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
58
60
|
maxFeatureScreenDensity: {
|
|
59
61
|
type: string;
|
|
60
62
|
description: string;
|
|
@@ -81,7 +83,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
81
83
|
description: string;
|
|
82
84
|
defaultValue: never[];
|
|
83
85
|
};
|
|
84
|
-
}, import("
|
|
86
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
85
87
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
86
88
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
87
89
|
} & {
|
|
@@ -378,6 +380,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
378
380
|
statusMessage?: string;
|
|
379
381
|
reactElement?: React.ReactElement;
|
|
380
382
|
isRenderingPending?: boolean;
|
|
383
|
+
displayHeight?: number;
|
|
381
384
|
};
|
|
382
385
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
383
386
|
renderProps: any;
|
|
@@ -396,6 +399,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
396
399
|
beforeDestroy(): void;
|
|
397
400
|
} & {
|
|
398
401
|
readonly statusMessage: any;
|
|
402
|
+
readonly displayHeight: number | undefined;
|
|
399
403
|
} & {
|
|
400
404
|
afterAttach(): void;
|
|
401
405
|
}, 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<{
|
|
@@ -422,6 +426,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
422
426
|
statusMessage?: string;
|
|
423
427
|
reactElement?: React.ReactElement;
|
|
424
428
|
isRenderingPending?: boolean;
|
|
429
|
+
displayHeight?: number;
|
|
425
430
|
};
|
|
426
431
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
427
432
|
renderProps: any;
|
|
@@ -440,6 +445,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
440
445
|
beforeDestroy(): void;
|
|
441
446
|
} & {
|
|
442
447
|
readonly statusMessage: any;
|
|
448
|
+
readonly displayHeight: number | undefined;
|
|
443
449
|
} & {
|
|
444
450
|
afterAttach(): void;
|
|
445
451
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
|
|
@@ -453,7 +459,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
453
459
|
[x: string]: any;
|
|
454
460
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
455
461
|
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
|
|
456
|
-
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("
|
|
462
|
+
} & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
457
463
|
maxFeatureScreenDensity: {
|
|
458
464
|
type: string;
|
|
459
465
|
description: string;
|
|
@@ -480,7 +486,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
480
486
|
description: string;
|
|
481
487
|
defaultValue: never[];
|
|
482
488
|
};
|
|
483
|
-
}, import("
|
|
489
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
|
|
484
490
|
showLegend: boolean | undefined;
|
|
485
491
|
showTooltips: boolean | undefined;
|
|
486
492
|
} & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -770,6 +776,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
770
776
|
statusMessage?: string;
|
|
771
777
|
reactElement?: React.ReactElement;
|
|
772
778
|
isRenderingPending?: boolean;
|
|
779
|
+
displayHeight?: number;
|
|
773
780
|
};
|
|
774
781
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
775
782
|
renderProps: any;
|
|
@@ -788,10 +795,11 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
788
795
|
beforeDestroy(): void;
|
|
789
796
|
} & {
|
|
790
797
|
readonly statusMessage: any;
|
|
798
|
+
readonly displayHeight: number | undefined;
|
|
791
799
|
} & {
|
|
792
800
|
afterAttach(): void;
|
|
793
801
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
794
|
-
configuration: import("
|
|
802
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
795
803
|
maxFeatureScreenDensity: {
|
|
796
804
|
type: string;
|
|
797
805
|
description: string;
|
|
@@ -818,7 +826,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
818
826
|
description: string;
|
|
819
827
|
defaultValue: never[];
|
|
820
828
|
};
|
|
821
|
-
}, import("
|
|
829
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
822
830
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
823
831
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
824
832
|
}, {
|
|
@@ -1145,6 +1153,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
1145
1153
|
statusMessage?: string;
|
|
1146
1154
|
reactElement?: React.ReactElement;
|
|
1147
1155
|
isRenderingPending?: boolean;
|
|
1156
|
+
displayHeight?: number;
|
|
1148
1157
|
};
|
|
1149
1158
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1150
1159
|
renderProps: any;
|
|
@@ -1163,10 +1172,11 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
1163
1172
|
beforeDestroy(): void;
|
|
1164
1173
|
} & {
|
|
1165
1174
|
readonly statusMessage: any;
|
|
1175
|
+
readonly displayHeight: number | undefined;
|
|
1166
1176
|
} & {
|
|
1167
1177
|
afterAttach(): void;
|
|
1168
1178
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
1169
|
-
configuration: import("
|
|
1179
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
1170
1180
|
maxFeatureScreenDensity: {
|
|
1171
1181
|
type: string;
|
|
1172
1182
|
description: string;
|
|
@@ -1193,7 +1203,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
1193
1203
|
description: string;
|
|
1194
1204
|
defaultValue: never[];
|
|
1195
1205
|
};
|
|
1196
|
-
}, import("
|
|
1206
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
1197
1207
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
1198
1208
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
1199
1209
|
}>> & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree").ModelSnapshotType<{
|
|
@@ -1230,6 +1240,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
1230
1240
|
statusMessage?: string;
|
|
1231
1241
|
reactElement?: React.ReactElement;
|
|
1232
1242
|
isRenderingPending?: boolean;
|
|
1243
|
+
displayHeight?: number;
|
|
1233
1244
|
};
|
|
1234
1245
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
1235
1246
|
renderProps: any;
|
|
@@ -1248,10 +1259,11 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
1248
1259
|
beforeDestroy(): void;
|
|
1249
1260
|
} & {
|
|
1250
1261
|
readonly statusMessage: any;
|
|
1262
|
+
readonly displayHeight: number | undefined;
|
|
1251
1263
|
} & {
|
|
1252
1264
|
afterAttach(): void;
|
|
1253
1265
|
}, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
|
|
1254
|
-
configuration: import("
|
|
1266
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
1255
1267
|
maxFeatureScreenDensity: {
|
|
1256
1268
|
type: string;
|
|
1257
1269
|
description: string;
|
|
@@ -1278,7 +1290,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
1278
1290
|
description: string;
|
|
1279
1291
|
defaultValue: never[];
|
|
1280
1292
|
};
|
|
1281
|
-
}, import("
|
|
1293
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
1282
1294
|
showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
1283
1295
|
showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
|
|
1284
1296
|
} & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
export declare function createReferenceSeqTrackConfig(pluginManager: PluginManager): import("
|
|
2
|
+
export declare function createReferenceSeqTrackConfig(pluginManager: PluginManager): import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3
3
|
adapter: import("@jbrowse/mobx-state-tree").IAnyModelType;
|
|
4
4
|
displays: import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").IAnyModelType>;
|
|
5
5
|
name: {
|
|
@@ -22,7 +22,7 @@ export declare function createReferenceSeqTrackConfig(pluginManager: PluginManag
|
|
|
22
22
|
description: string;
|
|
23
23
|
defaultValue: {};
|
|
24
24
|
};
|
|
25
|
-
formatAbout: import("
|
|
25
|
+
formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
26
26
|
config: {
|
|
27
27
|
type: string;
|
|
28
28
|
description: string;
|
|
@@ -33,5 +33,5 @@ export declare function createReferenceSeqTrackConfig(pluginManager: PluginManag
|
|
|
33
33
|
type: string;
|
|
34
34
|
defaultValue: boolean;
|
|
35
35
|
};
|
|
36
|
-
}, import("
|
|
37
|
-
}, import("
|
|
36
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
37
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "trackId">>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const configSchema: import("
|
|
1
|
+
declare const configSchema: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
search: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: string;
|
|
@@ -20,5 +20,5 @@ declare const configSchema: import("node_modules/@jbrowse/core/src/configuration
|
|
|
20
20
|
type: string;
|
|
21
21
|
defaultValue: boolean;
|
|
22
22
|
};
|
|
23
|
-
}, import("
|
|
23
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
24
24
|
export default configSchema;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const TwoBitAdapter: import("
|
|
1
|
+
declare const TwoBitAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
twoBitLocation: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: {
|
|
@@ -14,5 +14,5 @@ declare const TwoBitAdapter: import("node_modules/@jbrowse/core/src/configuratio
|
|
|
14
14
|
};
|
|
15
15
|
description: string;
|
|
16
16
|
};
|
|
17
|
-
}, import("
|
|
17
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
18
18
|
export default TwoBitAdapter;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const UnindexedFastaAdapter: import("
|
|
1
|
+
declare const UnindexedFastaAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
2
|
rewriteRefNames: {
|
|
3
3
|
type: string;
|
|
4
4
|
defaultValue: string;
|
|
@@ -19,5 +19,5 @@ declare const UnindexedFastaAdapter: import("node_modules/@jbrowse/core/src/conf
|
|
|
19
19
|
locationType: string;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
-
}, import("
|
|
22
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
23
23
|
export default UnindexedFastaAdapter;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-sequence",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "JBrowse 2 sequence adapters, tracks, etc.",
|
|
6
6
|
"keywords": [
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"@gmod/indexedfasta": "^5.0.2",
|
|
26
26
|
"@gmod/twobit": "^6.0.1",
|
|
27
27
|
"@jbrowse/mobx-state-tree": "^5.5.0",
|
|
28
|
-
"@mui/material": "^7.3.
|
|
28
|
+
"@mui/material": "^7.3.8",
|
|
29
29
|
"mobx": "^6.15.0",
|
|
30
30
|
"mobx-react": "^9.2.1",
|
|
31
31
|
"rxjs": "^7.8.2",
|
|
32
|
-
"@jbrowse/core": "^4.1.
|
|
33
|
-
"@jbrowse/plugin-linear-genome-view": "^4.1.
|
|
32
|
+
"@jbrowse/core": "^4.1.5",
|
|
33
|
+
"@jbrowse/plugin-linear-genome-view": "^4.1.5"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": ">=18.0.0"
|