@jbrowse/plugin-gccontent 2.16.0 → 2.17.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/LinearGCContentDisplay/shared.d.ts +7 -1
- package/dist/LinearGCContentDisplay/stateModel1.d.ts +7 -1
- package/dist/LinearGCContentDisplay/stateModel2.d.ts +7 -1
- package/esm/LinearGCContentDisplay/shared.d.ts +7 -1
- package/esm/LinearGCContentDisplay/stateModel1.d.ts +7 -1
- package/esm/LinearGCContentDisplay/stateModel2.d.ts +7 -1
- package/package.json +2 -2
|
@@ -256,19 +256,21 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
256
256
|
} & {
|
|
257
257
|
message: undefined | string;
|
|
258
258
|
stats: {
|
|
259
|
+
currStatsBpPerPx: number;
|
|
259
260
|
scoreMin: number;
|
|
260
261
|
scoreMax: number;
|
|
261
262
|
} | undefined;
|
|
262
263
|
statsFetchInProgress: undefined | AbortController;
|
|
263
264
|
} & {
|
|
264
265
|
updateQuantitativeStats(stats: {
|
|
266
|
+
currStatsBpPerPx: number;
|
|
265
267
|
scoreMin: number;
|
|
266
268
|
scoreMax: number;
|
|
267
269
|
}): void;
|
|
268
270
|
setColor(color?: string): void;
|
|
269
271
|
setPosColor(color?: string): void;
|
|
270
272
|
setNegColor(color?: string): void;
|
|
271
|
-
|
|
273
|
+
setStatsLoading(aborter: AbortController): void;
|
|
272
274
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
273
275
|
setResolution(res: number): void;
|
|
274
276
|
setFill(fill: number): void;
|
|
@@ -310,6 +312,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
310
312
|
readonly scaleOpts: {
|
|
311
313
|
domain: number[] | undefined;
|
|
312
314
|
stats: {
|
|
315
|
+
currStatsBpPerPx: number;
|
|
313
316
|
scoreMin: number;
|
|
314
317
|
scoreMax: number;
|
|
315
318
|
} | undefined;
|
|
@@ -348,7 +351,9 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
348
351
|
} & {
|
|
349
352
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
350
353
|
readonly rendererTypeName: string;
|
|
354
|
+
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
351
355
|
} & {
|
|
356
|
+
adapterProps(): any;
|
|
352
357
|
readonly ticks: {
|
|
353
358
|
range: number[];
|
|
354
359
|
values: number[];
|
|
@@ -359,6 +364,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
359
364
|
renderProps(): any;
|
|
360
365
|
readonly needsScalebar: boolean;
|
|
361
366
|
readonly fillSetting: 1 | 2 | 0;
|
|
367
|
+
readonly quantitativeStatsReady: boolean;
|
|
362
368
|
} & {
|
|
363
369
|
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 | {
|
|
364
370
|
label: string;
|
|
@@ -249,19 +249,21 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
249
249
|
} & {
|
|
250
250
|
message: undefined | string;
|
|
251
251
|
stats: {
|
|
252
|
+
currStatsBpPerPx: number;
|
|
252
253
|
scoreMin: number;
|
|
253
254
|
scoreMax: number;
|
|
254
255
|
} | undefined;
|
|
255
256
|
statsFetchInProgress: undefined | AbortController;
|
|
256
257
|
} & {
|
|
257
258
|
updateQuantitativeStats(stats: {
|
|
259
|
+
currStatsBpPerPx: number;
|
|
258
260
|
scoreMin: number;
|
|
259
261
|
scoreMax: number;
|
|
260
262
|
}): void;
|
|
261
263
|
setColor(color?: string): void;
|
|
262
264
|
setPosColor(color?: string): void;
|
|
263
265
|
setNegColor(color?: string): void;
|
|
264
|
-
|
|
266
|
+
setStatsLoading(aborter: AbortController): void;
|
|
265
267
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
266
268
|
setResolution(res: number): void;
|
|
267
269
|
setFill(fill: number): void;
|
|
@@ -303,6 +305,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
303
305
|
readonly scaleOpts: {
|
|
304
306
|
domain: number[] | undefined;
|
|
305
307
|
stats: {
|
|
308
|
+
currStatsBpPerPx: number;
|
|
306
309
|
scoreMin: number;
|
|
307
310
|
scoreMax: number;
|
|
308
311
|
} | undefined;
|
|
@@ -341,7 +344,9 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
341
344
|
} & {
|
|
342
345
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
343
346
|
readonly rendererTypeName: string;
|
|
347
|
+
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
344
348
|
} & {
|
|
349
|
+
adapterProps(): any;
|
|
345
350
|
readonly ticks: {
|
|
346
351
|
range: number[];
|
|
347
352
|
values: number[];
|
|
@@ -352,6 +357,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
352
357
|
renderProps(): any;
|
|
353
358
|
readonly needsScalebar: boolean;
|
|
354
359
|
readonly fillSetting: 1 | 2 | 0;
|
|
360
|
+
readonly quantitativeStatsReady: boolean;
|
|
355
361
|
} & {
|
|
356
362
|
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
363
|
label: string;
|
|
@@ -254,19 +254,21 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
254
254
|
} & {
|
|
255
255
|
message: undefined | string;
|
|
256
256
|
stats: {
|
|
257
|
+
currStatsBpPerPx: number;
|
|
257
258
|
scoreMin: number;
|
|
258
259
|
scoreMax: number;
|
|
259
260
|
} | undefined;
|
|
260
261
|
statsFetchInProgress: undefined | AbortController;
|
|
261
262
|
} & {
|
|
262
263
|
updateQuantitativeStats(stats: {
|
|
264
|
+
currStatsBpPerPx: number;
|
|
263
265
|
scoreMin: number;
|
|
264
266
|
scoreMax: number;
|
|
265
267
|
}): void;
|
|
266
268
|
setColor(color?: string): void;
|
|
267
269
|
setPosColor(color?: string): void;
|
|
268
270
|
setNegColor(color?: string): void;
|
|
269
|
-
|
|
271
|
+
setStatsLoading(aborter: AbortController): void;
|
|
270
272
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
271
273
|
setResolution(res: number): void;
|
|
272
274
|
setFill(fill: number): void;
|
|
@@ -308,6 +310,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
308
310
|
readonly scaleOpts: {
|
|
309
311
|
domain: number[] | undefined;
|
|
310
312
|
stats: {
|
|
313
|
+
currStatsBpPerPx: number;
|
|
311
314
|
scoreMin: number;
|
|
312
315
|
scoreMax: number;
|
|
313
316
|
} | undefined;
|
|
@@ -346,7 +349,9 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
346
349
|
} & {
|
|
347
350
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
348
351
|
readonly rendererTypeName: string;
|
|
352
|
+
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
349
353
|
} & {
|
|
354
|
+
adapterProps(): any;
|
|
350
355
|
readonly ticks: {
|
|
351
356
|
range: number[];
|
|
352
357
|
values: number[];
|
|
@@ -357,6 +362,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
357
362
|
renderProps(): any;
|
|
358
363
|
readonly needsScalebar: boolean;
|
|
359
364
|
readonly fillSetting: 1 | 2 | 0;
|
|
365
|
+
readonly quantitativeStatsReady: boolean;
|
|
360
366
|
} & {
|
|
361
367
|
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
368
|
label: string;
|
|
@@ -256,19 +256,21 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
256
256
|
} & {
|
|
257
257
|
message: undefined | string;
|
|
258
258
|
stats: {
|
|
259
|
+
currStatsBpPerPx: number;
|
|
259
260
|
scoreMin: number;
|
|
260
261
|
scoreMax: number;
|
|
261
262
|
} | undefined;
|
|
262
263
|
statsFetchInProgress: undefined | AbortController;
|
|
263
264
|
} & {
|
|
264
265
|
updateQuantitativeStats(stats: {
|
|
266
|
+
currStatsBpPerPx: number;
|
|
265
267
|
scoreMin: number;
|
|
266
268
|
scoreMax: number;
|
|
267
269
|
}): void;
|
|
268
270
|
setColor(color?: string): void;
|
|
269
271
|
setPosColor(color?: string): void;
|
|
270
272
|
setNegColor(color?: string): void;
|
|
271
|
-
|
|
273
|
+
setStatsLoading(aborter: AbortController): void;
|
|
272
274
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
273
275
|
setResolution(res: number): void;
|
|
274
276
|
setFill(fill: number): void;
|
|
@@ -310,6 +312,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
310
312
|
readonly scaleOpts: {
|
|
311
313
|
domain: number[] | undefined;
|
|
312
314
|
stats: {
|
|
315
|
+
currStatsBpPerPx: number;
|
|
313
316
|
scoreMin: number;
|
|
314
317
|
scoreMax: number;
|
|
315
318
|
} | undefined;
|
|
@@ -348,7 +351,9 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
348
351
|
} & {
|
|
349
352
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
350
353
|
readonly rendererTypeName: string;
|
|
354
|
+
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
351
355
|
} & {
|
|
356
|
+
adapterProps(): any;
|
|
352
357
|
readonly ticks: {
|
|
353
358
|
range: number[];
|
|
354
359
|
values: number[];
|
|
@@ -359,6 +364,7 @@ export default function SharedModelF(pluginManager: PluginManager, configSchema:
|
|
|
359
364
|
renderProps(): any;
|
|
360
365
|
readonly needsScalebar: boolean;
|
|
361
366
|
readonly fillSetting: 1 | 2 | 0;
|
|
367
|
+
readonly quantitativeStatsReady: boolean;
|
|
362
368
|
} & {
|
|
363
369
|
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 | {
|
|
364
370
|
label: string;
|
|
@@ -249,19 +249,21 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
249
249
|
} & {
|
|
250
250
|
message: undefined | string;
|
|
251
251
|
stats: {
|
|
252
|
+
currStatsBpPerPx: number;
|
|
252
253
|
scoreMin: number;
|
|
253
254
|
scoreMax: number;
|
|
254
255
|
} | undefined;
|
|
255
256
|
statsFetchInProgress: undefined | AbortController;
|
|
256
257
|
} & {
|
|
257
258
|
updateQuantitativeStats(stats: {
|
|
259
|
+
currStatsBpPerPx: number;
|
|
258
260
|
scoreMin: number;
|
|
259
261
|
scoreMax: number;
|
|
260
262
|
}): void;
|
|
261
263
|
setColor(color?: string): void;
|
|
262
264
|
setPosColor(color?: string): void;
|
|
263
265
|
setNegColor(color?: string): void;
|
|
264
|
-
|
|
266
|
+
setStatsLoading(aborter: AbortController): void;
|
|
265
267
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
266
268
|
setResolution(res: number): void;
|
|
267
269
|
setFill(fill: number): void;
|
|
@@ -303,6 +305,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
303
305
|
readonly scaleOpts: {
|
|
304
306
|
domain: number[] | undefined;
|
|
305
307
|
stats: {
|
|
308
|
+
currStatsBpPerPx: number;
|
|
306
309
|
scoreMin: number;
|
|
307
310
|
scoreMax: number;
|
|
308
311
|
} | undefined;
|
|
@@ -341,7 +344,9 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
341
344
|
} & {
|
|
342
345
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
343
346
|
readonly rendererTypeName: string;
|
|
347
|
+
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
344
348
|
} & {
|
|
349
|
+
adapterProps(): any;
|
|
345
350
|
readonly ticks: {
|
|
346
351
|
range: number[];
|
|
347
352
|
values: number[];
|
|
@@ -352,6 +357,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
352
357
|
renderProps(): any;
|
|
353
358
|
readonly needsScalebar: boolean;
|
|
354
359
|
readonly fillSetting: 1 | 2 | 0;
|
|
360
|
+
readonly quantitativeStatsReady: boolean;
|
|
355
361
|
} & {
|
|
356
362
|
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
363
|
label: string;
|
|
@@ -254,19 +254,21 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
254
254
|
} & {
|
|
255
255
|
message: undefined | string;
|
|
256
256
|
stats: {
|
|
257
|
+
currStatsBpPerPx: number;
|
|
257
258
|
scoreMin: number;
|
|
258
259
|
scoreMax: number;
|
|
259
260
|
} | undefined;
|
|
260
261
|
statsFetchInProgress: undefined | AbortController;
|
|
261
262
|
} & {
|
|
262
263
|
updateQuantitativeStats(stats: {
|
|
264
|
+
currStatsBpPerPx: number;
|
|
263
265
|
scoreMin: number;
|
|
264
266
|
scoreMax: number;
|
|
265
267
|
}): void;
|
|
266
268
|
setColor(color?: string): void;
|
|
267
269
|
setPosColor(color?: string): void;
|
|
268
270
|
setNegColor(color?: string): void;
|
|
269
|
-
|
|
271
|
+
setStatsLoading(aborter: AbortController): void;
|
|
270
272
|
selectFeature(feature: import("@jbrowse/core/util").Feature): void;
|
|
271
273
|
setResolution(res: number): void;
|
|
272
274
|
setFill(fill: number): void;
|
|
@@ -308,6 +310,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
308
310
|
readonly scaleOpts: {
|
|
309
311
|
domain: number[] | undefined;
|
|
310
312
|
stats: {
|
|
313
|
+
currStatsBpPerPx: number;
|
|
311
314
|
scoreMin: number;
|
|
312
315
|
scoreMax: number;
|
|
313
316
|
} | undefined;
|
|
@@ -346,7 +349,9 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
346
349
|
} & {
|
|
347
350
|
readonly TooltipComponent: import("@jbrowse/core/util").AnyReactComponentType;
|
|
348
351
|
readonly rendererTypeName: string;
|
|
352
|
+
readonly quantitativeStatsRelevantToCurrentZoom: boolean;
|
|
349
353
|
} & {
|
|
354
|
+
adapterProps(): any;
|
|
350
355
|
readonly ticks: {
|
|
351
356
|
range: number[];
|
|
352
357
|
values: number[];
|
|
@@ -357,6 +362,7 @@ export default function stateModelF(pluginManager: PluginManager, configSchema:
|
|
|
357
362
|
renderProps(): any;
|
|
358
363
|
readonly needsScalebar: boolean;
|
|
359
364
|
readonly fillSetting: 1 | 2 | 0;
|
|
365
|
+
readonly quantitativeStatsReady: boolean;
|
|
360
366
|
} & {
|
|
361
367
|
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
368
|
label: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-gccontent",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.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": "eed30b5e671f8f7823652d7cecc51aa89226de46"
|
|
57
57
|
}
|