@jbrowse/plugin-gtf 3.2.0 → 3.4.0

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.
@@ -23,6 +23,5 @@ export default class GtfAdapter extends BaseFeatureDataAdapter {
23
23
  allowRedispatch: boolean;
24
24
  originalQuery?: Region;
25
25
  }): Promise<void>;
26
- freeResources(): void;
27
26
  }
28
27
  export {};
@@ -184,6 +184,5 @@ class GtfAdapter extends BaseAdapter_1.BaseFeatureDataAdapter {
184
184
  }
185
185
  observer.complete();
186
186
  }
187
- freeResources() { }
188
187
  }
189
188
  exports.default = GtfAdapter;
@@ -1,6 +1,7 @@
1
1
  declare const GtfAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
2
2
  gtfLocation: {
3
3
  type: string;
4
+ description: string;
4
5
  defaultValue: {
5
6
  uri: string;
6
7
  locationType: string;
@@ -8,6 +9,7 @@ declare const GtfAdapter: import("@jbrowse/core/configuration/configurationSchem
8
9
  };
9
10
  aggregateField: {
10
11
  type: string;
12
+ description: string;
11
13
  defaultValue: string;
12
14
  };
13
15
  }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
@@ -5,6 +5,7 @@ function x() { }
5
5
  const GtfAdapter = (0, configuration_1.ConfigurationSchema)('GtfAdapter', {
6
6
  gtfLocation: {
7
7
  type: 'fileLocation',
8
+ description: 'path to gtf file, also allows for gzipped gtf',
8
9
  defaultValue: {
9
10
  uri: '/path/to/my.gtf',
10
11
  locationType: 'UriLocation',
@@ -12,6 +13,7 @@ const GtfAdapter = (0, configuration_1.ConfigurationSchema)('GtfAdapter', {
12
13
  },
13
14
  aggregateField: {
14
15
  type: 'string',
16
+ description: 'field used to aggregate multiple transcripts into a single parent gene feature',
15
17
  defaultValue: 'gene_name',
16
18
  },
17
19
  }, {
@@ -23,6 +23,5 @@ export default class GtfAdapter extends BaseFeatureDataAdapter {
23
23
  allowRedispatch: boolean;
24
24
  originalQuery?: Region;
25
25
  }): Promise<void>;
26
- freeResources(): void;
27
26
  }
28
27
  export {};
@@ -179,5 +179,4 @@ export default class GtfAdapter extends BaseFeatureDataAdapter {
179
179
  }
180
180
  observer.complete();
181
181
  }
182
- freeResources() { }
183
182
  }
@@ -1,6 +1,7 @@
1
1
  declare const GtfAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
2
2
  gtfLocation: {
3
3
  type: string;
4
+ description: string;
4
5
  defaultValue: {
5
6
  uri: string;
6
7
  locationType: string;
@@ -8,6 +9,7 @@ declare const GtfAdapter: import("@jbrowse/core/configuration/configurationSchem
8
9
  };
9
10
  aggregateField: {
10
11
  type: string;
12
+ description: string;
11
13
  defaultValue: string;
12
14
  };
13
15
  }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
@@ -3,6 +3,7 @@ function x() { }
3
3
  const GtfAdapter = ConfigurationSchema('GtfAdapter', {
4
4
  gtfLocation: {
5
5
  type: 'fileLocation',
6
+ description: 'path to gtf file, also allows for gzipped gtf',
6
7
  defaultValue: {
7
8
  uri: '/path/to/my.gtf',
8
9
  locationType: 'UriLocation',
@@ -10,6 +11,7 @@ const GtfAdapter = ConfigurationSchema('GtfAdapter', {
10
11
  },
11
12
  aggregateField: {
12
13
  type: 'string',
14
+ description: 'field used to aggregate multiple transcripts into a single parent gene feature',
13
15
  defaultValue: 'gene_name',
14
16
  },
15
17
  }, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-gtf",
3
- "version": "3.2.0",
3
+ "version": "3.4.0",
4
4
  "description": "JBrowse 2 gtf feature adapter",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -37,10 +37,10 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@flatten-js/interval-tree": "^1.0.15",
40
- "@gmod/bgzf-filehandle": "^2.0.1",
41
- "@jbrowse/core": "^3.2.0",
42
- "@jbrowse/plugin-linear-genome-view": "^3.2.0",
43
- "@mui/material": "^6.0.0",
40
+ "@gmod/bgzf-filehandle": "^3.0.2",
41
+ "@jbrowse/core": "^3.4.0",
42
+ "@jbrowse/plugin-linear-genome-view": "^3.4.0",
43
+ "@mui/material": "^7.0.0",
44
44
  "gtf-nostream": "^1.0.0",
45
45
  "mobx": "^6.0.0",
46
46
  "mobx-react": "^9.0.0",
@@ -56,5 +56,5 @@
56
56
  "distModule": "esm/index.js",
57
57
  "srcModule": "src/index.ts",
58
58
  "module": "esm/index.js",
59
- "gitHead": "c750e3f56706a490c19ba75abd807fec5e38aebf"
59
+ "gitHead": "a9f1ac35fc2dd810bae92cdaf1fc19995bee4413"
60
60
  }