@jbrowse/plugin-hic 2.6.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/LICENSE +201 -0
- package/dist/HicAdapter/HicAdapter.d.ts +32 -0
- package/dist/HicAdapter/HicAdapter.js +85 -0
- package/dist/HicAdapter/HicAdapter.js.map +1 -0
- package/dist/HicAdapter/configSchema.d.ts +13 -0
- package/dist/HicAdapter/configSchema.js +22 -0
- package/dist/HicAdapter/configSchema.js.map +1 -0
- package/dist/HicAdapter/index.d.ts +3 -0
- package/dist/HicAdapter/index.js +39 -0
- package/dist/HicAdapter/index.js.map +1 -0
- package/dist/HicRenderer/HicRenderer.d.ts +53 -0
- package/dist/HicRenderer/HicRenderer.js +126 -0
- package/dist/HicRenderer/HicRenderer.js.map +1 -0
- package/dist/HicRenderer/components/HicRendering.d.ts +10 -0
- package/dist/HicRenderer/components/HicRendering.js +16 -0
- package/dist/HicRenderer/components/HicRendering.js.map +1 -0
- package/dist/HicRenderer/configSchema.d.ts +28 -0
- package/dist/HicRenderer/configSchema.js +37 -0
- package/dist/HicRenderer/configSchema.js.map +1 -0
- package/dist/HicRenderer/index.d.ts +3 -0
- package/dist/HicRenderer/index.js +17 -0
- package/dist/HicRenderer/index.js.map +1 -0
- package/dist/HicTrack/configSchema.d.ts +75 -0
- package/dist/HicTrack/configSchema.js +17 -0
- package/dist/HicTrack/configSchema.js.map +1 -0
- package/dist/HicTrack/index.d.ts +3 -0
- package/dist/HicTrack/index.js +20 -0
- package/dist/HicTrack/index.js.map +1 -0
- package/dist/LinearHicDisplay/configSchema.d.ts +33 -0
- package/dist/LinearHicDisplay/configSchema.js +25 -0
- package/dist/LinearHicDisplay/configSchema.js.map +1 -0
- package/dist/LinearHicDisplay/index.d.ts +3 -0
- package/dist/LinearHicDisplay/index.js +24 -0
- package/dist/LinearHicDisplay/index.js.map +1 -0
- package/dist/LinearHicDisplay/model.d.ts +332 -0
- package/dist/LinearHicDisplay/model.js +95 -0
- package/dist/LinearHicDisplay/model.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +56 -0
- package/dist/index.js.map +1 -0
- package/esm/HicAdapter/HicAdapter.d.ts +32 -0
- package/esm/HicAdapter/HicAdapter.js +77 -0
- package/esm/HicAdapter/HicAdapter.js.map +1 -0
- package/esm/HicAdapter/configSchema.d.ts +13 -0
- package/esm/HicAdapter/configSchema.js +20 -0
- package/esm/HicAdapter/configSchema.js.map +1 -0
- package/esm/HicAdapter/index.d.ts +3 -0
- package/esm/HicAdapter/index.js +11 -0
- package/esm/HicAdapter/index.js.map +1 -0
- package/esm/HicRenderer/HicRenderer.d.ts +53 -0
- package/esm/HicRenderer/HicRenderer.js +97 -0
- package/esm/HicRenderer/HicRenderer.js.map +1 -0
- package/esm/HicRenderer/components/HicRendering.d.ts +10 -0
- package/esm/HicRenderer/components/HicRendering.js +11 -0
- package/esm/HicRenderer/components/HicRendering.js.map +1 -0
- package/esm/HicRenderer/configSchema.d.ts +28 -0
- package/esm/HicRenderer/configSchema.js +35 -0
- package/esm/HicRenderer/configSchema.js.map +1 -0
- package/esm/HicRenderer/index.d.ts +3 -0
- package/esm/HicRenderer/index.js +12 -0
- package/esm/HicRenderer/index.js.map +1 -0
- package/esm/HicTrack/configSchema.d.ts +75 -0
- package/esm/HicTrack/configSchema.js +15 -0
- package/esm/HicTrack/configSchema.js.map +1 -0
- package/esm/HicTrack/index.d.ts +3 -0
- package/esm/HicTrack/index.js +15 -0
- package/esm/HicTrack/index.js.map +1 -0
- package/esm/LinearHicDisplay/configSchema.d.ts +33 -0
- package/esm/LinearHicDisplay/configSchema.js +23 -0
- package/esm/LinearHicDisplay/configSchema.js.map +1 -0
- package/esm/LinearHicDisplay/index.d.ts +3 -0
- package/esm/LinearHicDisplay/index.js +19 -0
- package/esm/LinearHicDisplay/index.js.map +1 -0
- package/esm/LinearHicDisplay/model.d.ts +332 -0
- package/esm/LinearHicDisplay/model.js +93 -0
- package/esm/LinearHicDisplay/model.js.map +1 -0
- package/esm/index.d.ts +7 -0
- package/esm/index.js +50 -0
- package/esm/index.js.map +1 -0
- package/package.json +60 -0
- package/src/HicAdapter/HicAdapter.ts +150 -0
- package/src/HicAdapter/configSchema.ts +26 -0
- package/src/HicAdapter/index.ts +15 -0
- package/src/HicRenderer/HicRenderer.tsx +170 -0
- package/src/HicRenderer/components/HicRendering.test.tsx +21 -0
- package/src/HicRenderer/components/HicRendering.tsx +24 -0
- package/src/HicRenderer/components/__snapshots__/HicRendering.test.tsx.snap +14 -0
- package/src/HicRenderer/configSchema.ts +42 -0
- package/src/HicRenderer/index.ts +17 -0
- package/src/HicTrack/configSchema.ts +23 -0
- package/src/HicTrack/index.ts +16 -0
- package/src/LinearHicDisplay/configSchema.ts +33 -0
- package/src/LinearHicDisplay/index.ts +21 -0
- package/src/LinearHicDisplay/model.ts +104 -0
- package/src/declare.d.ts +2 -0
- package/src/index.ts +71 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const HicRenderer: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
2
|
+
/**
|
|
3
|
+
* #slot
|
|
4
|
+
*/
|
|
5
|
+
baseColor: {
|
|
6
|
+
type: string;
|
|
7
|
+
description: string;
|
|
8
|
+
defaultValue: string;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* #slot
|
|
12
|
+
*/
|
|
13
|
+
color: {
|
|
14
|
+
type: string;
|
|
15
|
+
description: string;
|
|
16
|
+
defaultValue: string;
|
|
17
|
+
contextVariable: string[];
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* #slot
|
|
21
|
+
*/
|
|
22
|
+
maxHeight: {
|
|
23
|
+
type: string;
|
|
24
|
+
description: string;
|
|
25
|
+
defaultValue: number;
|
|
26
|
+
};
|
|
27
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
28
|
+
export default HicRenderer;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const configuration_1 = require("@jbrowse/core/configuration");
|
|
4
|
+
/**
|
|
5
|
+
* #config HicRenderer
|
|
6
|
+
* #category renderer
|
|
7
|
+
*/
|
|
8
|
+
function x() { } // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
9
|
+
const HicRenderer = (0, configuration_1.ConfigurationSchema)('HicRenderer', {
|
|
10
|
+
/**
|
|
11
|
+
* #slot
|
|
12
|
+
*/
|
|
13
|
+
baseColor: {
|
|
14
|
+
type: 'color',
|
|
15
|
+
description: 'base color to be used in the hic alignment',
|
|
16
|
+
defaultValue: '#f00',
|
|
17
|
+
},
|
|
18
|
+
/**
|
|
19
|
+
* #slot
|
|
20
|
+
*/
|
|
21
|
+
color: {
|
|
22
|
+
type: 'color',
|
|
23
|
+
description: 'the color of each feature in a hic alignment',
|
|
24
|
+
defaultValue: `jexl:colorString(hsl(alpha(baseColor,min(1,count/(maxScore/20)))))`,
|
|
25
|
+
contextVariable: ['count', 'maxScore', 'baseColor'],
|
|
26
|
+
},
|
|
27
|
+
/**
|
|
28
|
+
* #slot
|
|
29
|
+
*/
|
|
30
|
+
maxHeight: {
|
|
31
|
+
type: 'integer',
|
|
32
|
+
description: 'the maximum height to be used in a hic rendering',
|
|
33
|
+
defaultValue: 600,
|
|
34
|
+
},
|
|
35
|
+
}, { explicitlyTyped: true });
|
|
36
|
+
exports.default = HicRenderer;
|
|
37
|
+
//# sourceMappingURL=configSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configSchema.js","sourceRoot":"","sources":["../../src/HicRenderer/configSchema.ts"],"names":[],"mappings":";;AAAA,+DAAiE;AAEjE;;;GAGG;AACH,SAAS,CAAC,KAAI,CAAC,CAAC,wDAAwD;AAExE,MAAM,WAAW,GAAG,IAAA,mCAAmB,EACrC,aAAa,EACb;IACE;;OAEG;IACH,SAAS,EAAE;QACT,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,4CAA4C;QACzD,YAAY,EAAE,MAAM;KACrB;IACD;;OAEG;IACH,KAAK,EAAE;QACL,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,8CAA8C;QAC3D,YAAY,EAAE,oEAAoE;QAClF,eAAe,EAAE,CAAC,OAAO,EAAE,UAAU,EAAE,WAAW,CAAC;KACpD;IAED;;OAEG;IACH,SAAS,EAAE;QACT,IAAI,EAAE,SAAS;QACf,WAAW,EAAE,kDAAkD;QAC/D,YAAY,EAAE,GAAG;KAClB;CACF,EACD,EAAE,eAAe,EAAE,IAAI,EAAE,CAC1B,CAAA;AAED,kBAAe,WAAW,CAAA"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const HicRendering_1 = __importDefault(require("./components/HicRendering"));
|
|
7
|
+
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
8
|
+
const HicRenderer_1 = __importDefault(require("./HicRenderer"));
|
|
9
|
+
exports.default = (pluginManager) => {
|
|
10
|
+
pluginManager.addRendererType(() => new HicRenderer_1.default({
|
|
11
|
+
name: 'HicRenderer',
|
|
12
|
+
ReactComponent: HicRendering_1.default,
|
|
13
|
+
configSchema: configSchema_1.default,
|
|
14
|
+
pluginManager,
|
|
15
|
+
}));
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/HicRenderer/index.ts"],"names":[],"mappings":";;;;;AAEA,6EAAsD;AACtD,kEAAyC;AACzC,gEAAuC;AAEvC,kBAAe,CAAC,aAA4B,EAAE,EAAE;IAC9C,aAAa,CAAC,eAAe,CAC3B,GAAG,EAAE,CACH,IAAI,qBAAW,CAAC;QACd,IAAI,EAAE,aAAa;QACnB,cAAc,EAAd,sBAAc;QACd,YAAY,EAAZ,sBAAY;QACZ,aAAa;KACd,CAAC,CACL,CAAA;AACH,CAAC,CAAA"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
+
declare const configSchema: (pluginManager: PluginManager) => import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
3
|
+
name: {
|
|
4
|
+
description: string;
|
|
5
|
+
type: string;
|
|
6
|
+
defaultValue: string;
|
|
7
|
+
};
|
|
8
|
+
assemblyNames: {
|
|
9
|
+
description: string;
|
|
10
|
+
type: string;
|
|
11
|
+
defaultValue: string[];
|
|
12
|
+
};
|
|
13
|
+
description: {
|
|
14
|
+
description: string;
|
|
15
|
+
type: string;
|
|
16
|
+
defaultValue: string;
|
|
17
|
+
};
|
|
18
|
+
category: {
|
|
19
|
+
description: string;
|
|
20
|
+
type: string;
|
|
21
|
+
defaultValue: never[];
|
|
22
|
+
};
|
|
23
|
+
metadata: {
|
|
24
|
+
type: string;
|
|
25
|
+
description: string;
|
|
26
|
+
defaultValue: {};
|
|
27
|
+
};
|
|
28
|
+
adapter: import("mobx-state-tree").IAnyModelType;
|
|
29
|
+
textSearching: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
30
|
+
indexingAttributes: {
|
|
31
|
+
type: string;
|
|
32
|
+
description: string;
|
|
33
|
+
defaultValue: string[];
|
|
34
|
+
};
|
|
35
|
+
indexingFeatureTypesToExclude: {
|
|
36
|
+
type: string;
|
|
37
|
+
description: string;
|
|
38
|
+
defaultValue: string[];
|
|
39
|
+
};
|
|
40
|
+
textSearchAdapter: import("mobx-state-tree").IAnyModelType;
|
|
41
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
42
|
+
displays: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IAnyModelType>;
|
|
43
|
+
formatDetails: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
44
|
+
feature: {
|
|
45
|
+
type: string;
|
|
46
|
+
description: string;
|
|
47
|
+
defaultValue: {};
|
|
48
|
+
contextVariable: string[];
|
|
49
|
+
};
|
|
50
|
+
subfeatures: {
|
|
51
|
+
type: string;
|
|
52
|
+
description: string;
|
|
53
|
+
defaultValue: {};
|
|
54
|
+
contextVariable: string[];
|
|
55
|
+
};
|
|
56
|
+
depth: {
|
|
57
|
+
type: string;
|
|
58
|
+
defaultValue: number;
|
|
59
|
+
description: string;
|
|
60
|
+
};
|
|
61
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
62
|
+
formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
63
|
+
config: {
|
|
64
|
+
type: string;
|
|
65
|
+
description: string;
|
|
66
|
+
defaultValue: {};
|
|
67
|
+
contextVariable: string[];
|
|
68
|
+
};
|
|
69
|
+
hideUris: {
|
|
70
|
+
type: string;
|
|
71
|
+
defaultValue: boolean;
|
|
72
|
+
};
|
|
73
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
74
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "trackId">>, undefined>>;
|
|
75
|
+
export default configSchema;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const configuration_1 = require("@jbrowse/core/configuration");
|
|
4
|
+
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
5
|
+
/**
|
|
6
|
+
* #config HicTrack
|
|
7
|
+
* #category track
|
|
8
|
+
*/
|
|
9
|
+
function x() { } // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
10
|
+
const configSchema = (pluginManager) => (0, configuration_1.ConfigurationSchema)('HicTrack', {}, {
|
|
11
|
+
/**
|
|
12
|
+
* #baseConfiguration
|
|
13
|
+
*/
|
|
14
|
+
baseConfiguration: (0, pluggableElementTypes_1.createBaseTrackConfig)(pluginManager),
|
|
15
|
+
});
|
|
16
|
+
exports.default = configSchema;
|
|
17
|
+
//# sourceMappingURL=configSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configSchema.js","sourceRoot":"","sources":["../../src/HicTrack/configSchema.ts"],"names":[],"mappings":";;AAAA,+DAAiE;AACjE,+EAA2E;AAG3E;;;GAGG;AACH,SAAS,CAAC,KAAI,CAAC,CAAC,wDAAwD;AAExE,MAAM,YAAY,GAAG,CAAC,aAA4B,EAAE,EAAE,CACpD,IAAA,mCAAmB,EACjB,UAAU,EACV,EAAE,EACF;IACE;;OAEG;IACH,iBAAiB,EAAE,IAAA,6CAAqB,EAAC,aAAa,CAAC;CACxD,CACF,CAAA;AAEH,kBAAe,YAAY,CAAA"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const TrackType_1 = __importDefault(require("@jbrowse/core/pluggableElementTypes/TrackType"));
|
|
7
|
+
const models_1 = require("@jbrowse/core/pluggableElementTypes/models");
|
|
8
|
+
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
9
|
+
exports.default = (pluginManager) => {
|
|
10
|
+
pluginManager.addTrackType(() => {
|
|
11
|
+
const configSchema = (0, configSchema_1.default)(pluginManager);
|
|
12
|
+
return new TrackType_1.default({
|
|
13
|
+
name: 'HicTrack',
|
|
14
|
+
displayName: 'Hi-C track',
|
|
15
|
+
configSchema,
|
|
16
|
+
stateModel: (0, models_1.createBaseTrackModel)(pluginManager, 'HicTrack', configSchema),
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/HicTrack/index.ts"],"names":[],"mappings":";;;;;AACA,8FAAqE;AACrE,uEAAiF;AACjF,kEAA0C;AAE1C,kBAAe,CAAC,aAA4B,EAAE,EAAE;IAC9C,aAAa,CAAC,YAAY,CAAC,GAAG,EAAE;QAC9B,MAAM,YAAY,GAAG,IAAA,sBAAa,EAAC,aAAa,CAAC,CAAA;QACjD,OAAO,IAAI,mBAAS,CAAC;YACnB,IAAI,EAAE,UAAU;YAChB,WAAW,EAAE,YAAY;YACzB,YAAY;YACZ,UAAU,EAAE,IAAA,6BAAoB,EAAC,aAAa,EAAE,UAAU,EAAE,YAAY,CAAC;SAC1E,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;AACJ,CAAC,CAAA"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Instance } from 'mobx-state-tree';
|
|
2
|
+
import PluginManager from '@jbrowse/core/PluginManager';
|
|
3
|
+
declare const HicTrackConfigFactory: (pluginManager: PluginManager) => import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
4
|
+
/**
|
|
5
|
+
* #slot
|
|
6
|
+
*/
|
|
7
|
+
renderer: import("@jbrowse/core/configuration").AnyConfigurationSchemaType;
|
|
8
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
9
|
+
maxFeatureScreenDensity: {
|
|
10
|
+
type: string;
|
|
11
|
+
description: string;
|
|
12
|
+
defaultValue: number;
|
|
13
|
+
};
|
|
14
|
+
fetchSizeLimit: {
|
|
15
|
+
type: string;
|
|
16
|
+
defaultValue: number;
|
|
17
|
+
description: string;
|
|
18
|
+
};
|
|
19
|
+
height: {
|
|
20
|
+
type: string;
|
|
21
|
+
defaultValue: number;
|
|
22
|
+
description: string;
|
|
23
|
+
};
|
|
24
|
+
mouseover: {
|
|
25
|
+
type: string;
|
|
26
|
+
description: string;
|
|
27
|
+
defaultValue: string;
|
|
28
|
+
contextVariable: string[];
|
|
29
|
+
};
|
|
30
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>;
|
|
31
|
+
export type HicTrackConfigModel = ReturnType<typeof HicTrackConfigFactory>;
|
|
32
|
+
export type HicTrackConfig = Instance<HicTrackConfigModel>;
|
|
33
|
+
export default HicTrackConfigFactory;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const configuration_1 = require("@jbrowse/core/configuration");
|
|
4
|
+
const plugin_linear_genome_view_1 = require("@jbrowse/plugin-linear-genome-view");
|
|
5
|
+
/**
|
|
6
|
+
* #config LinearHicDisplay
|
|
7
|
+
* #category display
|
|
8
|
+
*/
|
|
9
|
+
function x() { } // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
10
|
+
const HicTrackConfigFactory = (pluginManager) => {
|
|
11
|
+
return (0, configuration_1.ConfigurationSchema)('LinearHicDisplay', {
|
|
12
|
+
/**
|
|
13
|
+
* #slot
|
|
14
|
+
*/
|
|
15
|
+
renderer: pluginManager.getRendererType('HicRenderer').configSchema,
|
|
16
|
+
}, {
|
|
17
|
+
/**
|
|
18
|
+
* #baseConfiguration
|
|
19
|
+
*/
|
|
20
|
+
baseConfiguration: plugin_linear_genome_view_1.baseLinearDisplayConfigSchema,
|
|
21
|
+
explicitlyTyped: true,
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
exports.default = HicTrackConfigFactory;
|
|
25
|
+
//# sourceMappingURL=configSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configSchema.js","sourceRoot":"","sources":["../../src/LinearHicDisplay/configSchema.ts"],"names":[],"mappings":";;AAAA,+DAAiE;AACjE,kFAAkF;AAIlF;;;GAGG;AACH,SAAS,CAAC,KAAI,CAAC,CAAC,wDAAwD;AAExE,MAAM,qBAAqB,GAAG,CAAC,aAA4B,EAAE,EAAE;IAC7D,OAAO,IAAA,mCAAmB,EACxB,kBAAkB,EAClB;QACE;;WAEG;QACH,QAAQ,EAAE,aAAa,CAAC,eAAe,CAAC,aAAa,CAAC,CAAC,YAAY;KACpE,EACD;QACE;;WAEG;QACH,iBAAiB,EAAE,yDAA6B;QAChD,eAAe,EAAE,IAAI;KACtB,CACF,CAAA;AACH,CAAC,CAAA;AAID,kBAAe,qBAAqB,CAAA"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const pluggableElementTypes_1 = require("@jbrowse/core/pluggableElementTypes");
|
|
7
|
+
const plugin_linear_genome_view_1 = require("@jbrowse/plugin-linear-genome-view");
|
|
8
|
+
const configSchema_1 = __importDefault(require("./configSchema"));
|
|
9
|
+
const model_1 = __importDefault(require("./model"));
|
|
10
|
+
exports.default = (pluginManager) => {
|
|
11
|
+
pluginManager.addDisplayType(() => {
|
|
12
|
+
const configSchema = (0, configSchema_1.default)(pluginManager);
|
|
13
|
+
return new pluggableElementTypes_1.DisplayType({
|
|
14
|
+
name: 'LinearHicDisplay',
|
|
15
|
+
displayName: 'Hi-C contact matrix display',
|
|
16
|
+
configSchema,
|
|
17
|
+
stateModel: (0, model_1.default)(configSchema),
|
|
18
|
+
trackType: 'HicTrack',
|
|
19
|
+
viewType: 'LinearGenomeView',
|
|
20
|
+
ReactComponent: plugin_linear_genome_view_1.BaseLinearDisplayComponent,
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/LinearHicDisplay/index.ts"],"names":[],"mappings":";;;;;AAAA,+EAAiE;AAEjE,kFAA+E;AAE/E,kEAAgD;AAChD,oDAAuC;AAEvC,kBAAe,CAAC,aAA4B,EAAE,EAAE;IAC9C,aAAa,CAAC,cAAc,CAAC,GAAG,EAAE;QAChC,MAAM,YAAY,GAAG,IAAA,sBAAmB,EAAC,aAAa,CAAC,CAAA;QACvD,OAAO,IAAI,mCAAW,CAAC;YACrB,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,6BAA6B;YAC1C,YAAY;YACZ,UAAU,EAAE,IAAA,eAAiB,EAAC,YAAY,CAAC;YAC3C,SAAS,EAAE,UAAU;YACrB,QAAQ,EAAE,kBAAkB;YAC5B,cAAc,EAAE,sDAA0B;SAC3C,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;AACJ,CAAC,CAAA"}
|
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
3
|
+
declare const _default: (configSchema: AnyConfigurationSchemaType) => import("mobx-state-tree").IModelType<{
|
|
4
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5
|
+
type: import("mobx-state-tree").ISimpleType<string>;
|
|
6
|
+
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
7
|
+
} & {
|
|
8
|
+
heightPreConfig: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
9
|
+
} & {
|
|
10
|
+
userBpPerPxLimit: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
11
|
+
userByteSizeLimit: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
12
|
+
} & {
|
|
13
|
+
blockState: import("mobx-state-tree").IMapType<import("mobx-state-tree").IModelType<{
|
|
14
|
+
key: import("mobx-state-tree").ISimpleType<string>;
|
|
15
|
+
region: import("mobx-state-tree").IModelType<{
|
|
16
|
+
refName: import("mobx-state-tree").ISimpleType<string>;
|
|
17
|
+
start: import("mobx-state-tree").ISimpleType<number>;
|
|
18
|
+
end: import("mobx-state-tree").ISimpleType<number>;
|
|
19
|
+
reversed: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
20
|
+
} & {
|
|
21
|
+
assemblyName: import("mobx-state-tree").ISimpleType<string>;
|
|
22
|
+
}, {
|
|
23
|
+
setRefName(newRefName: string): void;
|
|
24
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
25
|
+
reloadFlag: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
26
|
+
isLeftEndOfDisplayedRegion: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
27
|
+
isRightEndOfDisplayedRegion: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
28
|
+
}, {
|
|
29
|
+
renderInProgress: AbortController | undefined;
|
|
30
|
+
filled: boolean;
|
|
31
|
+
reactElement: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
32
|
+
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
33
|
+
layout: any;
|
|
34
|
+
status: string;
|
|
35
|
+
error: unknown;
|
|
36
|
+
message: string | undefined;
|
|
37
|
+
maxHeightReached: boolean;
|
|
38
|
+
ReactComponent: ({ model, }: {
|
|
39
|
+
model: any;
|
|
40
|
+
}) => any;
|
|
41
|
+
renderProps: any;
|
|
42
|
+
} & {
|
|
43
|
+
doReload(): void;
|
|
44
|
+
afterAttach(): void;
|
|
45
|
+
setStatus(message: string): void;
|
|
46
|
+
setLoading(abortController: AbortController): void;
|
|
47
|
+
setMessage(messageText: string): void;
|
|
48
|
+
setRendered(props: {
|
|
49
|
+
reactElement: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
50
|
+
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
51
|
+
layout: any;
|
|
52
|
+
maxHeightReached: boolean;
|
|
53
|
+
renderProps: any;
|
|
54
|
+
} | undefined): void;
|
|
55
|
+
setError(error: unknown): void;
|
|
56
|
+
reload(): void;
|
|
57
|
+
beforeDestroy(): void;
|
|
58
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
59
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
60
|
+
maxFeatureScreenDensity: {
|
|
61
|
+
type: string;
|
|
62
|
+
description: string;
|
|
63
|
+
defaultValue: number;
|
|
64
|
+
};
|
|
65
|
+
fetchSizeLimit: {
|
|
66
|
+
type: string;
|
|
67
|
+
defaultValue: number;
|
|
68
|
+
description: string;
|
|
69
|
+
};
|
|
70
|
+
height: {
|
|
71
|
+
type: string;
|
|
72
|
+
defaultValue: number;
|
|
73
|
+
description: string;
|
|
74
|
+
};
|
|
75
|
+
mouseover: {
|
|
76
|
+
type: string;
|
|
77
|
+
description: string;
|
|
78
|
+
defaultValue: string;
|
|
79
|
+
contextVariable: string[];
|
|
80
|
+
};
|
|
81
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
82
|
+
} & {
|
|
83
|
+
/**
|
|
84
|
+
* #property
|
|
85
|
+
*/
|
|
86
|
+
type: import("mobx-state-tree").ISimpleType<"LinearHicDisplay">;
|
|
87
|
+
/**
|
|
88
|
+
* #property
|
|
89
|
+
*/
|
|
90
|
+
configuration: AnyConfigurationSchemaType;
|
|
91
|
+
/**
|
|
92
|
+
* #property
|
|
93
|
+
*/
|
|
94
|
+
resolution: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
95
|
+
}, {
|
|
96
|
+
rendererTypeName: string;
|
|
97
|
+
error: unknown;
|
|
98
|
+
message: string | undefined;
|
|
99
|
+
} & {
|
|
100
|
+
readonly RenderingComponent: import("react").FC<{
|
|
101
|
+
model: {
|
|
102
|
+
id: string;
|
|
103
|
+
type: string;
|
|
104
|
+
rpcDriverName: string | undefined;
|
|
105
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
106
|
+
rendererTypeName: string;
|
|
107
|
+
error: unknown;
|
|
108
|
+
message: string | undefined;
|
|
109
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
110
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
111
|
+
type: import("mobx-state-tree").ISimpleType<string>;
|
|
112
|
+
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
113
|
+
}, {
|
|
114
|
+
rendererTypeName: string;
|
|
115
|
+
error: unknown;
|
|
116
|
+
message: string | undefined;
|
|
117
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
118
|
+
onHorizontalScroll?: Function | undefined;
|
|
119
|
+
blockState?: Record<string, any> | undefined;
|
|
120
|
+
}>;
|
|
121
|
+
readonly DisplayBlurb: import("react").FC<{
|
|
122
|
+
model: {
|
|
123
|
+
id: string;
|
|
124
|
+
type: string;
|
|
125
|
+
rpcDriverName: string | undefined;
|
|
126
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
127
|
+
rendererTypeName: string;
|
|
128
|
+
error: unknown;
|
|
129
|
+
message: string | undefined;
|
|
130
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
131
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
132
|
+
type: import("mobx-state-tree").ISimpleType<string>;
|
|
133
|
+
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
134
|
+
}, {
|
|
135
|
+
rendererTypeName: string;
|
|
136
|
+
error: unknown;
|
|
137
|
+
message: string | undefined;
|
|
138
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
139
|
+
}> | null;
|
|
140
|
+
readonly adapterConfig: any;
|
|
141
|
+
readonly parentTrack: any;
|
|
142
|
+
renderProps(): any;
|
|
143
|
+
readonly rendererType: import("@jbrowse/core/pluggableElementTypes").RendererType;
|
|
144
|
+
readonly DisplayMessageComponent: import("react").FC<any> | undefined;
|
|
145
|
+
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
146
|
+
readonly viewMenuActions: import("@jbrowse/core/ui").MenuItem[];
|
|
147
|
+
regionCannotBeRendered(): null;
|
|
148
|
+
} & {
|
|
149
|
+
setMessage(arg?: string | undefined): void;
|
|
150
|
+
setError(error?: unknown): void;
|
|
151
|
+
setRpcDriverName(rpcDriverName: string): void;
|
|
152
|
+
reload(): void;
|
|
153
|
+
} & {
|
|
154
|
+
scrollTop: number;
|
|
155
|
+
} & {
|
|
156
|
+
readonly height: number;
|
|
157
|
+
} & {
|
|
158
|
+
setScrollTop(scrollTop: number): void;
|
|
159
|
+
setHeight(displayHeight: number): number;
|
|
160
|
+
resizeHeight(distance: number): number;
|
|
161
|
+
} & {
|
|
162
|
+
featureDensityStatsP: Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats> | undefined;
|
|
163
|
+
featureDensityStats: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats | undefined;
|
|
164
|
+
currStatsBpPerPx: number;
|
|
165
|
+
} & {
|
|
166
|
+
readonly currentBytesRequested: number;
|
|
167
|
+
readonly currentFeatureScreenDensity: number;
|
|
168
|
+
readonly maxFeatureScreenDensity: any;
|
|
169
|
+
readonly featureDensityStatsReady: boolean;
|
|
170
|
+
readonly maxAllowableBytes: number;
|
|
171
|
+
} & {
|
|
172
|
+
afterAttach(): void;
|
|
173
|
+
} & {
|
|
174
|
+
setCurrStatsBpPerPx(n: number): void;
|
|
175
|
+
setFeatureDensityStatsLimit(stats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats | undefined): void;
|
|
176
|
+
getFeatureDensityStats(): Promise<import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats>;
|
|
177
|
+
setFeatureDensityStatsP(arg: any): void;
|
|
178
|
+
setFeatureDensityStats(featureDensityStats?: import("@jbrowse/core/data_adapters/BaseAdapter").FeatureDensityStats | undefined): void;
|
|
179
|
+
clearFeatureDensityStats(): void;
|
|
180
|
+
} & {
|
|
181
|
+
readonly regionTooLarge: boolean;
|
|
182
|
+
readonly regionTooLargeReason: string;
|
|
183
|
+
} & {
|
|
184
|
+
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
185
|
+
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react").JSX.Element | null;
|
|
186
|
+
} & {
|
|
187
|
+
featureIdUnderMouse: string | undefined;
|
|
188
|
+
contextMenuFeature: import("@jbrowse/core/util").Feature | undefined;
|
|
189
|
+
} & {
|
|
190
|
+
readonly blockType: "dynamicBlocks" | "staticBlocks";
|
|
191
|
+
readonly blockDefinitions: import("@jbrowse/core/util/blockTypes").BlockSet;
|
|
192
|
+
} & {
|
|
193
|
+
readonly renderDelay: number;
|
|
194
|
+
readonly TooltipComponent: import("react").FC<any>;
|
|
195
|
+
readonly selectedFeatureId: string | undefined;
|
|
196
|
+
readonly DisplayMessageComponent: import("react").FC<any> | undefined;
|
|
197
|
+
} & {
|
|
198
|
+
readonly features: import("@jbrowse/core/util/compositeMap").default<string, import("@jbrowse/core/util").Feature>;
|
|
199
|
+
readonly featureUnderMouse: import("@jbrowse/core/util").Feature | undefined;
|
|
200
|
+
getFeatureOverlapping(blockKey: string, x: number, y: number): string | undefined;
|
|
201
|
+
getFeatureByID(blockKey: string, id: string): [number, number, number, number] | undefined;
|
|
202
|
+
searchFeatureByID(id: string): [number, number, number, number] | undefined;
|
|
203
|
+
} & {
|
|
204
|
+
addBlock(key: string, block: import("@jbrowse/core/util/blockTypes").BaseBlock): void;
|
|
205
|
+
deleteBlock(key: string): void;
|
|
206
|
+
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
207
|
+
clearFeatureSelection(): void;
|
|
208
|
+
setFeatureIdUnderMouse(feature?: string | undefined): void;
|
|
209
|
+
setContextMenuFeature(feature?: import("@jbrowse/core/util").Feature | undefined): void;
|
|
210
|
+
} & {
|
|
211
|
+
reload(): Promise<void>;
|
|
212
|
+
} & {
|
|
213
|
+
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
214
|
+
contextMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
215
|
+
renderProps(): any;
|
|
216
|
+
} & {
|
|
217
|
+
renderSvg(opts: import("@jbrowse/plugin-linear-genome-view").ExportSvgDisplayOptions): Promise<import("react").JSX.Element>;
|
|
218
|
+
afterAttach(): void;
|
|
219
|
+
} & {
|
|
220
|
+
/**
|
|
221
|
+
* #getter
|
|
222
|
+
*/
|
|
223
|
+
readonly blockType: string;
|
|
224
|
+
/**
|
|
225
|
+
* #getter
|
|
226
|
+
*/
|
|
227
|
+
readonly rendererTypeName: string;
|
|
228
|
+
/**
|
|
229
|
+
* #method
|
|
230
|
+
*/
|
|
231
|
+
renderProps(): any;
|
|
232
|
+
} & {
|
|
233
|
+
/**
|
|
234
|
+
* #action
|
|
235
|
+
*/
|
|
236
|
+
setResolution(n: number): void;
|
|
237
|
+
} & {
|
|
238
|
+
/**
|
|
239
|
+
* #getter
|
|
240
|
+
*/
|
|
241
|
+
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
242
|
+
}, {
|
|
243
|
+
type: string;
|
|
244
|
+
} & Partial<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
245
|
+
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
246
|
+
type: import("mobx-state-tree").ISimpleType<string>;
|
|
247
|
+
rpcDriverName: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
248
|
+
} & {
|
|
249
|
+
heightPreConfig: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
250
|
+
} & {
|
|
251
|
+
userBpPerPxLimit: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
252
|
+
userByteSizeLimit: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
253
|
+
} & {
|
|
254
|
+
blockState: import("mobx-state-tree").IMapType<import("mobx-state-tree").IModelType<{
|
|
255
|
+
key: import("mobx-state-tree").ISimpleType<string>;
|
|
256
|
+
region: import("mobx-state-tree").IModelType<{
|
|
257
|
+
refName: import("mobx-state-tree").ISimpleType<string>;
|
|
258
|
+
start: import("mobx-state-tree").ISimpleType<number>;
|
|
259
|
+
end: import("mobx-state-tree").ISimpleType<number>;
|
|
260
|
+
reversed: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
261
|
+
} & {
|
|
262
|
+
assemblyName: import("mobx-state-tree").ISimpleType<string>;
|
|
263
|
+
}, {
|
|
264
|
+
setRefName(newRefName: string): void;
|
|
265
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
266
|
+
reloadFlag: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
267
|
+
isLeftEndOfDisplayedRegion: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
268
|
+
isRightEndOfDisplayedRegion: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
269
|
+
}, {
|
|
270
|
+
renderInProgress: AbortController | undefined;
|
|
271
|
+
filled: boolean;
|
|
272
|
+
reactElement: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
273
|
+
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
274
|
+
layout: any;
|
|
275
|
+
status: string;
|
|
276
|
+
error: unknown;
|
|
277
|
+
message: string | undefined;
|
|
278
|
+
maxHeightReached: boolean;
|
|
279
|
+
ReactComponent: ({ model, }: {
|
|
280
|
+
model: any;
|
|
281
|
+
}) => any;
|
|
282
|
+
renderProps: any;
|
|
283
|
+
} & {
|
|
284
|
+
doReload(): void;
|
|
285
|
+
afterAttach(): void;
|
|
286
|
+
setStatus(message: string): void;
|
|
287
|
+
setLoading(abortController: AbortController): void;
|
|
288
|
+
setMessage(messageText: string): void;
|
|
289
|
+
setRendered(props: {
|
|
290
|
+
reactElement: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
|
|
291
|
+
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
292
|
+
layout: any;
|
|
293
|
+
maxHeightReached: boolean;
|
|
294
|
+
renderProps: any;
|
|
295
|
+
} | undefined): void;
|
|
296
|
+
setError(error: unknown): void;
|
|
297
|
+
reload(): void;
|
|
298
|
+
beforeDestroy(): void;
|
|
299
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
300
|
+
configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
301
|
+
maxFeatureScreenDensity: {
|
|
302
|
+
type: string;
|
|
303
|
+
description: string;
|
|
304
|
+
defaultValue: number;
|
|
305
|
+
};
|
|
306
|
+
fetchSizeLimit: {
|
|
307
|
+
type: string;
|
|
308
|
+
defaultValue: number;
|
|
309
|
+
description: string;
|
|
310
|
+
};
|
|
311
|
+
height: {
|
|
312
|
+
type: string;
|
|
313
|
+
defaultValue: number;
|
|
314
|
+
description: string;
|
|
315
|
+
};
|
|
316
|
+
mouseover: {
|
|
317
|
+
type: string;
|
|
318
|
+
description: string;
|
|
319
|
+
defaultValue: string;
|
|
320
|
+
contextVariable: string[];
|
|
321
|
+
};
|
|
322
|
+
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
|
|
323
|
+
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
324
|
+
type: string;
|
|
325
|
+
id: string;
|
|
326
|
+
configuration: import("mobx-state-tree").ModelSnapshotType<Record<string, any>>;
|
|
327
|
+
rpcDriverName: string | undefined;
|
|
328
|
+
heightPreConfig: number | undefined;
|
|
329
|
+
userBpPerPxLimit: number | undefined;
|
|
330
|
+
userByteSizeLimit: number | undefined;
|
|
331
|
+
} & import("mobx-state-tree")._NotCustomized>;
|
|
332
|
+
export default _default;
|