@jbrowse/plugin-breakpoint-split-view 3.2.0 → 3.4.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.
|
@@ -174,12 +174,13 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
174
174
|
setCoarseDynamicBlocks(blocks: import("@jbrowse/core/util/blockTypes").BlockSet): void;
|
|
175
175
|
} & {
|
|
176
176
|
moveTo(start?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").BpOffset, end?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").BpOffset): void;
|
|
177
|
-
navToLocString(input: string, optAssemblyName?: string): Promise<void>;
|
|
177
|
+
navToLocString(input: string, optAssemblyName?: string, grow?: number): Promise<void>;
|
|
178
178
|
navToSearchString({ input, assembly, }: {
|
|
179
179
|
input: string;
|
|
180
180
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
181
181
|
}): Promise<void>;
|
|
182
|
-
|
|
182
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string, grow?: number): Promise<void>;
|
|
183
|
+
navToLocations(regions: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string, grow?: number): Promise<void>;
|
|
183
184
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
184
185
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
185
186
|
} & {
|
|
@@ -247,9 +248,9 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
247
248
|
displayName: string | undefined;
|
|
248
249
|
tracks: any[];
|
|
249
250
|
minimized: boolean;
|
|
250
|
-
displayedRegions: import("@jbrowse/core/util").Region[];
|
|
251
251
|
offsetPx: number;
|
|
252
252
|
bpPerPx: number;
|
|
253
|
+
displayedRegions: import("@jbrowse/core/util").Region[];
|
|
253
254
|
hideHeader: boolean;
|
|
254
255
|
hideHeaderOverview: boolean;
|
|
255
256
|
hideNoTracksActive: boolean;
|
|
@@ -174,12 +174,13 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
174
174
|
setCoarseDynamicBlocks(blocks: import("@jbrowse/core/util/blockTypes").BlockSet): void;
|
|
175
175
|
} & {
|
|
176
176
|
moveTo(start?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").BpOffset, end?: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").BpOffset): void;
|
|
177
|
-
navToLocString(input: string, optAssemblyName?: string): Promise<void>;
|
|
177
|
+
navToLocString(input: string, optAssemblyName?: string, grow?: number): Promise<void>;
|
|
178
178
|
navToSearchString({ input, assembly, }: {
|
|
179
179
|
input: string;
|
|
180
180
|
assembly: import("@jbrowse/core/assemblyManager/assembly").Assembly;
|
|
181
181
|
}): Promise<void>;
|
|
182
|
-
|
|
182
|
+
navToLocation(parsedLocString: import("@jbrowse/core/util").ParsedLocString, assemblyName?: string, grow?: number): Promise<void>;
|
|
183
|
+
navToLocations(regions: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string, grow?: number): Promise<void>;
|
|
183
184
|
navTo(query: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation): void;
|
|
184
185
|
navToMultiple(locations: import("@jbrowse/plugin-linear-genome-view/src/LinearGenomeView/types").NavLocation[]): void;
|
|
185
186
|
} & {
|
|
@@ -247,9 +248,9 @@ export default function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
247
248
|
displayName: string | undefined;
|
|
248
249
|
tracks: any[];
|
|
249
250
|
minimized: boolean;
|
|
250
|
-
displayedRegions: import("@jbrowse/core/util").Region[];
|
|
251
251
|
offsetPx: number;
|
|
252
252
|
bpPerPx: number;
|
|
253
|
+
displayedRegions: import("@jbrowse/core/util").Region[];
|
|
253
254
|
hideHeader: boolean;
|
|
254
255
|
hideHeaderOverview: boolean;
|
|
255
256
|
hideNoTracksActive: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-breakpoint-split-view",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "JBrowse 2 breakpoint detail split view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@gmod/vcf": "^6.0.8",
|
|
40
|
-
"@jbrowse/core": "^3.
|
|
41
|
-
"@jbrowse/plugin-linear-genome-view": "^3.
|
|
42
|
-
"@mui/icons-material": "^
|
|
43
|
-
"@mui/material": "^
|
|
40
|
+
"@jbrowse/core": "^3.4.0",
|
|
41
|
+
"@jbrowse/plugin-linear-genome-view": "^3.4.0",
|
|
42
|
+
"@mui/icons-material": "^7.0.0",
|
|
43
|
+
"@mui/material": "^7.0.0",
|
|
44
44
|
"@types/file-saver": "^2.0.1",
|
|
45
45
|
"file-saver": "^2.0.0",
|
|
46
46
|
"mobx": "^6.0.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "a9f1ac35fc2dd810bae92cdaf1fc19995bee4413"
|
|
62
62
|
}
|