@jbrowse/plugin-wiggle 2.8.0 → 2.9.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/MultiQuantitativeTrack/configSchema.d.ts +5 -0
- package/dist/QuantitativeTrack/configSchema.d.ts +5 -0
- package/dist/shared/configShared.js +1 -1
- package/esm/MultiQuantitativeTrack/configSchema.d.ts +5 -0
- package/esm/QuantitativeTrack/configSchema.d.ts +5 -0
- package/esm/shared/configShared.js +1 -1
- package/package.json +2 -2
|
@@ -58,6 +58,11 @@ declare const configSchema: (pluginManager: PluginManager) => import("@jbrowse/c
|
|
|
58
58
|
defaultValue: number;
|
|
59
59
|
description: string;
|
|
60
60
|
};
|
|
61
|
+
maxDepth: {
|
|
62
|
+
type: string;
|
|
63
|
+
defaultValue: number;
|
|
64
|
+
description: string;
|
|
65
|
+
};
|
|
61
66
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
62
67
|
formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
63
68
|
config: {
|
|
@@ -58,6 +58,11 @@ declare function configSchemaFactory(pluginManager: PluginManager): import("@jbr
|
|
|
58
58
|
defaultValue: number;
|
|
59
59
|
description: string;
|
|
60
60
|
};
|
|
61
|
+
maxDepth: {
|
|
62
|
+
type: string;
|
|
63
|
+
defaultValue: number;
|
|
64
|
+
description: string;
|
|
65
|
+
};
|
|
61
66
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
62
67
|
formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
63
68
|
config: {
|
|
@@ -60,7 +60,7 @@ function sharedWiggleConfigFactory() {
|
|
|
60
60
|
*/
|
|
61
61
|
scaleType: {
|
|
62
62
|
type: 'stringEnum',
|
|
63
|
-
model: mobx_state_tree_1.types.enumeration('Scale type', ['linear', 'log']),
|
|
63
|
+
model: mobx_state_tree_1.types.enumeration('Scale type', ['linear', 'log']), // todo zscale
|
|
64
64
|
description: 'The type of scale to use',
|
|
65
65
|
defaultValue: 'linear',
|
|
66
66
|
},
|
|
@@ -58,6 +58,11 @@ declare const configSchema: (pluginManager: PluginManager) => import("@jbrowse/c
|
|
|
58
58
|
defaultValue: number;
|
|
59
59
|
description: string;
|
|
60
60
|
};
|
|
61
|
+
maxDepth: {
|
|
62
|
+
type: string;
|
|
63
|
+
defaultValue: number;
|
|
64
|
+
description: string;
|
|
65
|
+
};
|
|
61
66
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
62
67
|
formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
63
68
|
config: {
|
|
@@ -58,6 +58,11 @@ declare function configSchemaFactory(pluginManager: PluginManager): import("@jbr
|
|
|
58
58
|
defaultValue: number;
|
|
59
59
|
description: string;
|
|
60
60
|
};
|
|
61
|
+
maxDepth: {
|
|
62
|
+
type: string;
|
|
63
|
+
defaultValue: number;
|
|
64
|
+
description: string;
|
|
65
|
+
};
|
|
61
66
|
}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
|
|
62
67
|
formatAbout: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
|
|
63
68
|
config: {
|
|
@@ -58,7 +58,7 @@ export default function sharedWiggleConfigFactory() {
|
|
|
58
58
|
*/
|
|
59
59
|
scaleType: {
|
|
60
60
|
type: 'stringEnum',
|
|
61
|
-
model: types.enumeration('Scale type', ['linear', 'log']),
|
|
61
|
+
model: types.enumeration('Scale type', ['linear', 'log']), // todo zscale
|
|
62
62
|
description: 'The type of scale to use',
|
|
63
63
|
defaultValue: 'linear',
|
|
64
64
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-wiggle",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "JBrowse 2 wiggle adapters, tracks, etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"distModule": "esm/index.js",
|
|
68
68
|
"srcModule": "src/index.ts",
|
|
69
69
|
"module": "esm/index.js",
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "a50b6f67cf8c8f3c65a7b8cd858de2fcca1f2909"
|
|
71
71
|
}
|