@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo-annotation/jbrowse-plugin-apollo",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Apollo plugin for JBrowse 2",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -46,9 +46,9 @@
46
46
  }
47
47
  },
48
48
  "dependencies": {
49
- "@apollo-annotation/common": "^1.0.0",
50
- "@apollo-annotation/mst": "^1.0.0",
51
- "@apollo-annotation/shared": "^1.0.0",
49
+ "@apollo-annotation/common": "^1.0.1",
50
+ "@apollo-annotation/mst": "^1.0.1",
51
+ "@apollo-annotation/shared": "^1.0.1",
52
52
  "@emotion/react": "^11.10.6",
53
53
  "@emotion/styled": "^11.10.6",
54
54
  "@gmod/gff": "^2.1.0",
@@ -96,7 +96,10 @@ export class LocalDriver extends BackendDriver {
96
96
  undefined,
97
97
  pluginManager,
98
98
  ) as BaseSequenceAdapter
99
- const seq = await adapter.getSequence(region)
99
+ const seq = await adapter.getSequence({
100
+ ...region,
101
+ refName: assembly.getSeqAdapterRefName(region.refName),
102
+ })
100
103
  if (!seq) {
101
104
  throw new Error(`Sequence not found: ${JSON.stringify(region)}`)
102
105
  }