@jbrowse/plugin-linear-genome-view 2.8.0 → 2.10.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/BaseLinearDisplay/components/Tooltip.js +18 -50
- package/dist/BaseLinearDisplay/models/BaseLinearDisplayModel.d.ts +4 -16
- package/dist/BaseLinearDisplay/models/BaseLinearDisplayModel.js +8 -1
- package/dist/BasicTrack/configSchema.d.ts +5 -0
- package/dist/FeatureTrack/configSchema.d.ts +5 -0
- package/dist/LaunchLinearGenomeView/index.js +16 -14
- package/dist/LinearBareDisplay/model.d.ts +8 -11
- package/dist/LinearBareDisplay/model.js +2 -1
- package/dist/LinearBasicDisplay/model.d.ts +30 -33
- package/dist/LinearBasicDisplay/model.js +3 -0
- package/dist/LinearGenomeView/components/CenterLine.js +1 -1
- package/dist/LinearGenomeView/components/Cytobands.d.ts +18 -6
- package/dist/LinearGenomeView/components/Cytobands.js +8 -2
- package/dist/LinearGenomeView/components/ImportForm.js +26 -74
- package/dist/LinearGenomeView/components/ImportFormRefNameAutocomplete.d.ts +12 -0
- package/dist/LinearGenomeView/components/ImportFormRefNameAutocomplete.js +29 -0
- package/dist/LinearGenomeView/components/OverviewScalebar.js +1 -1
- package/dist/LinearGenomeView/components/SearchBox.js +19 -56
- package/dist/LinearGenomeView/components/TracksContainer.js +1 -1
- package/dist/LinearGenomeView/model.d.ts +18 -2
- package/dist/LinearGenomeView/model.js +19 -0
- package/dist/LinearGenomeView/svgcomponents/SVGLinearGenomeView.d.ts +0 -7
- package/dist/LinearGenomeView/svgcomponents/SVGLinearGenomeView.js +11 -13
- package/dist/LinearGenomeView/svgcomponents/util.d.ts +8 -0
- package/dist/LinearGenomeView/svgcomponents/util.js +9 -0
- package/dist/index.d.ts +776 -7
- package/dist/index.js +5 -4
- package/dist/searchUtils.d.ts +26 -0
- package/dist/searchUtils.js +90 -0
- package/esm/BaseLinearDisplay/components/Tooltip.js +16 -28
- package/esm/BaseLinearDisplay/models/BaseLinearDisplayModel.d.ts +4 -16
- package/esm/BaseLinearDisplay/models/BaseLinearDisplayModel.js +8 -1
- package/esm/BasicTrack/configSchema.d.ts +5 -0
- package/esm/FeatureTrack/configSchema.d.ts +5 -0
- package/esm/LaunchLinearGenomeView/index.js +16 -14
- package/esm/LinearBareDisplay/model.d.ts +8 -11
- package/esm/LinearBareDisplay/model.js +2 -1
- package/esm/LinearBasicDisplay/model.d.ts +30 -33
- package/esm/LinearBasicDisplay/model.js +3 -0
- package/esm/LinearGenomeView/components/CenterLine.js +1 -1
- package/esm/LinearGenomeView/components/Cytobands.d.ts +18 -6
- package/esm/LinearGenomeView/components/Cytobands.js +8 -2
- package/esm/LinearGenomeView/components/ImportForm.js +26 -74
- package/esm/LinearGenomeView/components/ImportFormRefNameAutocomplete.d.ts +12 -0
- package/esm/LinearGenomeView/components/ImportFormRefNameAutocomplete.js +24 -0
- package/esm/LinearGenomeView/components/OverviewScalebar.js +1 -1
- package/esm/LinearGenomeView/components/SearchBox.js +20 -57
- package/esm/LinearGenomeView/components/TracksContainer.js +1 -1
- package/esm/LinearGenomeView/model.d.ts +18 -2
- package/esm/LinearGenomeView/model.js +19 -0
- package/esm/LinearGenomeView/svgcomponents/SVGLinearGenomeView.d.ts +0 -7
- package/esm/LinearGenomeView/svgcomponents/SVGLinearGenomeView.js +9 -10
- package/esm/LinearGenomeView/svgcomponents/util.d.ts +8 -0
- package/esm/LinearGenomeView/svgcomponents/util.js +5 -0
- package/esm/index.d.ts +776 -7
- package/esm/index.js +4 -3
- package/esm/searchUtils.d.ts +26 -0
- package/esm/searchUtils.js +79 -0
- package/package.json +4 -6
package/dist/index.d.ts
CHANGED
|
@@ -979,7 +979,7 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
979
979
|
} & {
|
|
980
980
|
moveTrack(movingId: string, targetId: string): void;
|
|
981
981
|
closeView(): void;
|
|
982
|
-
toggleTrack(trackId: string):
|
|
982
|
+
toggleTrack(trackId: string): boolean;
|
|
983
983
|
setTrackLabels(setting: "offset" | "hidden" | "overlapping"): void;
|
|
984
984
|
toggleCenterLine(): void;
|
|
985
985
|
setDisplayedRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
@@ -1029,6 +1029,134 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1029
1029
|
} & {
|
|
1030
1030
|
moveTo(start?: import("./LinearGenomeView").BpOffset | undefined, end?: import("./LinearGenomeView").BpOffset | undefined): void;
|
|
1031
1031
|
navToLocString(input: string, optAssemblyName?: string | undefined): Promise<void>;
|
|
1032
|
+
navToSearchString({ input, assembly, }: {
|
|
1033
|
+
input: string;
|
|
1034
|
+
assembly: {
|
|
1035
|
+
configuration: any;
|
|
1036
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1037
|
+
error: unknown;
|
|
1038
|
+
loaded: boolean;
|
|
1039
|
+
loadingP: Promise<void> | undefined;
|
|
1040
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1041
|
+
refNameAliases: {
|
|
1042
|
+
[x: string]: string | undefined;
|
|
1043
|
+
} | undefined;
|
|
1044
|
+
lowerCaseRefNameAliases: {
|
|
1045
|
+
[x: string]: string | undefined;
|
|
1046
|
+
} | undefined;
|
|
1047
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
1048
|
+
} & {
|
|
1049
|
+
getConf(arg: string): any;
|
|
1050
|
+
} & {
|
|
1051
|
+
readonly initialized: boolean;
|
|
1052
|
+
readonly name: string;
|
|
1053
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1054
|
+
readonly aliases: string[];
|
|
1055
|
+
readonly displayName: string | undefined;
|
|
1056
|
+
hasName(name: string): boolean;
|
|
1057
|
+
readonly allAliases: string[];
|
|
1058
|
+
readonly allRefNames: string[] | undefined;
|
|
1059
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
1060
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
1061
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
1062
|
+
readonly refNameColors: string[];
|
|
1063
|
+
} & {
|
|
1064
|
+
readonly refNames: string[] | undefined;
|
|
1065
|
+
} & {
|
|
1066
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
1067
|
+
getRefNameColor(refName: string): string | undefined;
|
|
1068
|
+
isValidRefName(refName: string): boolean;
|
|
1069
|
+
} & {
|
|
1070
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
1071
|
+
setError(e: unknown): void;
|
|
1072
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
1073
|
+
setRefNameAliases(aliases: {
|
|
1074
|
+
[x: string]: string | undefined;
|
|
1075
|
+
}, lcAliases: {
|
|
1076
|
+
[x: string]: string | undefined;
|
|
1077
|
+
}): void;
|
|
1078
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
1079
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
1080
|
+
load(): Promise<void>;
|
|
1081
|
+
loadPre(): Promise<void>;
|
|
1082
|
+
} & {
|
|
1083
|
+
getAdapterMapEntry(adapterConf: {
|
|
1084
|
+
[x: string]: unknown;
|
|
1085
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
1086
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
1087
|
+
[x: string]: unknown;
|
|
1088
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1089
|
+
[x: string]: string | undefined;
|
|
1090
|
+
}>;
|
|
1091
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1092
|
+
[x: string]: unknown;
|
|
1093
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1094
|
+
[x: string]: string | undefined;
|
|
1095
|
+
}>;
|
|
1096
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1097
|
+
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
1098
|
+
}, {
|
|
1099
|
+
error: unknown;
|
|
1100
|
+
loaded: boolean;
|
|
1101
|
+
loadingP: Promise<void> | undefined;
|
|
1102
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1103
|
+
refNameAliases: {
|
|
1104
|
+
[x: string]: string | undefined;
|
|
1105
|
+
} | undefined;
|
|
1106
|
+
lowerCaseRefNameAliases: {
|
|
1107
|
+
[x: string]: string | undefined;
|
|
1108
|
+
} | undefined;
|
|
1109
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
1110
|
+
} & {
|
|
1111
|
+
getConf(arg: string): any;
|
|
1112
|
+
} & {
|
|
1113
|
+
readonly initialized: boolean;
|
|
1114
|
+
readonly name: string;
|
|
1115
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1116
|
+
readonly aliases: string[];
|
|
1117
|
+
readonly displayName: string | undefined;
|
|
1118
|
+
hasName(name: string): boolean;
|
|
1119
|
+
readonly allAliases: string[];
|
|
1120
|
+
readonly allRefNames: string[] | undefined;
|
|
1121
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
1122
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
1123
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
1124
|
+
readonly refNameColors: string[];
|
|
1125
|
+
} & {
|
|
1126
|
+
readonly refNames: string[] | undefined;
|
|
1127
|
+
} & {
|
|
1128
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
1129
|
+
getRefNameColor(refName: string): string | undefined;
|
|
1130
|
+
isValidRefName(refName: string): boolean;
|
|
1131
|
+
} & {
|
|
1132
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
1133
|
+
setError(e: unknown): void;
|
|
1134
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
1135
|
+
setRefNameAliases(aliases: {
|
|
1136
|
+
[x: string]: string | undefined;
|
|
1137
|
+
}, lcAliases: {
|
|
1138
|
+
[x: string]: string | undefined;
|
|
1139
|
+
}): void;
|
|
1140
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
1141
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
1142
|
+
load(): Promise<void>;
|
|
1143
|
+
loadPre(): Promise<void>;
|
|
1144
|
+
} & {
|
|
1145
|
+
getAdapterMapEntry(adapterConf: {
|
|
1146
|
+
[x: string]: unknown;
|
|
1147
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
1148
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
1149
|
+
[x: string]: unknown;
|
|
1150
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1151
|
+
[x: string]: string | undefined;
|
|
1152
|
+
}>;
|
|
1153
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1154
|
+
[x: string]: unknown;
|
|
1155
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1156
|
+
[x: string]: string | undefined;
|
|
1157
|
+
}>;
|
|
1158
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1159
|
+
}): Promise<void>;
|
|
1032
1160
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string | undefined): Promise<void>;
|
|
1033
1161
|
navTo(query: import("./LinearGenomeView").NavLocation): void;
|
|
1034
1162
|
navToMultiple(locations: import("./LinearGenomeView").NavLocation[]): void;
|
|
@@ -1170,7 +1298,7 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1170
1298
|
} & {
|
|
1171
1299
|
moveTrack(movingId: string, targetId: string): void;
|
|
1172
1300
|
closeView(): void;
|
|
1173
|
-
toggleTrack(trackId: string):
|
|
1301
|
+
toggleTrack(trackId: string): boolean;
|
|
1174
1302
|
setTrackLabels(setting: "offset" | "hidden" | "overlapping"): void;
|
|
1175
1303
|
toggleCenterLine(): void;
|
|
1176
1304
|
setDisplayedRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
@@ -1220,6 +1348,134 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1220
1348
|
} & {
|
|
1221
1349
|
moveTo(start?: import("./LinearGenomeView").BpOffset | undefined, end?: import("./LinearGenomeView").BpOffset | undefined): void;
|
|
1222
1350
|
navToLocString(input: string, optAssemblyName?: string | undefined): Promise<void>;
|
|
1351
|
+
navToSearchString({ input, assembly, }: {
|
|
1352
|
+
input: string;
|
|
1353
|
+
assembly: {
|
|
1354
|
+
configuration: any;
|
|
1355
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1356
|
+
error: unknown;
|
|
1357
|
+
loaded: boolean;
|
|
1358
|
+
loadingP: Promise<void> | undefined;
|
|
1359
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1360
|
+
refNameAliases: {
|
|
1361
|
+
[x: string]: string | undefined;
|
|
1362
|
+
} | undefined;
|
|
1363
|
+
lowerCaseRefNameAliases: {
|
|
1364
|
+
[x: string]: string | undefined;
|
|
1365
|
+
} | undefined;
|
|
1366
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
1367
|
+
} & {
|
|
1368
|
+
getConf(arg: string): any;
|
|
1369
|
+
} & {
|
|
1370
|
+
readonly initialized: boolean;
|
|
1371
|
+
readonly name: string;
|
|
1372
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1373
|
+
readonly aliases: string[];
|
|
1374
|
+
readonly displayName: string | undefined;
|
|
1375
|
+
hasName(name: string): boolean;
|
|
1376
|
+
readonly allAliases: string[];
|
|
1377
|
+
readonly allRefNames: string[] | undefined;
|
|
1378
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
1379
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
1380
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
1381
|
+
readonly refNameColors: string[];
|
|
1382
|
+
} & {
|
|
1383
|
+
readonly refNames: string[] | undefined;
|
|
1384
|
+
} & {
|
|
1385
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
1386
|
+
getRefNameColor(refName: string): string | undefined;
|
|
1387
|
+
isValidRefName(refName: string): boolean;
|
|
1388
|
+
} & {
|
|
1389
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
1390
|
+
setError(e: unknown): void;
|
|
1391
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
1392
|
+
setRefNameAliases(aliases: {
|
|
1393
|
+
[x: string]: string | undefined;
|
|
1394
|
+
}, lcAliases: {
|
|
1395
|
+
[x: string]: string | undefined;
|
|
1396
|
+
}): void;
|
|
1397
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
1398
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
1399
|
+
load(): Promise<void>;
|
|
1400
|
+
loadPre(): Promise<void>;
|
|
1401
|
+
} & {
|
|
1402
|
+
getAdapterMapEntry(adapterConf: {
|
|
1403
|
+
[x: string]: unknown;
|
|
1404
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
1405
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
1406
|
+
[x: string]: unknown;
|
|
1407
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1408
|
+
[x: string]: string | undefined;
|
|
1409
|
+
}>;
|
|
1410
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1411
|
+
[x: string]: unknown;
|
|
1412
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1413
|
+
[x: string]: string | undefined;
|
|
1414
|
+
}>;
|
|
1415
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1416
|
+
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
1417
|
+
}, {
|
|
1418
|
+
error: unknown;
|
|
1419
|
+
loaded: boolean;
|
|
1420
|
+
loadingP: Promise<void> | undefined;
|
|
1421
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1422
|
+
refNameAliases: {
|
|
1423
|
+
[x: string]: string | undefined;
|
|
1424
|
+
} | undefined;
|
|
1425
|
+
lowerCaseRefNameAliases: {
|
|
1426
|
+
[x: string]: string | undefined;
|
|
1427
|
+
} | undefined;
|
|
1428
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
1429
|
+
} & {
|
|
1430
|
+
getConf(arg: string): any;
|
|
1431
|
+
} & {
|
|
1432
|
+
readonly initialized: boolean;
|
|
1433
|
+
readonly name: string;
|
|
1434
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1435
|
+
readonly aliases: string[];
|
|
1436
|
+
readonly displayName: string | undefined;
|
|
1437
|
+
hasName(name: string): boolean;
|
|
1438
|
+
readonly allAliases: string[];
|
|
1439
|
+
readonly allRefNames: string[] | undefined;
|
|
1440
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
1441
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
1442
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
1443
|
+
readonly refNameColors: string[];
|
|
1444
|
+
} & {
|
|
1445
|
+
readonly refNames: string[] | undefined;
|
|
1446
|
+
} & {
|
|
1447
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
1448
|
+
getRefNameColor(refName: string): string | undefined;
|
|
1449
|
+
isValidRefName(refName: string): boolean;
|
|
1450
|
+
} & {
|
|
1451
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
1452
|
+
setError(e: unknown): void;
|
|
1453
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
1454
|
+
setRefNameAliases(aliases: {
|
|
1455
|
+
[x: string]: string | undefined;
|
|
1456
|
+
}, lcAliases: {
|
|
1457
|
+
[x: string]: string | undefined;
|
|
1458
|
+
}): void;
|
|
1459
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
1460
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
1461
|
+
load(): Promise<void>;
|
|
1462
|
+
loadPre(): Promise<void>;
|
|
1463
|
+
} & {
|
|
1464
|
+
getAdapterMapEntry(adapterConf: {
|
|
1465
|
+
[x: string]: unknown;
|
|
1466
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
1467
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
1468
|
+
[x: string]: unknown;
|
|
1469
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1470
|
+
[x: string]: string | undefined;
|
|
1471
|
+
}>;
|
|
1472
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1473
|
+
[x: string]: unknown;
|
|
1474
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1475
|
+
[x: string]: string | undefined;
|
|
1476
|
+
}>;
|
|
1477
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1478
|
+
}): Promise<void>;
|
|
1223
1479
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string | undefined): Promise<void>;
|
|
1224
1480
|
navTo(query: import("./LinearGenomeView").NavLocation): void;
|
|
1225
1481
|
navToMultiple(locations: import("./LinearGenomeView").NavLocation[]): void;
|
|
@@ -1371,7 +1627,7 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1371
1627
|
} & {
|
|
1372
1628
|
moveTrack(movingId: string, targetId: string): void;
|
|
1373
1629
|
closeView(): void;
|
|
1374
|
-
toggleTrack(trackId: string):
|
|
1630
|
+
toggleTrack(trackId: string): boolean;
|
|
1375
1631
|
setTrackLabels(setting: "offset" | "hidden" | "overlapping"): void;
|
|
1376
1632
|
toggleCenterLine(): void;
|
|
1377
1633
|
setDisplayedRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
@@ -1421,6 +1677,134 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1421
1677
|
} & {
|
|
1422
1678
|
moveTo(start?: import("./LinearGenomeView").BpOffset | undefined, end?: import("./LinearGenomeView").BpOffset | undefined): void;
|
|
1423
1679
|
navToLocString(input: string, optAssemblyName?: string | undefined): Promise<void>;
|
|
1680
|
+
navToSearchString({ input, assembly, }: {
|
|
1681
|
+
input: string;
|
|
1682
|
+
assembly: {
|
|
1683
|
+
configuration: any;
|
|
1684
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1685
|
+
error: unknown;
|
|
1686
|
+
loaded: boolean;
|
|
1687
|
+
loadingP: Promise<void> | undefined;
|
|
1688
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1689
|
+
refNameAliases: {
|
|
1690
|
+
[x: string]: string | undefined;
|
|
1691
|
+
} | undefined;
|
|
1692
|
+
lowerCaseRefNameAliases: {
|
|
1693
|
+
[x: string]: string | undefined;
|
|
1694
|
+
} | undefined;
|
|
1695
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
1696
|
+
} & {
|
|
1697
|
+
getConf(arg: string): any;
|
|
1698
|
+
} & {
|
|
1699
|
+
readonly initialized: boolean;
|
|
1700
|
+
readonly name: string;
|
|
1701
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1702
|
+
readonly aliases: string[];
|
|
1703
|
+
readonly displayName: string | undefined;
|
|
1704
|
+
hasName(name: string): boolean;
|
|
1705
|
+
readonly allAliases: string[];
|
|
1706
|
+
readonly allRefNames: string[] | undefined;
|
|
1707
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
1708
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
1709
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
1710
|
+
readonly refNameColors: string[];
|
|
1711
|
+
} & {
|
|
1712
|
+
readonly refNames: string[] | undefined;
|
|
1713
|
+
} & {
|
|
1714
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
1715
|
+
getRefNameColor(refName: string): string | undefined;
|
|
1716
|
+
isValidRefName(refName: string): boolean;
|
|
1717
|
+
} & {
|
|
1718
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
1719
|
+
setError(e: unknown): void;
|
|
1720
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
1721
|
+
setRefNameAliases(aliases: {
|
|
1722
|
+
[x: string]: string | undefined;
|
|
1723
|
+
}, lcAliases: {
|
|
1724
|
+
[x: string]: string | undefined;
|
|
1725
|
+
}): void;
|
|
1726
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
1727
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
1728
|
+
load(): Promise<void>;
|
|
1729
|
+
loadPre(): Promise<void>;
|
|
1730
|
+
} & {
|
|
1731
|
+
getAdapterMapEntry(adapterConf: {
|
|
1732
|
+
[x: string]: unknown;
|
|
1733
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
1734
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
1735
|
+
[x: string]: unknown;
|
|
1736
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1737
|
+
[x: string]: string | undefined;
|
|
1738
|
+
}>;
|
|
1739
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1740
|
+
[x: string]: unknown;
|
|
1741
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1742
|
+
[x: string]: string | undefined;
|
|
1743
|
+
}>;
|
|
1744
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1745
|
+
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
1746
|
+
}, {
|
|
1747
|
+
error: unknown;
|
|
1748
|
+
loaded: boolean;
|
|
1749
|
+
loadingP: Promise<void> | undefined;
|
|
1750
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1751
|
+
refNameAliases: {
|
|
1752
|
+
[x: string]: string | undefined;
|
|
1753
|
+
} | undefined;
|
|
1754
|
+
lowerCaseRefNameAliases: {
|
|
1755
|
+
[x: string]: string | undefined;
|
|
1756
|
+
} | undefined;
|
|
1757
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
1758
|
+
} & {
|
|
1759
|
+
getConf(arg: string): any;
|
|
1760
|
+
} & {
|
|
1761
|
+
readonly initialized: boolean;
|
|
1762
|
+
readonly name: string;
|
|
1763
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
1764
|
+
readonly aliases: string[];
|
|
1765
|
+
readonly displayName: string | undefined;
|
|
1766
|
+
hasName(name: string): boolean;
|
|
1767
|
+
readonly allAliases: string[];
|
|
1768
|
+
readonly allRefNames: string[] | undefined;
|
|
1769
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
1770
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
1771
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
1772
|
+
readonly refNameColors: string[];
|
|
1773
|
+
} & {
|
|
1774
|
+
readonly refNames: string[] | undefined;
|
|
1775
|
+
} & {
|
|
1776
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
1777
|
+
getRefNameColor(refName: string): string | undefined;
|
|
1778
|
+
isValidRefName(refName: string): boolean;
|
|
1779
|
+
} & {
|
|
1780
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
1781
|
+
setError(e: unknown): void;
|
|
1782
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
1783
|
+
setRefNameAliases(aliases: {
|
|
1784
|
+
[x: string]: string | undefined;
|
|
1785
|
+
}, lcAliases: {
|
|
1786
|
+
[x: string]: string | undefined;
|
|
1787
|
+
}): void;
|
|
1788
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
1789
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
1790
|
+
load(): Promise<void>;
|
|
1791
|
+
loadPre(): Promise<void>;
|
|
1792
|
+
} & {
|
|
1793
|
+
getAdapterMapEntry(adapterConf: {
|
|
1794
|
+
[x: string]: unknown;
|
|
1795
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
1796
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
1797
|
+
[x: string]: unknown;
|
|
1798
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1799
|
+
[x: string]: string | undefined;
|
|
1800
|
+
}>;
|
|
1801
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
1802
|
+
[x: string]: unknown;
|
|
1803
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
1804
|
+
[x: string]: string | undefined;
|
|
1805
|
+
}>;
|
|
1806
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1807
|
+
}): Promise<void>;
|
|
1424
1808
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string | undefined): Promise<void>;
|
|
1425
1809
|
navTo(query: import("./LinearGenomeView").NavLocation): void;
|
|
1426
1810
|
navToMultiple(locations: import("./LinearGenomeView").NavLocation[]): void;
|
|
@@ -1562,7 +1946,7 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1562
1946
|
} & {
|
|
1563
1947
|
moveTrack(movingId: string, targetId: string): void;
|
|
1564
1948
|
closeView(): void;
|
|
1565
|
-
toggleTrack(trackId: string):
|
|
1949
|
+
toggleTrack(trackId: string): boolean;
|
|
1566
1950
|
setTrackLabels(setting: "offset" | "hidden" | "overlapping"): void;
|
|
1567
1951
|
toggleCenterLine(): void;
|
|
1568
1952
|
setDisplayedRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
@@ -1612,6 +1996,134 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1612
1996
|
} & {
|
|
1613
1997
|
moveTo(start?: import("./LinearGenomeView").BpOffset | undefined, end?: import("./LinearGenomeView").BpOffset | undefined): void;
|
|
1614
1998
|
navToLocString(input: string, optAssemblyName?: string | undefined): Promise<void>;
|
|
1999
|
+
navToSearchString({ input, assembly, }: {
|
|
2000
|
+
input: string;
|
|
2001
|
+
assembly: {
|
|
2002
|
+
configuration: any;
|
|
2003
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2004
|
+
error: unknown;
|
|
2005
|
+
loaded: boolean;
|
|
2006
|
+
loadingP: Promise<void> | undefined;
|
|
2007
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2008
|
+
refNameAliases: {
|
|
2009
|
+
[x: string]: string | undefined;
|
|
2010
|
+
} | undefined;
|
|
2011
|
+
lowerCaseRefNameAliases: {
|
|
2012
|
+
[x: string]: string | undefined;
|
|
2013
|
+
} | undefined;
|
|
2014
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
2015
|
+
} & {
|
|
2016
|
+
getConf(arg: string): any;
|
|
2017
|
+
} & {
|
|
2018
|
+
readonly initialized: boolean;
|
|
2019
|
+
readonly name: string;
|
|
2020
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2021
|
+
readonly aliases: string[];
|
|
2022
|
+
readonly displayName: string | undefined;
|
|
2023
|
+
hasName(name: string): boolean;
|
|
2024
|
+
readonly allAliases: string[];
|
|
2025
|
+
readonly allRefNames: string[] | undefined;
|
|
2026
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
2027
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
2028
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
2029
|
+
readonly refNameColors: string[];
|
|
2030
|
+
} & {
|
|
2031
|
+
readonly refNames: string[] | undefined;
|
|
2032
|
+
} & {
|
|
2033
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
2034
|
+
getRefNameColor(refName: string): string | undefined;
|
|
2035
|
+
isValidRefName(refName: string): boolean;
|
|
2036
|
+
} & {
|
|
2037
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
2038
|
+
setError(e: unknown): void;
|
|
2039
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
2040
|
+
setRefNameAliases(aliases: {
|
|
2041
|
+
[x: string]: string | undefined;
|
|
2042
|
+
}, lcAliases: {
|
|
2043
|
+
[x: string]: string | undefined;
|
|
2044
|
+
}): void;
|
|
2045
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
2046
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
2047
|
+
load(): Promise<void>;
|
|
2048
|
+
loadPre(): Promise<void>;
|
|
2049
|
+
} & {
|
|
2050
|
+
getAdapterMapEntry(adapterConf: {
|
|
2051
|
+
[x: string]: unknown;
|
|
2052
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
2053
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
2054
|
+
[x: string]: unknown;
|
|
2055
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2056
|
+
[x: string]: string | undefined;
|
|
2057
|
+
}>;
|
|
2058
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
2059
|
+
[x: string]: unknown;
|
|
2060
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2061
|
+
[x: string]: string | undefined;
|
|
2062
|
+
}>;
|
|
2063
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2064
|
+
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
2065
|
+
}, {
|
|
2066
|
+
error: unknown;
|
|
2067
|
+
loaded: boolean;
|
|
2068
|
+
loadingP: Promise<void> | undefined;
|
|
2069
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2070
|
+
refNameAliases: {
|
|
2071
|
+
[x: string]: string | undefined;
|
|
2072
|
+
} | undefined;
|
|
2073
|
+
lowerCaseRefNameAliases: {
|
|
2074
|
+
[x: string]: string | undefined;
|
|
2075
|
+
} | undefined;
|
|
2076
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
2077
|
+
} & {
|
|
2078
|
+
getConf(arg: string): any;
|
|
2079
|
+
} & {
|
|
2080
|
+
readonly initialized: boolean;
|
|
2081
|
+
readonly name: string;
|
|
2082
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2083
|
+
readonly aliases: string[];
|
|
2084
|
+
readonly displayName: string | undefined;
|
|
2085
|
+
hasName(name: string): boolean;
|
|
2086
|
+
readonly allAliases: string[];
|
|
2087
|
+
readonly allRefNames: string[] | undefined;
|
|
2088
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
2089
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
2090
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
2091
|
+
readonly refNameColors: string[];
|
|
2092
|
+
} & {
|
|
2093
|
+
readonly refNames: string[] | undefined;
|
|
2094
|
+
} & {
|
|
2095
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
2096
|
+
getRefNameColor(refName: string): string | undefined;
|
|
2097
|
+
isValidRefName(refName: string): boolean;
|
|
2098
|
+
} & {
|
|
2099
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
2100
|
+
setError(e: unknown): void;
|
|
2101
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
2102
|
+
setRefNameAliases(aliases: {
|
|
2103
|
+
[x: string]: string | undefined;
|
|
2104
|
+
}, lcAliases: {
|
|
2105
|
+
[x: string]: string | undefined;
|
|
2106
|
+
}): void;
|
|
2107
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
2108
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
2109
|
+
load(): Promise<void>;
|
|
2110
|
+
loadPre(): Promise<void>;
|
|
2111
|
+
} & {
|
|
2112
|
+
getAdapterMapEntry(adapterConf: {
|
|
2113
|
+
[x: string]: unknown;
|
|
2114
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
2115
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
2116
|
+
[x: string]: unknown;
|
|
2117
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2118
|
+
[x: string]: string | undefined;
|
|
2119
|
+
}>;
|
|
2120
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
2121
|
+
[x: string]: unknown;
|
|
2122
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2123
|
+
[x: string]: string | undefined;
|
|
2124
|
+
}>;
|
|
2125
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2126
|
+
}): Promise<void>;
|
|
1615
2127
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string | undefined): Promise<void>;
|
|
1616
2128
|
navTo(query: import("./LinearGenomeView").NavLocation): void;
|
|
1617
2129
|
navToMultiple(locations: import("./LinearGenomeView").NavLocation[]): void;
|
|
@@ -1763,7 +2275,7 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1763
2275
|
} & {
|
|
1764
2276
|
moveTrack(movingId: string, targetId: string): void;
|
|
1765
2277
|
closeView(): void;
|
|
1766
|
-
toggleTrack(trackId: string):
|
|
2278
|
+
toggleTrack(trackId: string): boolean;
|
|
1767
2279
|
setTrackLabels(setting: "offset" | "hidden" | "overlapping"): void;
|
|
1768
2280
|
toggleCenterLine(): void;
|
|
1769
2281
|
setDisplayedRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
@@ -1813,6 +2325,134 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1813
2325
|
} & {
|
|
1814
2326
|
moveTo(start?: import("./LinearGenomeView").BpOffset | undefined, end?: import("./LinearGenomeView").BpOffset | undefined): void;
|
|
1815
2327
|
navToLocString(input: string, optAssemblyName?: string | undefined): Promise<void>;
|
|
2328
|
+
navToSearchString({ input, assembly, }: {
|
|
2329
|
+
input: string;
|
|
2330
|
+
assembly: {
|
|
2331
|
+
configuration: any;
|
|
2332
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2333
|
+
error: unknown;
|
|
2334
|
+
loaded: boolean;
|
|
2335
|
+
loadingP: Promise<void> | undefined;
|
|
2336
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2337
|
+
refNameAliases: {
|
|
2338
|
+
[x: string]: string | undefined;
|
|
2339
|
+
} | undefined;
|
|
2340
|
+
lowerCaseRefNameAliases: {
|
|
2341
|
+
[x: string]: string | undefined;
|
|
2342
|
+
} | undefined;
|
|
2343
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
2344
|
+
} & {
|
|
2345
|
+
getConf(arg: string): any;
|
|
2346
|
+
} & {
|
|
2347
|
+
readonly initialized: boolean;
|
|
2348
|
+
readonly name: string;
|
|
2349
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2350
|
+
readonly aliases: string[];
|
|
2351
|
+
readonly displayName: string | undefined;
|
|
2352
|
+
hasName(name: string): boolean;
|
|
2353
|
+
readonly allAliases: string[];
|
|
2354
|
+
readonly allRefNames: string[] | undefined;
|
|
2355
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
2356
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
2357
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
2358
|
+
readonly refNameColors: string[];
|
|
2359
|
+
} & {
|
|
2360
|
+
readonly refNames: string[] | undefined;
|
|
2361
|
+
} & {
|
|
2362
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
2363
|
+
getRefNameColor(refName: string): string | undefined;
|
|
2364
|
+
isValidRefName(refName: string): boolean;
|
|
2365
|
+
} & {
|
|
2366
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
2367
|
+
setError(e: unknown): void;
|
|
2368
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
2369
|
+
setRefNameAliases(aliases: {
|
|
2370
|
+
[x: string]: string | undefined;
|
|
2371
|
+
}, lcAliases: {
|
|
2372
|
+
[x: string]: string | undefined;
|
|
2373
|
+
}): void;
|
|
2374
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
2375
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
2376
|
+
load(): Promise<void>;
|
|
2377
|
+
loadPre(): Promise<void>;
|
|
2378
|
+
} & {
|
|
2379
|
+
getAdapterMapEntry(adapterConf: {
|
|
2380
|
+
[x: string]: unknown;
|
|
2381
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
2382
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
2383
|
+
[x: string]: unknown;
|
|
2384
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2385
|
+
[x: string]: string | undefined;
|
|
2386
|
+
}>;
|
|
2387
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
2388
|
+
[x: string]: unknown;
|
|
2389
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2390
|
+
[x: string]: string | undefined;
|
|
2391
|
+
}>;
|
|
2392
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2393
|
+
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
2394
|
+
}, {
|
|
2395
|
+
error: unknown;
|
|
2396
|
+
loaded: boolean;
|
|
2397
|
+
loadingP: Promise<void> | undefined;
|
|
2398
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2399
|
+
refNameAliases: {
|
|
2400
|
+
[x: string]: string | undefined;
|
|
2401
|
+
} | undefined;
|
|
2402
|
+
lowerCaseRefNameAliases: {
|
|
2403
|
+
[x: string]: string | undefined;
|
|
2404
|
+
} | undefined;
|
|
2405
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
2406
|
+
} & {
|
|
2407
|
+
getConf(arg: string): any;
|
|
2408
|
+
} & {
|
|
2409
|
+
readonly initialized: boolean;
|
|
2410
|
+
readonly name: string;
|
|
2411
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2412
|
+
readonly aliases: string[];
|
|
2413
|
+
readonly displayName: string | undefined;
|
|
2414
|
+
hasName(name: string): boolean;
|
|
2415
|
+
readonly allAliases: string[];
|
|
2416
|
+
readonly allRefNames: string[] | undefined;
|
|
2417
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
2418
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
2419
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
2420
|
+
readonly refNameColors: string[];
|
|
2421
|
+
} & {
|
|
2422
|
+
readonly refNames: string[] | undefined;
|
|
2423
|
+
} & {
|
|
2424
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
2425
|
+
getRefNameColor(refName: string): string | undefined;
|
|
2426
|
+
isValidRefName(refName: string): boolean;
|
|
2427
|
+
} & {
|
|
2428
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
2429
|
+
setError(e: unknown): void;
|
|
2430
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
2431
|
+
setRefNameAliases(aliases: {
|
|
2432
|
+
[x: string]: string | undefined;
|
|
2433
|
+
}, lcAliases: {
|
|
2434
|
+
[x: string]: string | undefined;
|
|
2435
|
+
}): void;
|
|
2436
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
2437
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
2438
|
+
load(): Promise<void>;
|
|
2439
|
+
loadPre(): Promise<void>;
|
|
2440
|
+
} & {
|
|
2441
|
+
getAdapterMapEntry(adapterConf: {
|
|
2442
|
+
[x: string]: unknown;
|
|
2443
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
2444
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
2445
|
+
[x: string]: unknown;
|
|
2446
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2447
|
+
[x: string]: string | undefined;
|
|
2448
|
+
}>;
|
|
2449
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
2450
|
+
[x: string]: unknown;
|
|
2451
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2452
|
+
[x: string]: string | undefined;
|
|
2453
|
+
}>;
|
|
2454
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2455
|
+
}): Promise<void>;
|
|
1816
2456
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string | undefined): Promise<void>;
|
|
1817
2457
|
navTo(query: import("./LinearGenomeView").NavLocation): void;
|
|
1818
2458
|
navToMultiple(locations: import("./LinearGenomeView").NavLocation[]): void;
|
|
@@ -1954,7 +2594,7 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
1954
2594
|
} & {
|
|
1955
2595
|
moveTrack(movingId: string, targetId: string): void;
|
|
1956
2596
|
closeView(): void;
|
|
1957
|
-
toggleTrack(trackId: string):
|
|
2597
|
+
toggleTrack(trackId: string): boolean;
|
|
1958
2598
|
setTrackLabels(setting: "offset" | "hidden" | "overlapping"): void;
|
|
1959
2599
|
toggleCenterLine(): void;
|
|
1960
2600
|
setDisplayedRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
@@ -2004,6 +2644,134 @@ export default class LinearGenomeViewPlugin extends Plugin {
|
|
|
2004
2644
|
} & {
|
|
2005
2645
|
moveTo(start?: import("./LinearGenomeView").BpOffset | undefined, end?: import("./LinearGenomeView").BpOffset | undefined): void;
|
|
2006
2646
|
navToLocString(input: string, optAssemblyName?: string | undefined): Promise<void>;
|
|
2647
|
+
navToSearchString({ input, assembly, }: {
|
|
2648
|
+
input: string;
|
|
2649
|
+
assembly: {
|
|
2650
|
+
configuration: any;
|
|
2651
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2652
|
+
error: unknown;
|
|
2653
|
+
loaded: boolean;
|
|
2654
|
+
loadingP: Promise<void> | undefined;
|
|
2655
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2656
|
+
refNameAliases: {
|
|
2657
|
+
[x: string]: string | undefined;
|
|
2658
|
+
} | undefined;
|
|
2659
|
+
lowerCaseRefNameAliases: {
|
|
2660
|
+
[x: string]: string | undefined;
|
|
2661
|
+
} | undefined;
|
|
2662
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
2663
|
+
} & {
|
|
2664
|
+
getConf(arg: string): any;
|
|
2665
|
+
} & {
|
|
2666
|
+
readonly initialized: boolean;
|
|
2667
|
+
readonly name: string;
|
|
2668
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2669
|
+
readonly aliases: string[];
|
|
2670
|
+
readonly displayName: string | undefined;
|
|
2671
|
+
hasName(name: string): boolean;
|
|
2672
|
+
readonly allAliases: string[];
|
|
2673
|
+
readonly allRefNames: string[] | undefined;
|
|
2674
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
2675
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
2676
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
2677
|
+
readonly refNameColors: string[];
|
|
2678
|
+
} & {
|
|
2679
|
+
readonly refNames: string[] | undefined;
|
|
2680
|
+
} & {
|
|
2681
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
2682
|
+
getRefNameColor(refName: string): string | undefined;
|
|
2683
|
+
isValidRefName(refName: string): boolean;
|
|
2684
|
+
} & {
|
|
2685
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
2686
|
+
setError(e: unknown): void;
|
|
2687
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
2688
|
+
setRefNameAliases(aliases: {
|
|
2689
|
+
[x: string]: string | undefined;
|
|
2690
|
+
}, lcAliases: {
|
|
2691
|
+
[x: string]: string | undefined;
|
|
2692
|
+
}): void;
|
|
2693
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
2694
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
2695
|
+
load(): Promise<void>;
|
|
2696
|
+
loadPre(): Promise<void>;
|
|
2697
|
+
} & {
|
|
2698
|
+
getAdapterMapEntry(adapterConf: {
|
|
2699
|
+
[x: string]: unknown;
|
|
2700
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
2701
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
2702
|
+
[x: string]: unknown;
|
|
2703
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2704
|
+
[x: string]: string | undefined;
|
|
2705
|
+
}>;
|
|
2706
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
2707
|
+
[x: string]: unknown;
|
|
2708
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2709
|
+
[x: string]: string | undefined;
|
|
2710
|
+
}>;
|
|
2711
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2712
|
+
configuration: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IAnyType>>;
|
|
2713
|
+
}, {
|
|
2714
|
+
error: unknown;
|
|
2715
|
+
loaded: boolean;
|
|
2716
|
+
loadingP: Promise<void> | undefined;
|
|
2717
|
+
volatileRegions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2718
|
+
refNameAliases: {
|
|
2719
|
+
[x: string]: string | undefined;
|
|
2720
|
+
} | undefined;
|
|
2721
|
+
lowerCaseRefNameAliases: {
|
|
2722
|
+
[x: string]: string | undefined;
|
|
2723
|
+
} | undefined;
|
|
2724
|
+
cytobands: import("@jbrowse/core/util").Feature[] | undefined;
|
|
2725
|
+
} & {
|
|
2726
|
+
getConf(arg: string): any;
|
|
2727
|
+
} & {
|
|
2728
|
+
readonly initialized: boolean;
|
|
2729
|
+
readonly name: string;
|
|
2730
|
+
readonly regions: import("@jbrowse/core/assemblyManager/assembly").BasicRegion[] | undefined;
|
|
2731
|
+
readonly aliases: string[];
|
|
2732
|
+
readonly displayName: string | undefined;
|
|
2733
|
+
hasName(name: string): boolean;
|
|
2734
|
+
readonly allAliases: string[];
|
|
2735
|
+
readonly allRefNames: string[] | undefined;
|
|
2736
|
+
readonly lowerCaseRefNames: string[] | undefined;
|
|
2737
|
+
readonly allRefNamesWithLowerCase: string[] | undefined;
|
|
2738
|
+
readonly rpcManager: import("@jbrowse/core/rpc/RpcManager").default;
|
|
2739
|
+
readonly refNameColors: string[];
|
|
2740
|
+
} & {
|
|
2741
|
+
readonly refNames: string[] | undefined;
|
|
2742
|
+
} & {
|
|
2743
|
+
getCanonicalRefName(refName: string): string | undefined;
|
|
2744
|
+
getRefNameColor(refName: string): string | undefined;
|
|
2745
|
+
isValidRefName(refName: string): boolean;
|
|
2746
|
+
} & {
|
|
2747
|
+
setLoaded({ adapterRegionsWithAssembly, refNameAliases, lowerCaseRefNameAliases, cytobands, }: import("@jbrowse/core/assemblyManager/assembly").Loading): void;
|
|
2748
|
+
setError(e: unknown): void;
|
|
2749
|
+
setRegions(regions: import("@jbrowse/core/util").Region[]): void;
|
|
2750
|
+
setRefNameAliases(aliases: {
|
|
2751
|
+
[x: string]: string | undefined;
|
|
2752
|
+
}, lcAliases: {
|
|
2753
|
+
[x: string]: string | undefined;
|
|
2754
|
+
}): void;
|
|
2755
|
+
setCytobands(cytobands: import("@jbrowse/core/util").Feature[]): void;
|
|
2756
|
+
setLoadingP(p?: Promise<void> | undefined): void;
|
|
2757
|
+
load(): Promise<void>;
|
|
2758
|
+
loadPre(): Promise<void>;
|
|
2759
|
+
} & {
|
|
2760
|
+
getAdapterMapEntry(adapterConf: {
|
|
2761
|
+
[x: string]: unknown;
|
|
2762
|
+
}, options: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<import("@jbrowse/core/assemblyManager/assembly").RefNameMap>;
|
|
2763
|
+
getRefNameMapForAdapter(adapterConf: {
|
|
2764
|
+
[x: string]: unknown;
|
|
2765
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2766
|
+
[x: string]: string | undefined;
|
|
2767
|
+
}>;
|
|
2768
|
+
getReverseRefNameMapForAdapter(adapterConf: {
|
|
2769
|
+
[x: string]: unknown;
|
|
2770
|
+
}, opts: import("@jbrowse/core/data_adapters/BaseAdapter").BaseOptions): Promise<{
|
|
2771
|
+
[x: string]: string | undefined;
|
|
2772
|
+
}>;
|
|
2773
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2774
|
+
}): Promise<void>;
|
|
2007
2775
|
navToLocations(parsedLocStrings: import("@jbrowse/core/util").ParsedLocString[], assemblyName?: string | undefined): Promise<void>;
|
|
2008
2776
|
navTo(query: import("./LinearGenomeView").NavLocation): void;
|
|
2009
2777
|
navToMultiple(locations: import("./LinearGenomeView").NavLocation[]): void;
|
|
@@ -2065,5 +2833,6 @@ export type { ExportSvgDisplayOptions, BaseLinearDisplayModel, BlockModel, } fro
|
|
|
2065
2833
|
export { configSchemaFactory as linearBareDisplayConfigSchemaFactory } from './LinearBareDisplay';
|
|
2066
2834
|
export { baseLinearDisplayConfigSchema, BaseLinearDisplay, BlockMsg, BaseLinearDisplayComponent, TrackHeightMixin, FeatureDensityMixin, TooLargeMessage, } from './BaseLinearDisplay';
|
|
2067
2835
|
export { type LinearGenomeViewModel, type LinearGenomeViewStateModel, RefNameAutocomplete, SearchBox, } from './LinearGenomeView';
|
|
2068
|
-
export { renderToSvg, SVGTracks,
|
|
2836
|
+
export { renderToSvg, SVGTracks, SVGRuler, } from './LinearGenomeView/svgcomponents/SVGLinearGenomeView';
|
|
2837
|
+
export { totalHeight } from './LinearGenomeView/svgcomponents/util';
|
|
2069
2838
|
export { configSchema as linearBasicDisplayConfigSchemaFactory, modelFactory as linearBasicDisplayModelFactory, } from './LinearBasicDisplay';
|