@jbrowse/plugin-linear-comparative-view 2.11.1 → 2.11.2
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/dist/LGVSyntenyDisplay/configSchemaF.d.ts +5 -0
- package/dist/LGVSyntenyDisplay/model.d.ts +7 -3
- package/dist/LinearComparativeView/model.d.ts +1 -0
- package/dist/LinearSyntenyView/model.d.ts +3 -0
- package/esm/LGVSyntenyDisplay/configSchemaF.d.ts +5 -0
- package/esm/LGVSyntenyDisplay/model.d.ts +7 -3
- package/esm/LinearComparativeView/model.d.ts +1 -0
- package/esm/LinearSyntenyView/model.d.ts +3 -0
- package/package.json +2 -2
|
@@ -48,5 +48,10 @@ declare function configSchemaF(pluginManager: PluginManager): import("@jbrowse/c
|
|
|
48
48
|
defaultValue: string;
|
|
49
49
|
contextVariable: string[];
|
|
50
50
|
};
|
|
51
|
+
jexlFilters: {
|
|
52
|
+
type: string;
|
|
53
|
+
description: string;
|
|
54
|
+
defaultValue: never[];
|
|
55
|
+
};
|
|
51
56
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>, undefined>>, undefined>>;
|
|
52
57
|
export default configSchemaF;
|
|
@@ -85,9 +85,7 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
85
85
|
height: {
|
|
86
86
|
type: string;
|
|
87
87
|
defaultValue: number;
|
|
88
|
-
description: string;
|
|
89
|
-
* #method
|
|
90
|
-
*/
|
|
88
|
+
description: string;
|
|
91
89
|
};
|
|
92
90
|
mouseover: {
|
|
93
91
|
type: string;
|
|
@@ -95,6 +93,11 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
95
93
|
defaultValue: string;
|
|
96
94
|
contextVariable: string[];
|
|
97
95
|
};
|
|
96
|
+
jexlFilters: {
|
|
97
|
+
type: string;
|
|
98
|
+
description: string;
|
|
99
|
+
defaultValue: never[];
|
|
100
|
+
};
|
|
98
101
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
99
102
|
} & {
|
|
100
103
|
configuration: AnyConfigurationSchemaType;
|
|
@@ -240,6 +243,7 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
240
243
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
241
244
|
deleteBlock(key: string): void;
|
|
242
245
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
246
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
243
247
|
clearFeatureSelection(): void;
|
|
244
248
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
245
249
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -140,6 +140,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
|
|
|
140
140
|
getSelectedRegions(leftOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined, rightOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined): {
|
|
141
141
|
start: number;
|
|
142
142
|
end: number;
|
|
143
|
+
type: string;
|
|
143
144
|
regionNumber?: number | undefined;
|
|
144
145
|
reversed?: boolean | undefined;
|
|
145
146
|
refName: string;
|
|
@@ -159,6 +159,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
159
159
|
getSelectedRegions(leftOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined, rightOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined): {
|
|
160
160
|
start: number;
|
|
161
161
|
end: number;
|
|
162
|
+
type: string;
|
|
162
163
|
regionNumber?: number | undefined;
|
|
163
164
|
reversed?: boolean | undefined;
|
|
164
165
|
refName: string;
|
|
@@ -600,6 +601,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
600
601
|
getSelectedRegions(leftOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined, rightOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined): {
|
|
601
602
|
start: number;
|
|
602
603
|
end: number;
|
|
604
|
+
type: string;
|
|
603
605
|
regionNumber?: number | undefined;
|
|
604
606
|
reversed?: boolean | undefined;
|
|
605
607
|
refName: string;
|
|
@@ -935,6 +937,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
935
937
|
getSelectedRegions(leftOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined, rightOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined): {
|
|
936
938
|
start: number;
|
|
937
939
|
end: number;
|
|
940
|
+
type: string;
|
|
938
941
|
regionNumber?: number | undefined;
|
|
939
942
|
reversed?: boolean | undefined;
|
|
940
943
|
refName: string;
|
|
@@ -48,5 +48,10 @@ declare function configSchemaF(pluginManager: PluginManager): import("@jbrowse/c
|
|
|
48
48
|
defaultValue: string;
|
|
49
49
|
contextVariable: string[];
|
|
50
50
|
};
|
|
51
|
+
jexlFilters: {
|
|
52
|
+
type: string;
|
|
53
|
+
description: string;
|
|
54
|
+
defaultValue: never[];
|
|
55
|
+
};
|
|
51
56
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>, undefined>>, undefined>>;
|
|
52
57
|
export default configSchemaF;
|
|
@@ -85,9 +85,7 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
85
85
|
height: {
|
|
86
86
|
type: string;
|
|
87
87
|
defaultValue: number;
|
|
88
|
-
description: string;
|
|
89
|
-
* #method
|
|
90
|
-
*/
|
|
88
|
+
description: string;
|
|
91
89
|
};
|
|
92
90
|
mouseover: {
|
|
93
91
|
type: string;
|
|
@@ -95,6 +93,11 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
95
93
|
defaultValue: string;
|
|
96
94
|
contextVariable: string[];
|
|
97
95
|
};
|
|
96
|
+
jexlFilters: {
|
|
97
|
+
type: string;
|
|
98
|
+
description: string;
|
|
99
|
+
defaultValue: never[];
|
|
100
|
+
};
|
|
98
101
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
99
102
|
} & {
|
|
100
103
|
configuration: AnyConfigurationSchemaType;
|
|
@@ -240,6 +243,7 @@ declare function stateModelFactory(schema: AnyConfigurationSchemaType): import("
|
|
|
240
243
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
241
244
|
deleteBlock(key: string): void;
|
|
242
245
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
246
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
243
247
|
clearFeatureSelection(): void;
|
|
244
248
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
245
249
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -140,6 +140,7 @@ declare function stateModelFactory(pluginManager: PluginManager): import("mobx-s
|
|
|
140
140
|
getSelectedRegions(leftOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined, rightOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined): {
|
|
141
141
|
start: number;
|
|
142
142
|
end: number;
|
|
143
|
+
type: string;
|
|
143
144
|
regionNumber?: number | undefined;
|
|
144
145
|
reversed?: boolean | undefined;
|
|
145
146
|
refName: string;
|
|
@@ -159,6 +159,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
159
159
|
getSelectedRegions(leftOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined, rightOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined): {
|
|
160
160
|
start: number;
|
|
161
161
|
end: number;
|
|
162
|
+
type: string;
|
|
162
163
|
regionNumber?: number | undefined;
|
|
163
164
|
reversed?: boolean | undefined;
|
|
164
165
|
refName: string;
|
|
@@ -600,6 +601,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
600
601
|
getSelectedRegions(leftOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined, rightOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined): {
|
|
601
602
|
start: number;
|
|
602
603
|
end: number;
|
|
604
|
+
type: string;
|
|
603
605
|
regionNumber?: number | undefined;
|
|
604
606
|
reversed?: boolean | undefined;
|
|
605
607
|
refName: string;
|
|
@@ -935,6 +937,7 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
935
937
|
getSelectedRegions(leftOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined, rightOffset?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").BpOffset | undefined): {
|
|
936
938
|
start: number;
|
|
937
939
|
end: number;
|
|
940
|
+
type: string;
|
|
938
941
|
regionNumber?: number | undefined;
|
|
939
942
|
reversed?: boolean | undefined;
|
|
940
943
|
refName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-linear-comparative-view",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.2",
|
|
4
4
|
"description": "JBrowse 2 linear comparative view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "511048cb6965f0bf624c96de244e7fd47fce17d6"
|
|
65
65
|
}
|