@jbrowse/plugin-gccontent 2.16.1 → 2.18.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/GCContentAdapter/GCContentAdapter.d.ts +5 -9
- package/dist/GCContentAdapter/GCContentAdapter.js +47 -42
- package/dist/GCContentAdapter/configSchema.d.ts +1 -10
- package/dist/GCContentAdapter/configSchema.js +1 -14
- package/dist/GCContentAdapter/index.d.ts +1 -1
- package/dist/GCContentTrack/configSchema.d.ts +1 -1
- package/dist/GCContentTrack/configSchema.js +1 -8
- package/dist/GCContentTrack/index.d.ts +1 -1
- package/dist/LinearGCContentDisplay/components/EditGCContentParams.js +3 -3
- package/dist/LinearGCContentDisplay/config1.d.ts +1 -6
- package/dist/LinearGCContentDisplay/config1.js +0 -8
- package/dist/LinearGCContentDisplay/config2.d.ts +1 -6
- package/dist/LinearGCContentDisplay/config2.js +0 -8
- package/dist/LinearGCContentDisplay/index.d.ts +1 -1
- package/dist/LinearGCContentDisplay/shared.d.ts +16 -43
- package/dist/LinearGCContentDisplay/shared.js +4 -21
- package/dist/LinearGCContentDisplay/stateModel1.d.ts +16 -29
- package/dist/LinearGCContentDisplay/stateModel1.js +0 -6
- package/dist/LinearGCContentDisplay/stateModel2.d.ts +16 -34
- package/dist/LinearGCContentDisplay/stateModel2.js +0 -11
- package/dist/index.d.ts +1 -1
- package/dist/index.js +0 -1
- package/esm/GCContentAdapter/GCContentAdapter.d.ts +5 -9
- package/esm/GCContentAdapter/GCContentAdapter.js +47 -42
- package/esm/GCContentAdapter/configSchema.d.ts +1 -10
- package/esm/GCContentAdapter/configSchema.js +1 -14
- package/esm/GCContentAdapter/index.d.ts +1 -1
- package/esm/GCContentTrack/configSchema.d.ts +1 -1
- package/esm/GCContentTrack/configSchema.js +1 -8
- package/esm/GCContentTrack/index.d.ts +1 -1
- package/esm/LinearGCContentDisplay/components/EditGCContentParams.js +3 -3
- package/esm/LinearGCContentDisplay/config1.d.ts +1 -6
- package/esm/LinearGCContentDisplay/config1.js +0 -8
- package/esm/LinearGCContentDisplay/config2.d.ts +1 -6
- package/esm/LinearGCContentDisplay/config2.js +0 -8
- package/esm/LinearGCContentDisplay/index.d.ts +1 -1
- package/esm/LinearGCContentDisplay/shared.d.ts +16 -43
- package/esm/LinearGCContentDisplay/shared.js +5 -22
- package/esm/LinearGCContentDisplay/stateModel1.d.ts +16 -29
- package/esm/LinearGCContentDisplay/stateModel1.js +0 -6
- package/esm/LinearGCContentDisplay/stateModel2.d.ts +16 -34
- package/esm/LinearGCContentDisplay/stateModel2.js +0 -11
- package/esm/index.d.ts +1 -1
- package/esm/index.js +0 -1
- package/package.json +2 -2
|
@@ -1,25 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { lazy } from 'react';
|
|
2
|
+
import { getConf } from '@jbrowse/core/configuration';
|
|
2
3
|
import { getSession } from '@jbrowse/core/util';
|
|
3
4
|
import { linearWiggleDisplayModelFactory } from '@jbrowse/plugin-wiggle';
|
|
4
5
|
import { types } from 'mobx-state-tree';
|
|
5
|
-
import { lazy } from 'react';
|
|
6
6
|
const EditGCContentParamsDialog = lazy(() => import('./components/EditGCContentParams'));
|
|
7
|
-
/**
|
|
8
|
-
* #stateModel SharedGCContentModel
|
|
9
|
-
* #category display
|
|
10
|
-
* extends
|
|
11
|
-
* - [LinearWiggleDisplay](../linearwiggledisplay)
|
|
12
|
-
*/
|
|
13
7
|
export default function SharedModelF(pluginManager, configSchema) {
|
|
14
8
|
return types
|
|
15
9
|
.compose('SharedGCContentModel', linearWiggleDisplayModelFactory(pluginManager, configSchema), types.model({
|
|
16
|
-
/**
|
|
17
|
-
* #property
|
|
18
|
-
*/
|
|
19
10
|
windowSize: types.maybe(types.number),
|
|
20
|
-
/**
|
|
21
|
-
* #property
|
|
22
|
-
*/
|
|
23
11
|
windowDelta: types.maybe(types.number),
|
|
24
12
|
}))
|
|
25
13
|
.actions(self => ({
|
|
@@ -39,7 +27,7 @@ export default function SharedModelF(pluginManager, configSchema) {
|
|
|
39
27
|
},
|
|
40
28
|
}))
|
|
41
29
|
.views(self => {
|
|
42
|
-
const { trackMenuItems: superTrackMenuItems,
|
|
30
|
+
const { trackMenuItems: superTrackMenuItems, adapterProps: superAdapterProps, } = self;
|
|
43
31
|
return {
|
|
44
32
|
trackMenuItems() {
|
|
45
33
|
return [
|
|
@@ -55,15 +43,10 @@ export default function SharedModelF(pluginManager, configSchema) {
|
|
|
55
43
|
},
|
|
56
44
|
];
|
|
57
45
|
},
|
|
58
|
-
|
|
59
|
-
* #method
|
|
60
|
-
* retrieves the sequence adapter from parent track, and puts it as a
|
|
61
|
-
* subadapter on a GCContentAdapter
|
|
62
|
-
*/
|
|
63
|
-
renderProps() {
|
|
46
|
+
adapterProps() {
|
|
64
47
|
const sequenceAdapter = getConf(self.parentTrack, 'adapter');
|
|
65
48
|
return {
|
|
66
|
-
...
|
|
49
|
+
...superAdapterProps(),
|
|
67
50
|
adapterConfig: {
|
|
68
51
|
type: 'GCContentAdapter',
|
|
69
52
|
sequenceAdapter,
|
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
/**
|
|
4
|
-
* #stateModel LinearGCContentDisplay
|
|
5
|
-
* #category display
|
|
6
|
-
* base model `SharedGCContentModel`
|
|
7
|
-
*/
|
|
1
|
+
import type PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
+
import type { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
8
3
|
export default function stateModelF(pluginManager: PluginManager, configSchema: AnyConfigurationSchemaType): import("mobx-state-tree").IModelType<{
|
|
9
4
|
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10
5
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -17,21 +12,12 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
17
12
|
} & {
|
|
18
13
|
blockState: import("mobx-state-tree").IMapType<import("mobx-state-tree").IModelType<{
|
|
19
14
|
key: import("mobx-state-tree").ISimpleType<string>;
|
|
20
|
-
region: import("mobx-state-tree").
|
|
21
|
-
refName: import("mobx-state-tree").ISimpleType<string>;
|
|
22
|
-
start: import("mobx-state-tree").ISimpleType<number>;
|
|
23
|
-
end: import("mobx-state-tree").ISimpleType<number>;
|
|
24
|
-
reversed: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
25
|
-
} & {
|
|
26
|
-
assemblyName: import("mobx-state-tree").ISimpleType<string>;
|
|
27
|
-
}, {
|
|
28
|
-
setRefName(newRefName: string): void;
|
|
29
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
15
|
+
region: import("mobx-state-tree").IType<import("@jbrowse/core/util").Region, import("@jbrowse/core/util").Region, import("@jbrowse/core/util").Region>;
|
|
30
16
|
reloadFlag: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
31
17
|
isLeftEndOfDisplayedRegion: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
32
18
|
isRightEndOfDisplayedRegion: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
33
19
|
}, {
|
|
34
|
-
|
|
20
|
+
stopToken: string | undefined;
|
|
35
21
|
filled: boolean;
|
|
36
22
|
reactElement: React.ReactElement | undefined;
|
|
37
23
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
@@ -55,15 +41,9 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
55
41
|
doReload(): void;
|
|
56
42
|
afterAttach(): void;
|
|
57
43
|
setStatus(message: string): void;
|
|
58
|
-
setLoading(
|
|
44
|
+
setLoading(newStopToken: string): void;
|
|
59
45
|
setMessage(messageText: string): void;
|
|
60
|
-
setRendered(props:
|
|
61
|
-
reactElement: React.ReactElement;
|
|
62
|
-
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
63
|
-
layout: any;
|
|
64
|
-
maxHeightReached: boolean;
|
|
65
|
-
renderProps: any;
|
|
66
|
-
} | undefined): void;
|
|
46
|
+
setRendered(props: import("@jbrowse/plugin-linear-genome-view/src/BaseLinearDisplay/models/serverSideRenderedBlock").RenderedProps | undefined): void;
|
|
67
47
|
setError(error: unknown): void;
|
|
68
48
|
reload(): void;
|
|
69
49
|
beforeDestroy(): void;
|
|
@@ -210,6 +190,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
210
190
|
readonly regionTooLarge: boolean;
|
|
211
191
|
readonly regionTooLargeReason: string;
|
|
212
192
|
} & {
|
|
193
|
+
readonly statsReadyAndRegionNotTooLarge: boolean;
|
|
213
194
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
214
195
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react").JSX.Element | null;
|
|
215
196
|
} & {
|
|
@@ -249,19 +230,21 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
249
230
|
} & {
|
|
250
231
|
message: undefined | string;
|
|
251
232
|
stats: {
|
|
233
|
+
currStatsBpPerPx: number;
|
|
252
234
|
scoreMin: number;
|
|
253
235
|
scoreMax: number;
|
|
254
236
|
} | undefined;
|
|
255
|
-
statsFetchInProgress: undefined |
|
|
237
|
+
statsFetchInProgress: undefined | string;
|
|
256
238
|
} & {
|
|
257
239
|
updateQuantitativeStats(stats: {
|
|
240
|
+
currStatsBpPerPx: number;
|
|
258
241
|
scoreMin: number;
|
|
259
242
|
scoreMax: number;
|
|
260
243
|
}): void;
|
|
261
244
|
setColor(color?: string): void;
|
|
262
245
|
setPosColor(color?: string): void;
|
|
263
246
|
setNegColor(color?: string): void;
|
|
264
|
-
|
|
247
|
+
setStatsLoading(arg?: string): void;
|
|
265
248
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
266
249
|
setResolution(res: number): void;
|
|
267
250
|
setFill(fill: number): void;
|
|
@@ -303,6 +286,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
303
286
|
readonly scaleOpts: {
|
|
304
287
|
domain: number[] | undefined;
|
|
305
288
|
stats: {
|
|
289
|
+
currStatsBpPerPx: number;
|
|
306
290
|
scoreMin: number;
|
|
307
291
|
scoreMax: number;
|
|
308
292
|
} | undefined;
|
|
@@ -341,7 +325,9 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
341
325
|
} & {
|
|
342
326
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
343
327
|
readonly rendererTypeName: string;
|
|
328
|
+
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
344
329
|
} & {
|
|
330
|
+
adapterProps(): any;
|
|
345
331
|
readonly ticks: {
|
|
346
332
|
range: number[];
|
|
347
333
|
values: number[];
|
|
@@ -352,6 +338,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
352
338
|
renderProps(): any;
|
|
353
339
|
readonly needsScalebar: boolean;
|
|
354
340
|
readonly fillSetting: 1 | 2 | 0;
|
|
341
|
+
readonly quantitativeStatsReady: boolean;
|
|
355
342
|
} & {
|
|
356
343
|
trackMenuItems(): (import("@jbrowse/core/ui").MenuDivider | import("@jbrowse/core/ui").MenuSubHeader | import("@jbrowse/core/ui").NormalMenuItem | import("@jbrowse/core/ui").CheckboxMenuItem | import("@jbrowse/core/ui").RadioMenuItem | import("@jbrowse/core/ui").SubMenuItem | {
|
|
357
344
|
label: string;
|
|
@@ -410,5 +397,5 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
410
397
|
readonly windowDeltaSetting: any;
|
|
411
398
|
} & {
|
|
412
399
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
413
|
-
|
|
400
|
+
adapterProps(): any;
|
|
414
401
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
import { types } from 'mobx-state-tree';
|
|
2
|
-
// locals
|
|
3
2
|
import SharedModelF from './shared';
|
|
4
|
-
/**
|
|
5
|
-
* #stateModel LinearGCContentDisplay
|
|
6
|
-
* #category display
|
|
7
|
-
* base model `SharedGCContentModel`
|
|
8
|
-
*/
|
|
9
3
|
export default function stateModelF(pluginManager, configSchema) {
|
|
10
4
|
return types.compose('LinearGCContentDisplay', SharedModelF(pluginManager, configSchema), types.model({
|
|
11
5
|
type: types.literal('LinearGCContentDisplay'),
|
|
@@ -1,15 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
/**
|
|
4
|
-
* #stateModel LinearGCContentTrackDisplay
|
|
5
|
-
* #category display
|
|
6
|
-
*
|
|
7
|
-
* used on GCContentTrack, separately from the display type on the
|
|
8
|
-
* ReferenceSequenceTrack
|
|
9
|
-
*
|
|
10
|
-
* extends
|
|
11
|
-
* - [SharedGCContentModel](../sharedgccontentmodel)
|
|
12
|
-
*/
|
|
1
|
+
import type PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
+
import type { AnyConfigurationSchemaType } from '@jbrowse/core/configuration';
|
|
13
3
|
export default function stateModelF(pluginManager: PluginManager, configSchema: AnyConfigurationSchemaType): import("mobx-state-tree").IModelType<{
|
|
14
4
|
id: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
15
5
|
type: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -22,21 +12,12 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
22
12
|
} & {
|
|
23
13
|
blockState: import("mobx-state-tree").IMapType<import("mobx-state-tree").IModelType<{
|
|
24
14
|
key: import("mobx-state-tree").ISimpleType<string>;
|
|
25
|
-
region: import("mobx-state-tree").
|
|
26
|
-
refName: import("mobx-state-tree").ISimpleType<string>;
|
|
27
|
-
start: import("mobx-state-tree").ISimpleType<number>;
|
|
28
|
-
end: import("mobx-state-tree").ISimpleType<number>;
|
|
29
|
-
reversed: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
30
|
-
} & {
|
|
31
|
-
assemblyName: import("mobx-state-tree").ISimpleType<string>;
|
|
32
|
-
}, {
|
|
33
|
-
setRefName(newRefName: string): void;
|
|
34
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
15
|
+
region: import("mobx-state-tree").IType<import("@jbrowse/core/util").Region, import("@jbrowse/core/util").Region, import("@jbrowse/core/util").Region>;
|
|
35
16
|
reloadFlag: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
36
17
|
isLeftEndOfDisplayedRegion: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
37
18
|
isRightEndOfDisplayedRegion: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
38
19
|
}, {
|
|
39
|
-
|
|
20
|
+
stopToken: string | undefined;
|
|
40
21
|
filled: boolean;
|
|
41
22
|
reactElement: React.ReactElement | undefined;
|
|
42
23
|
features: Map<string, import("@jbrowse/core/util").Feature> | undefined;
|
|
@@ -60,15 +41,9 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
60
41
|
doReload(): void;
|
|
61
42
|
afterAttach(): void;
|
|
62
43
|
setStatus(message: string): void;
|
|
63
|
-
setLoading(
|
|
44
|
+
setLoading(newStopToken: string): void;
|
|
64
45
|
setMessage(messageText: string): void;
|
|
65
|
-
setRendered(props:
|
|
66
|
-
reactElement: React.ReactElement;
|
|
67
|
-
features: Map<string, import("@jbrowse/core/util").Feature>;
|
|
68
|
-
layout: any;
|
|
69
|
-
maxHeightReached: boolean;
|
|
70
|
-
renderProps: any;
|
|
71
|
-
} | undefined): void;
|
|
46
|
+
setRendered(props: import("@jbrowse/plugin-linear-genome-view/src/BaseLinearDisplay/models/serverSideRenderedBlock").RenderedProps | undefined): void;
|
|
72
47
|
setError(error: unknown): void;
|
|
73
48
|
reload(): void;
|
|
74
49
|
beforeDestroy(): void;
|
|
@@ -215,6 +190,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
215
190
|
readonly regionTooLarge: boolean;
|
|
216
191
|
readonly regionTooLargeReason: string;
|
|
217
192
|
} & {
|
|
193
|
+
readonly statsReadyAndRegionNotTooLarge: boolean;
|
|
218
194
|
regionCannotBeRenderedText(_region: import("@jbrowse/core/util").Region): "" | "Force load to see features";
|
|
219
195
|
regionCannotBeRendered(_region: import("@jbrowse/core/util").Region): import("react").JSX.Element | null;
|
|
220
196
|
} & {
|
|
@@ -254,19 +230,21 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
254
230
|
} & {
|
|
255
231
|
message: undefined | string;
|
|
256
232
|
stats: {
|
|
233
|
+
currStatsBpPerPx: number;
|
|
257
234
|
scoreMin: number;
|
|
258
235
|
scoreMax: number;
|
|
259
236
|
} | undefined;
|
|
260
|
-
statsFetchInProgress: undefined |
|
|
237
|
+
statsFetchInProgress: undefined | string;
|
|
261
238
|
} & {
|
|
262
239
|
updateQuantitativeStats(stats: {
|
|
240
|
+
currStatsBpPerPx: number;
|
|
263
241
|
scoreMin: number;
|
|
264
242
|
scoreMax: number;
|
|
265
243
|
}): void;
|
|
266
244
|
setColor(color?: string): void;
|
|
267
245
|
setPosColor(color?: string): void;
|
|
268
246
|
setNegColor(color?: string): void;
|
|
269
|
-
|
|
247
|
+
setStatsLoading(arg?: string): void;
|
|
270
248
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
271
249
|
setResolution(res: number): void;
|
|
272
250
|
setFill(fill: number): void;
|
|
@@ -308,6 +286,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
308
286
|
readonly scaleOpts: {
|
|
309
287
|
domain: number[] | undefined;
|
|
310
288
|
stats: {
|
|
289
|
+
currStatsBpPerPx: number;
|
|
311
290
|
scoreMin: number;
|
|
312
291
|
scoreMax: number;
|
|
313
292
|
} | undefined;
|
|
@@ -346,7 +325,9 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
346
325
|
} & {
|
|
347
326
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
348
327
|
readonly rendererTypeName: string;
|
|
328
|
+
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
349
329
|
} & {
|
|
330
|
+
adapterProps(): any;
|
|
350
331
|
readonly ticks: {
|
|
351
332
|
range: number[];
|
|
352
333
|
values: number[];
|
|
@@ -357,6 +338,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
357
338
|
renderProps(): any;
|
|
358
339
|
readonly needsScalebar: boolean;
|
|
359
340
|
readonly fillSetting: 1 | 2 | 0;
|
|
341
|
+
readonly quantitativeStatsReady: boolean;
|
|
360
342
|
} & {
|
|
361
343
|
trackMenuItems(): (import("@jbrowse/core/ui").MenuDivider | import("@jbrowse/core/ui").MenuSubHeader | import("@jbrowse/core/ui").NormalMenuItem | import("@jbrowse/core/ui").CheckboxMenuItem | import("@jbrowse/core/ui").RadioMenuItem | import("@jbrowse/core/ui").SubMenuItem | {
|
|
362
344
|
label: string;
|
|
@@ -415,5 +397,5 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
415
397
|
readonly windowDeltaSetting: any;
|
|
416
398
|
} & {
|
|
417
399
|
trackMenuItems(): import("@jbrowse/core/ui").MenuItem[];
|
|
418
|
-
|
|
400
|
+
adapterProps(): any;
|
|
419
401
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
@@ -1,16 +1,5 @@
|
|
|
1
1
|
import { types } from 'mobx-state-tree';
|
|
2
|
-
// locals
|
|
3
2
|
import SharedModelF from './shared';
|
|
4
|
-
/**
|
|
5
|
-
* #stateModel LinearGCContentTrackDisplay
|
|
6
|
-
* #category display
|
|
7
|
-
*
|
|
8
|
-
* used on GCContentTrack, separately from the display type on the
|
|
9
|
-
* ReferenceSequenceTrack
|
|
10
|
-
*
|
|
11
|
-
* extends
|
|
12
|
-
* - [SharedGCContentModel](../sharedgccontentmodel)
|
|
13
|
-
*/
|
|
14
3
|
export default function stateModelF(pluginManager, configSchema) {
|
|
15
4
|
return types.compose('LinearGCContentTrackDisplay', SharedModelF(pluginManager, configSchema), types.model({
|
|
16
5
|
type: types.literal('LinearGCContentTrackDisplay'),
|
package/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Plugin from '@jbrowse/core/Plugin';
|
|
2
|
-
import PluginManager from '@jbrowse/core/PluginManager';
|
|
2
|
+
import type PluginManager from '@jbrowse/core/PluginManager';
|
|
3
3
|
export default class GCContentPlugin extends Plugin {
|
|
4
4
|
name: string;
|
|
5
5
|
install(pluginManager: PluginManager): void;
|
package/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-gccontent",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.18.0",
|
|
4
4
|
"description": "JBrowse 2 gccontent concepts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"distModule": "esm/index.js",
|
|
54
54
|
"srcModule": "src/index.ts",
|
|
55
55
|
"module": "esm/index.js",
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "c344ea60099cb7e460b77f15808946b24a7eee74"
|
|
57
57
|
}
|