@jbrowse/plugin-sequence 1.7.4 → 1.7.5

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.
@@ -147,7 +147,7 @@ export declare function modelFactory(configSchema: AnyConfigurationSchemaType):
147
147
  headers?: Record<string, string> | undefined;
148
148
  signal?: AbortSignal | undefined;
149
149
  filters?: string[] | undefined;
150
- }): Promise<import("@jbrowse/core/data_adapters/BaseAdapter").Stats>;
150
+ }): Promise<{}>;
151
151
  setRegionStatsP(p?: Promise<import("@jbrowse/core/data_adapters/BaseAdapter").Stats> | undefined): void;
152
152
  setRegionStats(estimatedRegionStats?: import("@jbrowse/core/data_adapters/BaseAdapter").Stats | undefined): void;
153
153
  clearRegionStats(): void;
@@ -26,6 +26,11 @@ function createReferenceSeqTrackConfig(pluginManager) {
26
26
  return (0, _configuration.ConfigurationSchema)('ReferenceSequenceTrack', {
27
27
  adapter: pluginManager.pluggableConfigSchemaType('adapter'),
28
28
  displays: _mobxStateTree.types.array(pluginManager.pluggableConfigSchemaType('display')),
29
+ name: {
30
+ type: 'string',
31
+ description: 'optional track name',
32
+ defaultValue: ''
33
+ },
29
34
  metadata: {
30
35
  type: 'frozen',
31
36
  description: 'anything to add about this track',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-sequence",
3
- "version": "1.7.4",
3
+ "version": "1.7.5",
4
4
  "description": "JBrowse 2 sequence adapters, tracks, etc.",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -53,5 +53,5 @@
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
- "gitHead": "0a3e0c58055bbab8e3ab0270c139291b96eff403"
56
+ "gitHead": "2c3a1f0c95a47b24eba790eaeb49274caf297aeb"
57
57
  }
@@ -14,6 +14,11 @@ export function createReferenceSeqTrackConfig(pluginManager: PluginManager) {
14
14
  {
15
15
  adapter: pluginManager.pluggableConfigSchemaType('adapter'),
16
16
  displays: types.array(pluginManager.pluggableConfigSchemaType('display')),
17
+ name: {
18
+ type: 'string',
19
+ description: 'optional track name',
20
+ defaultValue: '',
21
+ },
17
22
  metadata: {
18
23
  type: 'frozen',
19
24
  description: 'anything to add about this track',