@jbrowse/plugin-sequence 1.6.5 → 1.6.8

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.
@@ -1,2 +1,2 @@
1
1
  import PluginManager from '@jbrowse/core/PluginManager';
2
- export declare function createReferenceSeqTrackConfig(pluginManager: PluginManager): import("@jbrowse/core/configuration/configurationSchema").AnyConfigurationSchemaType;
2
+ export declare function createReferenceSeqTrackConfig(pluginManager: PluginManager): import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-sequence",
3
- "version": "1.6.5",
3
+ "version": "1.6.8",
4
4
  "description": "JBrowse 2 sequence adapters, tracks, etc.",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -55,5 +55,5 @@
55
55
  "publishConfig": {
56
56
  "access": "public"
57
57
  },
58
- "gitHead": "ab41f017840ffef09f5d60b008281cedaa5abe26"
58
+ "gitHead": "585e522096651ef4afb188366bb46d723439dc1b"
59
59
  }
@@ -63,5 +63,9 @@ export default class extends BaseAdapter implements RegionsAdapter {
63
63
  throw new Error('sequence not available')
64
64
  }
65
65
 
66
+ public getHeader() {
67
+ return {}
68
+ }
69
+
66
70
  public freeResources(/* { region } */): void {}
67
71
  }
@@ -57,11 +57,6 @@ export default class extends BaseSequenceAdapter {
57
57
  }))
58
58
  }
59
59
 
60
- /**
61
- * Fetch features for a certain region
62
- * @param param -
63
- * @returns Observable of Feature objects in the region
64
- */
65
60
  public getFeatures(region: NoAssemblyRegion, opts?: BaseOptions) {
66
61
  const { refName, start, end } = region
67
62
  return ObservableCreate<Feature>(async observer => {