@jbrowse/plugin-sv-inspector 3.6.5 → 3.7.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.
|
@@ -470,6 +470,7 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
470
470
|
readonly refNames: string[] | undefined;
|
|
471
471
|
} & {
|
|
472
472
|
getCanonicalRefName(refName: string): string | undefined;
|
|
473
|
+
getCanonicalRefName2(asmName: string): string;
|
|
473
474
|
getRefNameColor(refName: string): string | undefined;
|
|
474
475
|
isValidRefName(refName: string): boolean;
|
|
475
476
|
} & {
|
|
@@ -536,6 +537,7 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
536
537
|
readonly refNames: string[] | undefined;
|
|
537
538
|
} & {
|
|
538
539
|
getCanonicalRefName(refName: string): string | undefined;
|
|
540
|
+
getCanonicalRefName2(asmName: string): string;
|
|
539
541
|
getRefNameColor(refName: string): string | undefined;
|
|
540
542
|
isValidRefName(refName: string): boolean;
|
|
541
543
|
} & {
|
|
@@ -116,7 +116,7 @@ function SvInspectorViewF(pluginManager) {
|
|
|
116
116
|
self.circularView.setDisplayedRegions(regions);
|
|
117
117
|
},
|
|
118
118
|
setOnlyDisplayRelevantRegionsInCircularView(val) {
|
|
119
|
-
self.onlyDisplayRelevantRegionsInCircularView =
|
|
119
|
+
self.onlyDisplayRelevantRegionsInCircularView = val;
|
|
120
120
|
},
|
|
121
121
|
}))
|
|
122
122
|
.views(self => ({
|
|
@@ -470,6 +470,7 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
470
470
|
readonly refNames: string[] | undefined;
|
|
471
471
|
} & {
|
|
472
472
|
getCanonicalRefName(refName: string): string | undefined;
|
|
473
|
+
getCanonicalRefName2(asmName: string): string;
|
|
473
474
|
getRefNameColor(refName: string): string | undefined;
|
|
474
475
|
isValidRefName(refName: string): boolean;
|
|
475
476
|
} & {
|
|
@@ -536,6 +537,7 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
536
537
|
readonly refNames: string[] | undefined;
|
|
537
538
|
} & {
|
|
538
539
|
getCanonicalRefName(refName: string): string | undefined;
|
|
540
|
+
getCanonicalRefName2(asmName: string): string;
|
|
539
541
|
getRefNameColor(refName: string): string | undefined;
|
|
540
542
|
isValidRefName(refName: string): boolean;
|
|
541
543
|
} & {
|
|
@@ -111,7 +111,7 @@ function SvInspectorViewF(pluginManager) {
|
|
|
111
111
|
self.circularView.setDisplayedRegions(regions);
|
|
112
112
|
},
|
|
113
113
|
setOnlyDisplayRelevantRegionsInCircularView(val) {
|
|
114
|
-
self.onlyDisplayRelevantRegionsInCircularView =
|
|
114
|
+
self.onlyDisplayRelevantRegionsInCircularView = val;
|
|
115
115
|
},
|
|
116
116
|
}))
|
|
117
117
|
.views(self => ({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-sv-inspector",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"description": "JBrowse 2 SV inspector view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jbrowse/core": "^3.
|
|
40
|
-
"@jbrowse/plugin-circular-view": "^3.
|
|
41
|
-
"@jbrowse/plugin-spreadsheet-view": "^3.
|
|
42
|
-
"@jbrowse/sv-core": "^3.
|
|
39
|
+
"@jbrowse/core": "^3.7.0",
|
|
40
|
+
"@jbrowse/plugin-circular-view": "^3.7.0",
|
|
41
|
+
"@jbrowse/plugin-spreadsheet-view": "^3.7.0",
|
|
42
|
+
"@jbrowse/sv-core": "^3.7.0",
|
|
43
43
|
"@mui/icons-material": "^7.0.0",
|
|
44
44
|
"@mui/material": "^7.0.0",
|
|
45
45
|
"mobx": "^6.0.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "85bdd0d58286b7adbfd408146b15847676317635"
|
|
61
61
|
}
|