@jbrowse/plugin-alignments 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/AlignmentsFeatureDetail/index.d.ts +4 -1
- package/dist/AlignmentsTrack/configSchemaF.d.ts +5 -0
- package/dist/LinearSNPCoverageDisplay/models/configSchema.js +1 -1
- package/esm/AlignmentsFeatureDetail/index.d.ts +4 -1
- package/esm/AlignmentsTrack/configSchemaF.d.ts +5 -0
- package/esm/LinearSNPCoverageDisplay/models/configSchema.js +1 -1
- package/package.json +2 -2
|
@@ -10,6 +10,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
10
10
|
track: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
11
11
|
trackId: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
12
12
|
trackType: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
13
|
+
maxDepth: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
13
14
|
} & {
|
|
14
15
|
type: import("mobx-state-tree").ISimpleType<"AlignmentsFeatureWidget">;
|
|
15
16
|
}, {
|
|
@@ -18,7 +19,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
18
19
|
setFeatureData(featureData: Record<string, unknown>): void;
|
|
19
20
|
clearFeatureData(): void;
|
|
20
21
|
setFormattedData(feat: Record<string, unknown>): void;
|
|
21
|
-
setExtra(type?: string | undefined, trackId?: string | undefined): void;
|
|
22
|
+
setExtra(type?: string | undefined, trackId?: string | undefined, maxDepth?: number | undefined): void;
|
|
22
23
|
setError(e: unknown): void;
|
|
23
24
|
} & {
|
|
24
25
|
afterCreate(): void;
|
|
@@ -34,6 +35,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
34
35
|
track: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
35
36
|
trackId: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
36
37
|
trackType: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
38
|
+
maxDepth: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
37
39
|
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
38
40
|
type: "BaseFeatureWidget";
|
|
39
41
|
id: string;
|
|
@@ -41,6 +43,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
41
43
|
view: import("mobx-state-tree").ReferenceIdentifier | undefined;
|
|
42
44
|
trackId: string | undefined;
|
|
43
45
|
trackType: string | undefined;
|
|
46
|
+
maxDepth: number | undefined;
|
|
44
47
|
formattedFields: any;
|
|
45
48
|
finalizedFeatureData: any;
|
|
46
49
|
} & import("mobx-state-tree")._NotCustomized>;
|
|
@@ -58,6 +58,11 @@ export default function configSchemaFactory(pluginManager: PluginManager): impor
|
|
|
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: {
|
|
@@ -39,7 +39,7 @@ function SNPCoverageConfigFactory(pluginManager) {
|
|
|
39
39
|
*/
|
|
40
40
|
scaleType: {
|
|
41
41
|
type: 'stringEnum',
|
|
42
|
-
model: mobx_state_tree_1.types.enumeration('Scale type', ['linear', 'log']),
|
|
42
|
+
model: mobx_state_tree_1.types.enumeration('Scale type', ['linear', 'log']), // todo zscale
|
|
43
43
|
description: 'The type of scale to use',
|
|
44
44
|
defaultValue: 'linear',
|
|
45
45
|
},
|
|
@@ -10,6 +10,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
10
10
|
track: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
11
11
|
trackId: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
12
12
|
trackType: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
13
|
+
maxDepth: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
13
14
|
} & {
|
|
14
15
|
type: import("mobx-state-tree").ISimpleType<"AlignmentsFeatureWidget">;
|
|
15
16
|
}, {
|
|
@@ -18,7 +19,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
18
19
|
setFeatureData(featureData: Record<string, unknown>): void;
|
|
19
20
|
clearFeatureData(): void;
|
|
20
21
|
setFormattedData(feat: Record<string, unknown>): void;
|
|
21
|
-
setExtra(type?: string | undefined, trackId?: string | undefined): void;
|
|
22
|
+
setExtra(type?: string | undefined, trackId?: string | undefined, maxDepth?: number | undefined): void;
|
|
22
23
|
setError(e: unknown): void;
|
|
23
24
|
} & {
|
|
24
25
|
afterCreate(): void;
|
|
@@ -34,6 +35,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
34
35
|
track: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
35
36
|
trackId: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
36
37
|
trackType: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<string>>;
|
|
38
|
+
maxDepth: import("mobx-state-tree").IMaybe<import("mobx-state-tree").ISimpleType<number>>;
|
|
37
39
|
}>> & import("mobx-state-tree/dist/internal").NonEmptyObject & import("mobx-state-tree")._NotCustomized, {
|
|
38
40
|
type: "BaseFeatureWidget";
|
|
39
41
|
id: string;
|
|
@@ -41,6 +43,7 @@ export declare function stateModelFactory(pluginManager: PluginManager): import(
|
|
|
41
43
|
view: import("mobx-state-tree").ReferenceIdentifier | undefined;
|
|
42
44
|
trackId: string | undefined;
|
|
43
45
|
trackType: string | undefined;
|
|
46
|
+
maxDepth: number | undefined;
|
|
44
47
|
formattedFields: any;
|
|
45
48
|
finalizedFeatureData: any;
|
|
46
49
|
} & import("mobx-state-tree")._NotCustomized>;
|
|
@@ -58,6 +58,11 @@ export default function configSchemaFactory(pluginManager: PluginManager): impor
|
|
|
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: {
|
|
@@ -37,7 +37,7 @@ export default function SNPCoverageConfigFactory(pluginManager) {
|
|
|
37
37
|
*/
|
|
38
38
|
scaleType: {
|
|
39
39
|
type: 'stringEnum',
|
|
40
|
-
model: types.enumeration('Scale type', ['linear', 'log']),
|
|
40
|
+
model: types.enumeration('Scale type', ['linear', 'log']), // todo zscale
|
|
41
41
|
description: 'The type of scale to use',
|
|
42
42
|
defaultValue: 'linear',
|
|
43
43
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-alignments",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "JBrowse 2 alignments adapters, tracks, etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"distModule": "esm/index.js",
|
|
64
64
|
"srcModule": "src/index.ts",
|
|
65
65
|
"module": "esm/index.js",
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "a50b6f67cf8c8f3c65a7b8cd858de2fcca1f2909"
|
|
67
67
|
}
|