@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.
@@ -69,7 +69,7 @@ var RedoIcon = require('@mui/icons-material/Redo');
69
69
  var UndoIcon = require('@mui/icons-material/Undo');
70
70
  var SaveIcon = require('@mui/icons-material/Save');
71
71
 
72
- var version = "1.0.0";
72
+ var version = "1.0.1";
73
73
 
74
74
  const ApolloConfigSchema = configuration.ConfigurationSchema('ApolloInternetAccount', {
75
75
  baseURL: {
@@ -2873,7 +2873,10 @@ class LocalDriver extends BackendDriver {
2873
2873
  const adapter = new CLASS(
2874
2874
  // eslint-disable-next-line @typescript-eslint/no-unsafe-argument
2875
2875
  adapterConf, undefined, pluginManager);
2876
- const seq = await adapter.getSequence(region);
2876
+ const seq = await adapter.getSequence({
2877
+ ...region,
2878
+ refName: assembly.getSeqAdapterRefName(region.refName),
2879
+ });
2877
2880
  if (!seq) {
2878
2881
  throw new Error(`Sequence not found: ${JSON.stringify(region)}`);
2879
2882
  }