@jbrowse/plugin-hic 2.11.1 → 2.12.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.
|
@@ -27,6 +27,11 @@ declare const HicTrackConfigFactory: (pluginManager: PluginManager) => import("@
|
|
|
27
27
|
defaultValue: string;
|
|
28
28
|
contextVariable: string[];
|
|
29
29
|
};
|
|
30
|
+
jexlFilters: {
|
|
31
|
+
type: string;
|
|
32
|
+
description: string;
|
|
33
|
+
defaultValue: never[];
|
|
34
|
+
};
|
|
30
35
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
|
|
31
36
|
export type HicTrackConfigModel = ReturnType<typeof HicTrackConfigFactory>;
|
|
32
37
|
export type HicTrackConfig = Instance<HicTrackConfigModel>;
|
|
@@ -62,35 +62,41 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
62
62
|
setError(error: unknown): void;
|
|
63
63
|
reload(): void;
|
|
64
64
|
beforeDestroy(): void;
|
|
65
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
65
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>; /**
|
|
66
|
+
* #action
|
|
67
|
+
*/
|
|
66
68
|
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
67
69
|
maxFeatureScreenDensity: {
|
|
68
70
|
type: string;
|
|
69
71
|
description: string;
|
|
70
|
-
/**
|
|
71
|
-
* #property
|
|
72
|
-
*/
|
|
73
72
|
defaultValue: number;
|
|
74
73
|
};
|
|
75
74
|
fetchSizeLimit: {
|
|
76
75
|
type: string;
|
|
77
76
|
defaultValue: number;
|
|
78
77
|
description: string;
|
|
79
|
-
};
|
|
78
|
+
}; /**
|
|
79
|
+
* #property
|
|
80
|
+
*/
|
|
80
81
|
height: {
|
|
81
82
|
type: string;
|
|
82
83
|
defaultValue: number;
|
|
83
84
|
description: string;
|
|
84
85
|
};
|
|
85
86
|
mouseover: {
|
|
86
|
-
type: string;
|
|
87
|
-
* #getter
|
|
88
|
-
*/
|
|
87
|
+
type: string;
|
|
89
88
|
description: string;
|
|
90
89
|
defaultValue: string;
|
|
91
90
|
contextVariable: string[];
|
|
92
91
|
};
|
|
93
|
-
|
|
92
|
+
jexlFilters: {
|
|
93
|
+
type: string;
|
|
94
|
+
description: string;
|
|
95
|
+
defaultValue: never[];
|
|
96
|
+
};
|
|
97
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>; /**
|
|
98
|
+
* #action
|
|
99
|
+
*/
|
|
94
100
|
} & {
|
|
95
101
|
type: import("mobx-state-tree").ISimpleType<"LinearHicDisplay">;
|
|
96
102
|
configuration: AnyConfigurationSchemaType;
|
|
@@ -200,7 +206,9 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
200
206
|
featureIdUnderMouse: string | undefined;
|
|
201
207
|
contextMenuFeature: import("@jbrowse/core/util").Feature | undefined;
|
|
202
208
|
} & {
|
|
203
|
-
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
209
|
+
readonly blockType: "dynamicBlocks" | "staticBlocks"; /**
|
|
210
|
+
* #getter
|
|
211
|
+
*/
|
|
204
212
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
205
213
|
} & {
|
|
206
214
|
readonly renderDelay: number;
|
|
@@ -217,6 +225,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
217
225
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
218
226
|
deleteBlock(key: string): void;
|
|
219
227
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
228
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
220
229
|
clearFeatureSelection(): void;
|
|
221
230
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
222
231
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -339,35 +348,41 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
339
348
|
setError(error: unknown): void;
|
|
340
349
|
reload(): void;
|
|
341
350
|
beforeDestroy(): void;
|
|
342
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
351
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>; /**
|
|
352
|
+
* #action
|
|
353
|
+
*/
|
|
343
354
|
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
344
355
|
maxFeatureScreenDensity: {
|
|
345
356
|
type: string;
|
|
346
357
|
description: string;
|
|
347
|
-
/**
|
|
348
|
-
* #property
|
|
349
|
-
*/
|
|
350
358
|
defaultValue: number;
|
|
351
359
|
};
|
|
352
360
|
fetchSizeLimit: {
|
|
353
361
|
type: string;
|
|
354
362
|
defaultValue: number;
|
|
355
363
|
description: string;
|
|
356
|
-
};
|
|
364
|
+
}; /**
|
|
365
|
+
* #property
|
|
366
|
+
*/
|
|
357
367
|
height: {
|
|
358
368
|
type: string;
|
|
359
369
|
defaultValue: number;
|
|
360
370
|
description: string;
|
|
361
371
|
};
|
|
362
372
|
mouseover: {
|
|
363
|
-
type: string;
|
|
364
|
-
* #getter
|
|
365
|
-
*/
|
|
373
|
+
type: string;
|
|
366
374
|
description: string;
|
|
367
375
|
defaultValue: string;
|
|
368
376
|
contextVariable: string[];
|
|
369
377
|
};
|
|
370
|
-
|
|
378
|
+
jexlFilters: {
|
|
379
|
+
type: string;
|
|
380
|
+
description: string;
|
|
381
|
+
defaultValue: never[];
|
|
382
|
+
};
|
|
383
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>; /**
|
|
384
|
+
* #action
|
|
385
|
+
*/
|
|
371
386
|
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
372
387
|
type: string;
|
|
373
388
|
id: string;
|
|
@@ -27,6 +27,11 @@ declare const HicTrackConfigFactory: (pluginManager: PluginManager) => import("@
|
|
|
27
27
|
defaultValue: string;
|
|
28
28
|
contextVariable: string[];
|
|
29
29
|
};
|
|
30
|
+
jexlFilters: {
|
|
31
|
+
type: string;
|
|
32
|
+
description: string;
|
|
33
|
+
defaultValue: never[];
|
|
34
|
+
};
|
|
30
35
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
|
|
31
36
|
export type HicTrackConfigModel = ReturnType<typeof HicTrackConfigFactory>;
|
|
32
37
|
export type HicTrackConfig = Instance<HicTrackConfigModel>;
|
|
@@ -62,35 +62,41 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
62
62
|
setError(error: unknown): void;
|
|
63
63
|
reload(): void;
|
|
64
64
|
beforeDestroy(): void;
|
|
65
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
65
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>; /**
|
|
66
|
+
* #action
|
|
67
|
+
*/
|
|
66
68
|
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
67
69
|
maxFeatureScreenDensity: {
|
|
68
70
|
type: string;
|
|
69
71
|
description: string;
|
|
70
|
-
/**
|
|
71
|
-
* #property
|
|
72
|
-
*/
|
|
73
72
|
defaultValue: number;
|
|
74
73
|
};
|
|
75
74
|
fetchSizeLimit: {
|
|
76
75
|
type: string;
|
|
77
76
|
defaultValue: number;
|
|
78
77
|
description: string;
|
|
79
|
-
};
|
|
78
|
+
}; /**
|
|
79
|
+
* #property
|
|
80
|
+
*/
|
|
80
81
|
height: {
|
|
81
82
|
type: string;
|
|
82
83
|
defaultValue: number;
|
|
83
84
|
description: string;
|
|
84
85
|
};
|
|
85
86
|
mouseover: {
|
|
86
|
-
type: string;
|
|
87
|
-
* #getter
|
|
88
|
-
*/
|
|
87
|
+
type: string;
|
|
89
88
|
description: string;
|
|
90
89
|
defaultValue: string;
|
|
91
90
|
contextVariable: string[];
|
|
92
91
|
};
|
|
93
|
-
|
|
92
|
+
jexlFilters: {
|
|
93
|
+
type: string;
|
|
94
|
+
description: string;
|
|
95
|
+
defaultValue: never[];
|
|
96
|
+
};
|
|
97
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>; /**
|
|
98
|
+
* #action
|
|
99
|
+
*/
|
|
94
100
|
} & {
|
|
95
101
|
type: import("mobx-state-tree").ISimpleType<"LinearHicDisplay">;
|
|
96
102
|
configuration: AnyConfigurationSchemaType;
|
|
@@ -200,7 +206,9 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
200
206
|
featureIdUnderMouse: string | undefined;
|
|
201
207
|
contextMenuFeature: import("@jbrowse/core/util").Feature | undefined;
|
|
202
208
|
} & {
|
|
203
|
-
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
209
|
+
readonly blockType: "dynamicBlocks" | "staticBlocks"; /**
|
|
210
|
+
* #getter
|
|
211
|
+
*/
|
|
204
212
|
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
205
213
|
} & {
|
|
206
214
|
readonly renderDelay: number;
|
|
@@ -217,6 +225,7 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
217
225
|
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
218
226
|
deleteBlock(key: string): void;
|
|
219
227
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
228
|
+
navToFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
220
229
|
clearFeatureSelection(): void;
|
|
221
230
|
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
222
231
|
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
@@ -339,35 +348,41 @@ export default function stateModelFactory(configSchema: AnyConfigurationSchemaTy
|
|
|
339
348
|
setError(error: unknown): void;
|
|
340
349
|
reload(): void;
|
|
341
350
|
beforeDestroy(): void;
|
|
342
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
351
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>; /**
|
|
352
|
+
* #action
|
|
353
|
+
*/
|
|
343
354
|
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
344
355
|
maxFeatureScreenDensity: {
|
|
345
356
|
type: string;
|
|
346
357
|
description: string;
|
|
347
|
-
/**
|
|
348
|
-
* #property
|
|
349
|
-
*/
|
|
350
358
|
defaultValue: number;
|
|
351
359
|
};
|
|
352
360
|
fetchSizeLimit: {
|
|
353
361
|
type: string;
|
|
354
362
|
defaultValue: number;
|
|
355
363
|
description: string;
|
|
356
|
-
};
|
|
364
|
+
}; /**
|
|
365
|
+
* #property
|
|
366
|
+
*/
|
|
357
367
|
height: {
|
|
358
368
|
type: string;
|
|
359
369
|
defaultValue: number;
|
|
360
370
|
description: string;
|
|
361
371
|
};
|
|
362
372
|
mouseover: {
|
|
363
|
-
type: string;
|
|
364
|
-
* #getter
|
|
365
|
-
*/
|
|
373
|
+
type: string;
|
|
366
374
|
description: string;
|
|
367
375
|
defaultValue: string;
|
|
368
376
|
contextVariable: string[];
|
|
369
377
|
};
|
|
370
|
-
|
|
378
|
+
jexlFilters: {
|
|
379
|
+
type: string;
|
|
380
|
+
description: string;
|
|
381
|
+
defaultValue: never[];
|
|
382
|
+
};
|
|
383
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>; /**
|
|
384
|
+
* #action
|
|
385
|
+
*/
|
|
371
386
|
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
372
387
|
type: string;
|
|
373
388
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-hic",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "JBrowse 2 hic adapters, tracks, etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "935f2602d29abc737bb1f493a922b6218d023ae2"
|
|
60
60
|
}
|