@jbrowse/plugin-sequence 1.6.7 → 1.6.8
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/IndexedFastaAdapter/IndexedFastaAdapter.d.ts +0 -5
- package/dist/LinearReferenceSequenceDisplay/model.d.ts +8 -8
- package/dist/plugin-sequence.cjs.development.js +0 -6
- package/dist/plugin-sequence.cjs.development.js.map +1 -1
- package/dist/plugin-sequence.cjs.production.min.js.map +1 -1
- package/dist/plugin-sequence.esm.js +0 -6
- package/dist/plugin-sequence.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/IndexedFastaAdapter/IndexedFastaAdapter.ts +0 -5
|
@@ -15,11 +15,6 @@ export default class extends BaseSequenceAdapter {
|
|
|
15
15
|
start: number;
|
|
16
16
|
end: number;
|
|
17
17
|
}[]>;
|
|
18
|
-
/**
|
|
19
|
-
* Fetch features for a certain region
|
|
20
|
-
* @param param -
|
|
21
|
-
* @returns Observable of Feature objects in the region
|
|
22
|
-
*/
|
|
23
18
|
getFeatures(region: NoAssemblyRegion, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
24
19
|
/**
|
|
25
20
|
* called to provide a hint that data tied to a certain region
|
|
@@ -25,7 +25,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
25
25
|
renderInProgress: AbortController | undefined;
|
|
26
26
|
filled: boolean;
|
|
27
27
|
reactElement: import("react").ReactElement<any, string | ((props: any) => import("react").ReactElement<any, any> | null) | (new (props: any) => import("react").Component<any, any, any>)> | undefined;
|
|
28
|
-
features: Map<string, import("@jbrowse/core/util
|
|
28
|
+
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
29
29
|
layout: any;
|
|
30
30
|
status: string;
|
|
31
31
|
error: unknown;
|
|
@@ -43,7 +43,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
43
43
|
setMessage(messageText: string): void;
|
|
44
44
|
setRendered(props: {
|
|
45
45
|
reactElement: import("react").ReactElement<any, string | ((props: any) => import("react").ReactElement<any, any> | null) | (new (props: any) => import("react").Component<any, any, any>)>;
|
|
46
|
-
features: Map<string, import("@jbrowse/core/util
|
|
46
|
+
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
47
47
|
layout: any;
|
|
48
48
|
maxHeightReached: boolean;
|
|
49
49
|
renderProps: any;
|
|
@@ -117,7 +117,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
117
117
|
currBpPerPx: number;
|
|
118
118
|
message: string;
|
|
119
119
|
featureIdUnderMouse: string | undefined;
|
|
120
|
-
contextMenuFeature: import("@jbrowse/core/util
|
|
120
|
+
contextMenuFeature: import("@jbrowse/core/util").Feature | undefined;
|
|
121
121
|
scrollTop: number;
|
|
122
122
|
estimatedRegionStatsP: Promise<import("@jbrowse/core/data_adapters/BaseAdapter").Stats> | undefined;
|
|
123
123
|
estimatedRegionStats: import("@jbrowse/core/data_adapters/BaseAdapter").Stats | undefined;
|
|
@@ -130,8 +130,8 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
130
130
|
readonly selectedFeatureId: string | undefined;
|
|
131
131
|
readonly DisplayMessageComponent: import("react").FC<any> | undefined;
|
|
132
132
|
} & {
|
|
133
|
-
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util
|
|
134
|
-
readonly featureUnderMouse: import("@jbrowse/core/util
|
|
133
|
+
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
134
|
+
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
135
135
|
getFeatureOverlapping(blockKey: string, x: number, y: number): any;
|
|
136
136
|
getFeatureByID(blockKey: string, id: string): [number, number, number, number] | undefined;
|
|
137
137
|
searchFeatureByID(id: string): [number, number, number, number] | undefined;
|
|
@@ -158,11 +158,11 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
158
158
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
159
159
|
setCurrBpPerPx(n: number): void;
|
|
160
160
|
deleteBlock(key: string): void;
|
|
161
|
-
selectFeature(feature: import("@jbrowse/core/util
|
|
161
|
+
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
162
162
|
clearFeatureSelection(): void;
|
|
163
163
|
setFeatureIdUnderMouse(feature: string | undefined): void;
|
|
164
164
|
reload(): void;
|
|
165
|
-
setContextMenuFeature(feature?: import("@jbrowse/core/util
|
|
165
|
+
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
166
166
|
} & {
|
|
167
167
|
readonly regionTooLarge: boolean;
|
|
168
168
|
readonly regionTooLargeReason: string;
|
|
@@ -180,7 +180,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
|
|
|
180
180
|
}[];
|
|
181
181
|
renderProps(): any;
|
|
182
182
|
} & {
|
|
183
|
-
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view/
|
|
183
|
+
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView").ExportSvgOptions & {
|
|
184
184
|
overrideHeight: number;
|
|
185
185
|
}): Promise<JSX.Element>;
|
|
186
186
|
} & {
|
|
@@ -2430,12 +2430,6 @@ var _default$1 = /*#__PURE__*/function (_BaseSequenceAdapter) {
|
|
|
2430
2430
|
|
|
2431
2431
|
return getRegions;
|
|
2432
2432
|
}()
|
|
2433
|
-
/**
|
|
2434
|
-
* Fetch features for a certain region
|
|
2435
|
-
* @param param -
|
|
2436
|
-
* @returns Observable of Feature objects in the region
|
|
2437
|
-
*/
|
|
2438
|
-
|
|
2439
2433
|
}, {
|
|
2440
2434
|
key: "getFeatures",
|
|
2441
2435
|
value: function getFeatures(region, opts) {
|