@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.
- package/dist/GtfAdapter/GtfAdapter.d.ts +0 -1
- package/dist/GtfAdapter/GtfAdapter.js +0 -1
- package/dist/GtfAdapter/configSchema.d.ts +2 -0
- package/dist/GtfAdapter/configSchema.js +2 -0
- package/esm/GtfAdapter/GtfAdapter.d.ts +0 -1
- package/esm/GtfAdapter/GtfAdapter.js +0 -1
- package/esm/GtfAdapter/configSchema.d.ts +2 -0
- package/esm/GtfAdapter/configSchema.js +2 -0
- package/package.json +6 -6
|
@@ -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
|
}, {
|
|
@@ -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.
|
|
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": "^
|
|
41
|
-
"@jbrowse/core": "^3.
|
|
42
|
-
"@jbrowse/plugin-linear-genome-view": "^3.
|
|
43
|
-
"@mui/material": "^
|
|
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": "
|
|
59
|
+
"gitHead": "a9f1ac35fc2dd810bae92cdaf1fc19995bee4413"
|
|
60
60
|
}
|