@jbrowse/plugin-gff3 2.4.1 → 2.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/configSchema.d.ts +12 -1
- package/dist/Gff3TabixAdapter/Gff3TabixAdapter.d.ts +1 -1
- package/dist/Gff3TabixAdapter/configSchema.d.ts +43 -1
- package/esm/Gff3Adapter/configSchema.d.ts +12 -1
- package/esm/Gff3TabixAdapter/Gff3TabixAdapter.d.ts +1 -1
- package/esm/Gff3TabixAdapter/configSchema.d.ts +43 -1
- package/package.json +2 -2
|
@@ -1,2 +1,13 @@
|
|
|
1
|
-
declare const Gff3Adapter: import("@jbrowse/core/configuration").
|
|
1
|
+
declare const Gff3Adapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
|
+
/**
|
|
3
|
+
* #slot
|
|
4
|
+
*/
|
|
5
|
+
gffLocation: {
|
|
6
|
+
type: string;
|
|
7
|
+
defaultValue: {
|
|
8
|
+
uri: string;
|
|
9
|
+
locationType: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
2
13
|
export default Gff3Adapter;
|
|
@@ -9,7 +9,7 @@ export default class extends BaseFeatureDataAdapter {
|
|
|
9
9
|
protected gff: TabixIndexedFile;
|
|
10
10
|
protected dontRedispatch: string[];
|
|
11
11
|
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
12
|
-
getRefNames(opts?: BaseOptions): Promise<
|
|
12
|
+
getRefNames(opts?: BaseOptions): Promise<string[]>;
|
|
13
13
|
getHeader(): Promise<string>;
|
|
14
14
|
getFeatures(query: Region, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
15
15
|
private getFeaturesHelper;
|
|
@@ -1,2 +1,44 @@
|
|
|
1
|
-
declare const Gff3TabixAdapter: import("@jbrowse/core/configuration").
|
|
1
|
+
declare const Gff3TabixAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
|
+
/**
|
|
3
|
+
* #slot
|
|
4
|
+
*/
|
|
5
|
+
gffGzLocation: {
|
|
6
|
+
type: string;
|
|
7
|
+
defaultValue: {
|
|
8
|
+
uri: string;
|
|
9
|
+
locationType: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
index: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
13
|
+
/**
|
|
14
|
+
* #slot index.indexType
|
|
15
|
+
*/
|
|
16
|
+
indexType: {
|
|
17
|
+
model: import("mobx-state-tree").ISimpleType<string>;
|
|
18
|
+
type: string;
|
|
19
|
+
defaultValue: string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* #slot index.indexType
|
|
23
|
+
*/
|
|
24
|
+
location: {
|
|
25
|
+
type: string;
|
|
26
|
+
defaultValue: {
|
|
27
|
+
uri: string;
|
|
28
|
+
locationType: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
32
|
+
/**
|
|
33
|
+
* #slot
|
|
34
|
+
* the Gff3TabixAdapter has to "redispatch" if it fetches a region and
|
|
35
|
+
* features it finds inside that region extend outside the region we requested.
|
|
36
|
+
* you can disable this for certain feature types to avoid fetching e.g. the
|
|
37
|
+
* entire chromosome
|
|
38
|
+
*/
|
|
39
|
+
dontRedispatch: {
|
|
40
|
+
type: string;
|
|
41
|
+
defaultValue: string[];
|
|
42
|
+
};
|
|
43
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
2
44
|
export default Gff3TabixAdapter;
|
|
@@ -1,2 +1,13 @@
|
|
|
1
|
-
declare const Gff3Adapter: import("@jbrowse/core/configuration").
|
|
1
|
+
declare const Gff3Adapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
|
+
/**
|
|
3
|
+
* #slot
|
|
4
|
+
*/
|
|
5
|
+
gffLocation: {
|
|
6
|
+
type: string;
|
|
7
|
+
defaultValue: {
|
|
8
|
+
uri: string;
|
|
9
|
+
locationType: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
2
13
|
export default Gff3Adapter;
|
|
@@ -9,7 +9,7 @@ export default class extends BaseFeatureDataAdapter {
|
|
|
9
9
|
protected gff: TabixIndexedFile;
|
|
10
10
|
protected dontRedispatch: string[];
|
|
11
11
|
constructor(config: AnyConfigurationModel, getSubAdapter?: getSubAdapterType, pluginManager?: PluginManager);
|
|
12
|
-
getRefNames(opts?: BaseOptions): Promise<
|
|
12
|
+
getRefNames(opts?: BaseOptions): Promise<string[]>;
|
|
13
13
|
getHeader(): Promise<string>;
|
|
14
14
|
getFeatures(query: Region, opts?: BaseOptions): import("rxjs").Observable<Feature>;
|
|
15
15
|
private getFeaturesHelper;
|
|
@@ -1,2 +1,44 @@
|
|
|
1
|
-
declare const Gff3TabixAdapter: import("@jbrowse/core/configuration").
|
|
1
|
+
declare const Gff3TabixAdapter: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
|
+
/**
|
|
3
|
+
* #slot
|
|
4
|
+
*/
|
|
5
|
+
gffGzLocation: {
|
|
6
|
+
type: string;
|
|
7
|
+
defaultValue: {
|
|
8
|
+
uri: string;
|
|
9
|
+
locationType: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
index: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
13
|
+
/**
|
|
14
|
+
* #slot index.indexType
|
|
15
|
+
*/
|
|
16
|
+
indexType: {
|
|
17
|
+
model: import("mobx-state-tree").ISimpleType<string>;
|
|
18
|
+
type: string;
|
|
19
|
+
defaultValue: string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* #slot index.indexType
|
|
23
|
+
*/
|
|
24
|
+
location: {
|
|
25
|
+
type: string;
|
|
26
|
+
defaultValue: {
|
|
27
|
+
uri: string;
|
|
28
|
+
locationType: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
32
|
+
/**
|
|
33
|
+
* #slot
|
|
34
|
+
* the Gff3TabixAdapter has to "redispatch" if it fetches a region and
|
|
35
|
+
* features it finds inside that region extend outside the region we requested.
|
|
36
|
+
* you can disable this for certain feature types to avoid fetching e.g. the
|
|
37
|
+
* entire chromosome
|
|
38
|
+
*/
|
|
39
|
+
dontRedispatch: {
|
|
40
|
+
type: string;
|
|
41
|
+
defaultValue: string[];
|
|
42
|
+
};
|
|
43
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
2
44
|
export default Gff3TabixAdapter;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-gff3",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "JBrowse 2 gff3.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -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": "d1ca073996d008f0fe9a52f7c1a47ae649dcfdaf"
|
|
60
60
|
}
|