@jbrowse/plugin-bed 4.0.3 → 4.1.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/esm/BedAdapter/BedAdapter.d.ts +1 -1
- package/esm/BedAdapter/BedAdapter.js +1 -2
- package/esm/BedGraphAdapter/BedGraphAdapter.d.ts +1 -1
- package/esm/BedGraphAdapter/BedGraphAdapter.js +1 -2
- package/esm/BedpeAdapter/BedpeAdapter.d.ts +1 -1
- package/esm/BedpeAdapter/BedpeAdapter.js +1 -2
- package/esm/util.d.ts +1 -1
- package/package.json +4 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { IntervalTree } from '@flatten-js/interval-tree';
|
|
2
1
|
import BED from '@gmod/bed';
|
|
3
2
|
import { BaseFeatureDataAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
3
|
+
import { IntervalTree } from '@jbrowse/core/util';
|
|
4
4
|
import type { BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
5
5
|
import type { Feature, Region } from '@jbrowse/core/util';
|
|
6
6
|
export default class BedAdapter extends BaseFeatureDataAdapter {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { IntervalTree } from '@flatten-js/interval-tree';
|
|
2
1
|
import BED from '@gmod/bed';
|
|
3
2
|
import { BaseFeatureDataAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
4
|
-
import { SimpleFeature, fetchAndMaybeUnzip } from '@jbrowse/core/util';
|
|
3
|
+
import { IntervalTree, SimpleFeature, fetchAndMaybeUnzip, } from '@jbrowse/core/util';
|
|
5
4
|
import { openLocation } from '@jbrowse/core/util/io';
|
|
6
5
|
import { parseLineByLine } from '@jbrowse/core/util/parseLineByLine';
|
|
7
6
|
import { ObservableCreate } from '@jbrowse/core/util/rxjs';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IntervalTree } from '@flatten-js/interval-tree';
|
|
2
1
|
import { BaseFeatureDataAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
+
import { IntervalTree } from '@jbrowse/core/util';
|
|
3
3
|
import type { BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
4
4
|
import type { Feature, Region } from '@jbrowse/core/util';
|
|
5
5
|
export default class BedGraphAdapter extends BaseFeatureDataAdapter {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { IntervalTree } from '@flatten-js/interval-tree';
|
|
2
1
|
import { BaseFeatureDataAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
3
|
-
import { SimpleFeature, fetchAndMaybeUnzip } from '@jbrowse/core/util';
|
|
2
|
+
import { IntervalTree, SimpleFeature, fetchAndMaybeUnzip, } from '@jbrowse/core/util';
|
|
4
3
|
import { openLocation } from '@jbrowse/core/util/io';
|
|
5
4
|
import { parseLineByLine } from '@jbrowse/core/util/parseLineByLine';
|
|
6
5
|
import { ObservableCreate } from '@jbrowse/core/util/rxjs';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IntervalTree } from '@flatten-js/interval-tree';
|
|
2
1
|
import { BaseFeatureDataAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
+
import { IntervalTree } from '@jbrowse/core/util';
|
|
3
3
|
import type { BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
4
4
|
import type { Feature, Region } from '@jbrowse/core/util';
|
|
5
5
|
export default class BedpeAdapter extends BaseFeatureDataAdapter {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { IntervalTree } from '@flatten-js/interval-tree';
|
|
2
1
|
import { BaseFeatureDataAdapter } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
3
|
-
import { fetchAndMaybeUnzipText } from '@jbrowse/core/util';
|
|
2
|
+
import { IntervalTree, fetchAndMaybeUnzipText } from '@jbrowse/core/util';
|
|
4
3
|
import { openLocation } from '@jbrowse/core/util/io';
|
|
5
4
|
import { ObservableCreate } from '@jbrowse/core/util/rxjs';
|
|
6
5
|
import { featureData } from "./util.js";
|
package/esm/util.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { MinimalFeature } from './types';
|
|
1
|
+
import type { MinimalFeature } from './types.ts';
|
|
2
2
|
import type BED from '@gmod/bed';
|
|
3
3
|
export declare function makeBlocks({ start, uniqueId, refName, chromStarts, blockCount, blockSizes, blockStarts, }: {
|
|
4
4
|
blockCount: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-bed",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "JBrowse 2 bed adapters, tracks, etc.",
|
|
5
6
|
"keywords": [
|
|
6
7
|
"jbrowse",
|
|
@@ -22,12 +23,12 @@
|
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"@flatten-js/interval-tree": "^2.0.3",
|
|
24
25
|
"@gmod/bbi": "^8.1.1",
|
|
25
|
-
"@gmod/bed": "^2.1.
|
|
26
|
+
"@gmod/bed": "^2.1.10",
|
|
26
27
|
"@gmod/tabix": "^3.2.2",
|
|
27
28
|
"@jbrowse/mobx-state-tree": "^5.5.0",
|
|
28
29
|
"mobx": "^6.15.0",
|
|
29
30
|
"rxjs": "^7.8.2",
|
|
30
|
-
"@jbrowse/core": "^4.0
|
|
31
|
+
"@jbrowse/core": "^4.1.0"
|
|
31
32
|
},
|
|
32
33
|
"publishConfig": {
|
|
33
34
|
"access": "public"
|