@jbrowse/plugin-sv-inspector 3.0.5 → 3.2.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.
|
@@ -186,7 +186,9 @@ function SvInspectorViewF(pluginManager) {
|
|
|
186
186
|
}
|
|
187
187
|
const { assemblyName, generatedTrackConf } = data;
|
|
188
188
|
const { circularView } = self;
|
|
189
|
-
|
|
189
|
+
for (const t of circularView.tracks) {
|
|
190
|
+
circularView.hideTrack(t.configuration.trackId);
|
|
191
|
+
}
|
|
190
192
|
if (assemblyName) {
|
|
191
193
|
circularView.addTrackConf(generatedTrackConf, {
|
|
192
194
|
assemblyName,
|
|
@@ -181,7 +181,9 @@ function SvInspectorViewF(pluginManager) {
|
|
|
181
181
|
}
|
|
182
182
|
const { assemblyName, generatedTrackConf } = data;
|
|
183
183
|
const { circularView } = self;
|
|
184
|
-
|
|
184
|
+
for (const t of circularView.tracks) {
|
|
185
|
+
circularView.hideTrack(t.configuration.trackId);
|
|
186
|
+
}
|
|
185
187
|
if (assemblyName) {
|
|
186
188
|
circularView.addTrackConf(generatedTrackConf, {
|
|
187
189
|
assemblyName,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-sv-inspector",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.2.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.0
|
|
40
|
-
"@jbrowse/plugin-circular-view": "^3.0
|
|
41
|
-
"@jbrowse/plugin-spreadsheet-view": "^3.0
|
|
42
|
-
"@jbrowse/sv-core": "^3.0
|
|
39
|
+
"@jbrowse/core": "^3.2.0",
|
|
40
|
+
"@jbrowse/plugin-circular-view": "^3.2.0",
|
|
41
|
+
"@jbrowse/plugin-spreadsheet-view": "^3.2.0",
|
|
42
|
+
"@jbrowse/sv-core": "^3.2.0",
|
|
43
43
|
"@mui/icons-material": "^6.0.0",
|
|
44
44
|
"@mui/material": "^6.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": "c750e3f56706a490c19ba75abd807fec5e38aebf"
|
|
61
61
|
}
|