@jbrowse/plugin-circular-view 1.6.5 → 1.6.6
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/BaseChordDisplay/models/baseChordDisplayConfig.d.ts +1 -1
- package/dist/plugin-circular-view.cjs.development.js +4 -16
- package/dist/plugin-circular-view.cjs.development.js.map +1 -1
- package/dist/plugin-circular-view.cjs.production.min.js +1 -1
- package/dist/plugin-circular-view.cjs.production.min.js.map +1 -1
- package/dist/plugin-circular-view.esm.js +4 -16
- package/dist/plugin-circular-view.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/CircularView/models/CircularView.ts +3 -15
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const baseChordDisplayConfig: import("@jbrowse/core/configuration
|
|
1
|
+
declare const baseChordDisplayConfig: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
2
|
export { baseChordDisplayConfig };
|
|
@@ -1650,24 +1650,12 @@ function CircularView(pluginManager) {
|
|
|
1650
1650
|
|
|
1651
1651
|
get initialized() {
|
|
1652
1652
|
var _getSession = util.getSession(self),
|
|
1653
|
-
assemblyManager = _getSession.assemblyManager;
|
|
1654
|
-
// it to be loaded. this is done by looking in the assemblyManager's
|
|
1655
|
-
// assembly list, and then waiting on it's initialized state which is
|
|
1656
|
-
// updated later
|
|
1653
|
+
assemblyManager = _getSession.assemblyManager;
|
|
1657
1654
|
|
|
1655
|
+
return this.assemblyNames.every(function (a) {
|
|
1656
|
+
var _assemblyManager$get;
|
|
1658
1657
|
|
|
1659
|
-
|
|
1660
|
-
var _assemblyManager$asse;
|
|
1661
|
-
|
|
1662
|
-
if ((_assemblyManager$asse = assemblyManager.assemblyList) !== null && _assemblyManager$asse !== void 0 && _assemblyManager$asse.map(function (asm) {
|
|
1663
|
-
return asm.name;
|
|
1664
|
-
}).includes(assemblyName)) {
|
|
1665
|
-
var _assemblyManager$get;
|
|
1666
|
-
|
|
1667
|
-
return (_assemblyManager$get = assemblyManager.get(assemblyName)) === null || _assemblyManager$get === void 0 ? void 0 : _assemblyManager$get.initialized;
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
|
-
return true;
|
|
1658
|
+
return (_assemblyManager$get = assemblyManager.get(a)) === null || _assemblyManager$get === void 0 ? void 0 : _assemblyManager$get.initialized;
|
|
1671
1659
|
});
|
|
1672
1660
|
}
|
|
1673
1661
|
|