@jbrowse/plugin-sv-inspector 3.5.0 → 3.6.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.
|
@@ -447,18 +447,18 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
447
447
|
refNameAliases: {
|
|
448
448
|
[x: string]: string;
|
|
449
449
|
} | undefined;
|
|
450
|
-
lowerCaseRefNameAliases: {
|
|
451
|
-
[x: string]: string;
|
|
452
|
-
} | undefined;
|
|
453
450
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
454
451
|
} & {
|
|
455
452
|
getConf(arg: string): any;
|
|
453
|
+
readonly lowerCaseRefNameAliases: {
|
|
454
|
+
[k: string]: string;
|
|
455
|
+
} | undefined;
|
|
456
456
|
} & {
|
|
457
457
|
readonly initialized: boolean;
|
|
458
458
|
readonly name: string;
|
|
459
459
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
460
460
|
readonly aliases: string[];
|
|
461
|
-
readonly displayName: string
|
|
461
|
+
readonly displayName: string;
|
|
462
462
|
hasName(name: string): boolean;
|
|
463
463
|
readonly allAliases: string[];
|
|
464
464
|
readonly allRefNames: string[] | undefined;
|
|
@@ -473,22 +473,17 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
473
473
|
getRefNameColor(refName: string): string | undefined;
|
|
474
474
|
isValidRefName(refName: string): boolean;
|
|
475
475
|
} & {
|
|
476
|
-
setLoaded({ regions, refNameAliases,
|
|
476
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
477
477
|
regions: import("@jbrowse/core/util").Region[];
|
|
478
478
|
refNameAliases: {
|
|
479
479
|
[x: string]: string;
|
|
480
480
|
};
|
|
481
|
-
lowerCaseRefNameAliases: {
|
|
482
|
-
[x: string]: string;
|
|
483
|
-
};
|
|
484
481
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
485
482
|
}): void;
|
|
486
483
|
setError(e: unknown): void;
|
|
487
484
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
488
485
|
setRefNameAliases(aliases: {
|
|
489
486
|
[x: string]: string;
|
|
490
|
-
}, lowerCaseAliases: {
|
|
491
|
-
[x: string]: string;
|
|
492
487
|
}): void;
|
|
493
488
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
494
489
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -508,6 +503,7 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
508
503
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
509
504
|
[x: string]: string;
|
|
510
505
|
}>;
|
|
506
|
+
afterCreate(): void;
|
|
511
507
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
512
508
|
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
513
509
|
}, {
|
|
@@ -517,18 +513,18 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
517
513
|
refNameAliases: {
|
|
518
514
|
[x: string]: string;
|
|
519
515
|
} | undefined;
|
|
520
|
-
lowerCaseRefNameAliases: {
|
|
521
|
-
[x: string]: string;
|
|
522
|
-
} | undefined;
|
|
523
516
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
524
517
|
} & {
|
|
525
518
|
getConf(arg: string): any;
|
|
519
|
+
readonly lowerCaseRefNameAliases: {
|
|
520
|
+
[k: string]: string;
|
|
521
|
+
} | undefined;
|
|
526
522
|
} & {
|
|
527
523
|
readonly initialized: boolean;
|
|
528
524
|
readonly name: string;
|
|
529
525
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
530
526
|
readonly aliases: string[];
|
|
531
|
-
readonly displayName: string
|
|
527
|
+
readonly displayName: string;
|
|
532
528
|
hasName(name: string): boolean;
|
|
533
529
|
readonly allAliases: string[];
|
|
534
530
|
readonly allRefNames: string[] | undefined;
|
|
@@ -543,22 +539,17 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
543
539
|
getRefNameColor(refName: string): string | undefined;
|
|
544
540
|
isValidRefName(refName: string): boolean;
|
|
545
541
|
} & {
|
|
546
|
-
setLoaded({ regions, refNameAliases,
|
|
542
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
547
543
|
regions: import("@jbrowse/core/util").Region[];
|
|
548
544
|
refNameAliases: {
|
|
549
545
|
[x: string]: string;
|
|
550
546
|
};
|
|
551
|
-
lowerCaseRefNameAliases: {
|
|
552
|
-
[x: string]: string;
|
|
553
|
-
};
|
|
554
547
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
555
548
|
}): void;
|
|
556
549
|
setError(e: unknown): void;
|
|
557
550
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
558
551
|
setRefNameAliases(aliases: {
|
|
559
552
|
[x: string]: string;
|
|
560
|
-
}, lowerCaseAliases: {
|
|
561
|
-
[x: string]: string;
|
|
562
553
|
}): void;
|
|
563
554
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
564
555
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -578,6 +569,7 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
578
569
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
579
570
|
[x: string]: string;
|
|
580
571
|
}>;
|
|
572
|
+
afterCreate(): void;
|
|
581
573
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
582
574
|
readonly canonicalFeatureRefNameSet: Set<any>;
|
|
583
575
|
readonly featuresCircularTrackConfiguration: {
|
|
@@ -447,18 +447,18 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
447
447
|
refNameAliases: {
|
|
448
448
|
[x: string]: string;
|
|
449
449
|
} | undefined;
|
|
450
|
-
lowerCaseRefNameAliases: {
|
|
451
|
-
[x: string]: string;
|
|
452
|
-
} | undefined;
|
|
453
450
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
454
451
|
} & {
|
|
455
452
|
getConf(arg: string): any;
|
|
453
|
+
readonly lowerCaseRefNameAliases: {
|
|
454
|
+
[k: string]: string;
|
|
455
|
+
} | undefined;
|
|
456
456
|
} & {
|
|
457
457
|
readonly initialized: boolean;
|
|
458
458
|
readonly name: string;
|
|
459
459
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
460
460
|
readonly aliases: string[];
|
|
461
|
-
readonly displayName: string
|
|
461
|
+
readonly displayName: string;
|
|
462
462
|
hasName(name: string): boolean;
|
|
463
463
|
readonly allAliases: string[];
|
|
464
464
|
readonly allRefNames: string[] | undefined;
|
|
@@ -473,22 +473,17 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
473
473
|
getRefNameColor(refName: string): string | undefined;
|
|
474
474
|
isValidRefName(refName: string): boolean;
|
|
475
475
|
} & {
|
|
476
|
-
setLoaded({ regions, refNameAliases,
|
|
476
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
477
477
|
regions: import("@jbrowse/core/util").Region[];
|
|
478
478
|
refNameAliases: {
|
|
479
479
|
[x: string]: string;
|
|
480
480
|
};
|
|
481
|
-
lowerCaseRefNameAliases: {
|
|
482
|
-
[x: string]: string;
|
|
483
|
-
};
|
|
484
481
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
485
482
|
}): void;
|
|
486
483
|
setError(e: unknown): void;
|
|
487
484
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
488
485
|
setRefNameAliases(aliases: {
|
|
489
486
|
[x: string]: string;
|
|
490
|
-
}, lowerCaseAliases: {
|
|
491
|
-
[x: string]: string;
|
|
492
487
|
}): void;
|
|
493
488
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
494
489
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -508,6 +503,7 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
508
503
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
509
504
|
[x: string]: string;
|
|
510
505
|
}>;
|
|
506
|
+
afterCreate(): void;
|
|
511
507
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
512
508
|
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
513
509
|
}, {
|
|
@@ -517,18 +513,18 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
517
513
|
refNameAliases: {
|
|
518
514
|
[x: string]: string;
|
|
519
515
|
} | undefined;
|
|
520
|
-
lowerCaseRefNameAliases: {
|
|
521
|
-
[x: string]: string;
|
|
522
|
-
} | undefined;
|
|
523
516
|
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
524
517
|
} & {
|
|
525
518
|
getConf(arg: string): any;
|
|
519
|
+
readonly lowerCaseRefNameAliases: {
|
|
520
|
+
[k: string]: string;
|
|
521
|
+
} | undefined;
|
|
526
522
|
} & {
|
|
527
523
|
readonly initialized: boolean;
|
|
528
524
|
readonly name: string;
|
|
529
525
|
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
530
526
|
readonly aliases: string[];
|
|
531
|
-
readonly displayName: string
|
|
527
|
+
readonly displayName: string;
|
|
532
528
|
hasName(name: string): boolean;
|
|
533
529
|
readonly allAliases: string[];
|
|
534
530
|
readonly allRefNames: string[] | undefined;
|
|
@@ -543,22 +539,17 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
543
539
|
getRefNameColor(refName: string): string | undefined;
|
|
544
540
|
isValidRefName(refName: string): boolean;
|
|
545
541
|
} & {
|
|
546
|
-
setLoaded({ regions, refNameAliases,
|
|
542
|
+
setLoaded({ regions, refNameAliases, cytobands, }: {
|
|
547
543
|
regions: import("@jbrowse/core/util").Region[];
|
|
548
544
|
refNameAliases: {
|
|
549
545
|
[x: string]: string;
|
|
550
546
|
};
|
|
551
|
-
lowerCaseRefNameAliases: {
|
|
552
|
-
[x: string]: string;
|
|
553
|
-
};
|
|
554
547
|
cytobands: import("@jbrowse/core/util").Feature[];
|
|
555
548
|
}): void;
|
|
556
549
|
setError(e: unknown): void;
|
|
557
550
|
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
558
551
|
setRefNameAliases(aliases: {
|
|
559
552
|
[x: string]: string;
|
|
560
|
-
}, lowerCaseAliases: {
|
|
561
|
-
[x: string]: string;
|
|
562
553
|
}): void;
|
|
563
554
|
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
564
555
|
setLoadingP(p?: Promise<void>): void;
|
|
@@ -578,6 +569,7 @@ declare function SvInspectorViewF(pluginManager: PluginManager): import("mobx-st
|
|
|
578
569
|
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
579
570
|
[x: string]: string;
|
|
580
571
|
}>;
|
|
572
|
+
afterCreate(): void;
|
|
581
573
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
582
574
|
readonly canonicalFeatureRefNameSet: Set<any>;
|
|
583
575
|
readonly featuresCircularTrackConfiguration: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-sv-inspector",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"description": "JBrowse 2 SV inspector view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"clean": "rimraf dist esm *.tsbuildinfo"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jbrowse/core": "^3.
|
|
40
|
-
"@jbrowse/plugin-circular-view": "^3.
|
|
41
|
-
"@jbrowse/plugin-spreadsheet-view": "^3.
|
|
42
|
-
"@jbrowse/sv-core": "^3.
|
|
39
|
+
"@jbrowse/core": "^3.6.0",
|
|
40
|
+
"@jbrowse/plugin-circular-view": "^3.6.0",
|
|
41
|
+
"@jbrowse/plugin-spreadsheet-view": "^3.6.0",
|
|
42
|
+
"@jbrowse/sv-core": "^3.6.0",
|
|
43
43
|
"@mui/icons-material": "^7.0.0",
|
|
44
44
|
"@mui/material": "^7.0.0",
|
|
45
45
|
"mobx": "^6.0.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "133a68815ab348d156c18d83cffc997356c3cfbb"
|
|
61
61
|
}
|