@apollo-annotation/jbrowse-plugin-apollo 1.0.0 → 1.0.1
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/BackendDrivers/LocalDriver/LocalDriver.d.ts.map +1 -1
- package/dist/index.esm.js +5 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.development.js +5 -2
- package/dist/jbrowse-plugin-apollo.cjs.development.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.production.min.js +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.production.min.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.umd.development.js +5 -2
- package/dist/jbrowse-plugin-apollo.umd.development.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.umd.production.min.js +1 -1
- package/dist/jbrowse-plugin-apollo.umd.production.min.js.map +1 -1
- package/package.json +4 -4
- package/src/BackendDrivers/LocalDriver/LocalDriver.ts +4 -1
|
@@ -7122,7 +7122,7 @@
|
|
|
7122
7122
|
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
7123
7123
|
}), 'Add');
|
|
7124
7124
|
|
|
7125
|
-
var version = "1.0.
|
|
7125
|
+
var version = "1.0.1";
|
|
7126
7126
|
|
|
7127
7127
|
const ApolloConfigSchema = configuration.ConfigurationSchema('ApolloInternetAccount', {
|
|
7128
7128
|
baseURL: {
|
|
@@ -23316,7 +23316,10 @@
|
|
|
23316
23316
|
const adapter = new CLASS(
|
|
23317
23317
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
23318
23318
|
adapterConf, undefined, pluginManager);
|
|
23319
|
-
const seq = await adapter.getSequence(
|
|
23319
|
+
const seq = await adapter.getSequence({
|
|
23320
|
+
...region,
|
|
23321
|
+
refName: assembly.getSeqAdapterRefName(region.refName),
|
|
23322
|
+
});
|
|
23320
23323
|
if (!seq) {
|
|
23321
23324
|
throw new Error(`Sequence not found: ${JSON.stringify(region)}`);
|
|
23322
23325
|
}
|