@jbrowse/plugin-gff3 1.7.0 → 1.7.1
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 +17 -17
- package/dist/Gff3Adapter/configSchema.d.ts +2 -2
- package/dist/Gff3Adapter/index.d.ts +1 -1
- package/dist/Gff3TabixAdapter/Gff3TabixAdapter.d.ts +20 -20
- package/dist/Gff3TabixAdapter/configSchema.d.ts +2 -2
- package/dist/Gff3TabixAdapter/index.d.ts +1 -1
- package/dist/index.d.ts +6 -6
- package/package.json +3 -2
- package/dist/plugin-gff3.cjs.development.js +0 -1813
- package/dist/plugin-gff3.cjs.development.js.map +0 -1
- package/dist/plugin-gff3.cjs.production.min.js +0 -2
- package/dist/plugin-gff3.cjs.production.min.js.map +0 -1
- package/dist/plugin-gff3.esm.js +0 -1807
- package/dist/plugin-gff3.esm.js.map +0 -1
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { BaseFeatureDataAdapter, BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
-
import { NoAssemblyRegion } from '@jbrowse/core/util/types';
|
|
3
|
-
import IntervalTree from '@flatten-js/interval-tree';
|
|
4
|
-
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
5
|
-
export default class extends BaseFeatureDataAdapter {
|
|
6
|
-
protected gffFeatures?: Promise<{
|
|
7
|
-
header: string;
|
|
8
|
-
intervalTree: Record<string, IntervalTree>;
|
|
9
|
-
}>;
|
|
10
|
-
private loadDataP;
|
|
11
|
-
private loadData;
|
|
12
|
-
getRefNames(opts?: BaseOptions): Promise<string[]>;
|
|
13
|
-
getHeader(): Promise<string>;
|
|
14
|
-
getFeatures(query: NoAssemblyRegion, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
15
|
-
private featureData;
|
|
16
|
-
freeResources(): void;
|
|
17
|
-
}
|
|
1
|
+
import { BaseFeatureDataAdapter, BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
+
import { NoAssemblyRegion } from '@jbrowse/core/util/types';
|
|
3
|
+
import IntervalTree from '@flatten-js/interval-tree';
|
|
4
|
+
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
5
|
+
export default class extends BaseFeatureDataAdapter {
|
|
6
|
+
protected gffFeatures?: Promise<{
|
|
7
|
+
header: string;
|
|
8
|
+
intervalTree: Record<string, IntervalTree>;
|
|
9
|
+
}>;
|
|
10
|
+
private loadDataP;
|
|
11
|
+
private loadData;
|
|
12
|
+
getRefNames(opts?: BaseOptions): Promise<string[]>;
|
|
13
|
+
getHeader(): Promise<string>;
|
|
14
|
+
getFeatures(query: NoAssemblyRegion, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
15
|
+
private featureData;
|
|
16
|
+
freeResources(): void;
|
|
17
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
+
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as configSchema } from './configSchema';
|
|
1
|
+
export { default as configSchema } from './configSchema';
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { BaseFeatureDataAdapter, BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
-
import { Region } from '@jbrowse/core/util/types';
|
|
3
|
-
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
4
|
-
import { TabixIndexedFile } from '@gmod/tabix';
|
|
5
|
-
import { AnyConfigurationModel } from '@jbrowse/core/configuration';
|
|
6
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
7
|
-
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
8
|
-
export default class extends BaseFeatureDataAdapter {
|
|
9
|
-
protected gff: TabixIndexedFile;
|
|
10
|
-
protected dontRedispatch: string[];
|
|
11
|
-
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
12
|
-
getRefNames(opts?: BaseOptions): Promise<any>;
|
|
13
|
-
getHeader(): Promise<string>;
|
|
14
|
-
getFeatures(query: Region, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
15
|
-
private getFeaturesHelper;
|
|
16
|
-
private parseLine;
|
|
17
|
-
private formatFeatures;
|
|
18
|
-
private featureData;
|
|
19
|
-
freeResources(): void;
|
|
20
|
-
}
|
|
1
|
+
import { BaseFeatureDataAdapter, BaseOptions } from '@jbrowse/core/data_adapters/BaseAdapter';
|
|
2
|
+
import { Region } from '@jbrowse/core/util/types';
|
|
3
|
+
import { Feature } from '@jbrowse/core/util/simpleFeature';
|
|
4
|
+
import { TabixIndexedFile } from '@gmod/tabix';
|
|
5
|
+
import { AnyConfigurationModel } from '@jbrowse/core/configuration';
|
|
6
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
7
|
+
import { getSubAdapterType } from '@jbrowse/core/data_adapters/dataAdapterCache';
|
|
8
|
+
export default class extends BaseFeatureDataAdapter {
|
|
9
|
+
protected gff: TabixIndexedFile;
|
|
10
|
+
protected dontRedispatch: string[];
|
|
11
|
+
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
12
|
+
getRefNames(opts?: BaseOptions): Promise<any>;
|
|
13
|
+
getHeader(): Promise<string>;
|
|
14
|
+
getFeatures(query: Region, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
15
|
+
private getFeaturesHelper;
|
|
16
|
+
private parseLine;
|
|
17
|
+
private formatFeatures;
|
|
18
|
+
private featureData;
|
|
19
|
+
freeResources(): void;
|
|
20
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
2
|
+
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as configSchema } from './configSchema';
|
|
1
|
+
export { default as configSchema } from './configSchema';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
-
import Plugin from '@jbrowse/core/Plugin';
|
|
3
|
-
export default class extends Plugin {
|
|
4
|
-
name: string;
|
|
5
|
-
install(pluginManager: PluginManager): void;
|
|
6
|
-
}
|
|
1
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
+
import Plugin from '@jbrowse/core/Plugin';
|
|
3
|
+
export default class extends Plugin {
|
|
4
|
+
name: string;
|
|
5
|
+
install(pluginManager: PluginManager): void;
|
|
6
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-gff3",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "JBrowse 2 gff3.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "babel src --root-mode upward --out-dir dist --extensions .ts,.js,.tsx,.jsx",
|
|
27
|
+
"postbuild": "tsc --build tsconfig.build.json",
|
|
27
28
|
"test": "cd ../..; jest plugins/gff3 --passWithNoTests",
|
|
28
29
|
"prepublishOnly": "yarn test",
|
|
29
30
|
"prepack": "yarn build; yarn useDist",
|
|
@@ -51,5 +52,5 @@
|
|
|
51
52
|
"publishConfig": {
|
|
52
53
|
"access": "public"
|
|
53
54
|
},
|
|
54
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "6da232090c90f22ac96fd464c33082c89b8da14b"
|
|
55
56
|
}
|