@jbrowse/plugin-gff3 3.3.0 → 3.5.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/Gff3Adapter/Gff3Adapter.d.ts +0 -1
- package/dist/Gff3Adapter/Gff3Adapter.js +1 -2
- package/dist/Gff3TabixAdapter/Gff3TabixAdapter.d.ts +0 -1
- package/dist/Gff3TabixAdapter/Gff3TabixAdapter.js +0 -1
- package/esm/Gff3Adapter/Gff3Adapter.d.ts +0 -1
- package/esm/Gff3Adapter/Gff3Adapter.js +1 -2
- package/esm/Gff3TabixAdapter/Gff3TabixAdapter.d.ts +0 -1
- package/esm/Gff3TabixAdapter/Gff3TabixAdapter.js +0 -1
- package/package.json +6 -6
|
@@ -15,6 +15,5 @@ export default class Gff3Adapter extends BaseFeatureDataAdapter {
|
|
|
15
15
|
getRefNames(opts?: BaseOptions): Promise<string[]>;
|
|
16
16
|
getHeader(opts?: BaseOptions): Promise<string>;
|
|
17
17
|
getFeatures(query: NoAssemblyRegion, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
18
|
-
freeResources(): void;
|
|
19
18
|
}
|
|
20
19
|
export {};
|
|
@@ -18,7 +18,7 @@ class Gff3Adapter extends BaseAdapter_1.BaseFeatureDataAdapter {
|
|
|
18
18
|
}
|
|
19
19
|
async loadDataP(opts) {
|
|
20
20
|
const { statusCallback = () => { } } = opts || {};
|
|
21
|
-
const buffer = await (0, util_1.fetchAndMaybeUnzip)((0, io_1.openLocation)(this.getConf('gffLocation'), this.pluginManager));
|
|
21
|
+
const buffer = await (0, util_1.fetchAndMaybeUnzip)((0, io_1.openLocation)(this.getConf('gffLocation'), this.pluginManager), opts);
|
|
22
22
|
const headerLines = [];
|
|
23
23
|
const featureMap = {};
|
|
24
24
|
const decoder = new TextDecoder('utf8');
|
|
@@ -109,6 +109,5 @@ class Gff3Adapter extends BaseAdapter_1.BaseFeatureDataAdapter {
|
|
|
109
109
|
}
|
|
110
110
|
}, opts.stopToken);
|
|
111
111
|
}
|
|
112
|
-
freeResources() { }
|
|
113
112
|
}
|
|
114
113
|
exports.default = Gff3Adapter;
|
|
@@ -15,6 +15,5 @@ export default class Gff3Adapter extends BaseFeatureDataAdapter {
|
|
|
15
15
|
getRefNames(opts?: BaseOptions): Promise<string[]>;
|
|
16
16
|
getHeader(opts?: BaseOptions): Promise<string>;
|
|
17
17
|
getFeatures(query: NoAssemblyRegion, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
18
|
-
freeResources(): void;
|
|
19
18
|
}
|
|
20
19
|
export {};
|
|
@@ -13,7 +13,7 @@ export default class Gff3Adapter extends BaseFeatureDataAdapter {
|
|
|
13
13
|
}
|
|
14
14
|
async loadDataP(opts) {
|
|
15
15
|
const { statusCallback = () => { } } = opts || {};
|
|
16
|
-
const buffer = await fetchAndMaybeUnzip(openLocation(this.getConf('gffLocation'), this.pluginManager));
|
|
16
|
+
const buffer = await fetchAndMaybeUnzip(openLocation(this.getConf('gffLocation'), this.pluginManager), opts);
|
|
17
17
|
const headerLines = [];
|
|
18
18
|
const featureMap = {};
|
|
19
19
|
const decoder = new TextDecoder('utf8');
|
|
@@ -104,5 +104,4 @@ export default class Gff3Adapter extends BaseFeatureDataAdapter {
|
|
|
104
104
|
}
|
|
105
105
|
}, opts.stopToken);
|
|
106
106
|
}
|
|
107
|
-
freeResources() { }
|
|
108
107
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-gff3",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "JBrowse 2 gff3.",
|
|
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
|
-
"@gmod/tabix": "^
|
|
42
|
-
"@jbrowse/core": "^3.
|
|
43
|
-
"@jbrowse/plugin-linear-genome-view": "^3.
|
|
40
|
+
"@gmod/bgzf-filehandle": "^4.0.0",
|
|
41
|
+
"@gmod/tabix": "^3.0.1",
|
|
42
|
+
"@jbrowse/core": "^3.5.0",
|
|
43
|
+
"@jbrowse/plugin-linear-genome-view": "^3.5.0",
|
|
44
44
|
"@mui/material": "^7.0.0",
|
|
45
45
|
"gff-nostream": "^1.3.3",
|
|
46
46
|
"mobx": "^6.0.0",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"distModule": "esm/index.js",
|
|
54
54
|
"srcModule": "src/index.ts",
|
|
55
55
|
"module": "esm/index.js",
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "8a8aa0aab2229dece106a5715a767e649e2fe92b"
|
|
57
57
|
}
|