@genome-spy/app 0.80.0 → 0.81.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/agentApi.es.js +3455 -2474
- package/dist/agentShared.es.js +13 -13
- package/dist/{debug-CSHW8msQ.js → debug-D8J70fYe.js} +2 -2
- package/dist/{debug-BYVz83MS.js → debug-jlJzKBR-.js} +26 -26
- package/dist/index.es.js +10116 -8923
- package/dist/index.js +746 -238
- package/dist/schema.json +2419 -180
- package/dist/style.css +1 -1
- package/dist/{viewIdentityRegistry-BCDkwJTm.js → viewIdentityRegistry-DLQWeb1Y.js} +1424 -1140
- package/dist/{viewIdentityRegistry-DjnM56qZ.js → viewIdentityRegistry-DuZgd_T3.js} +4 -4
- package/dist/{viewUtils-BY0z0W1Y.js → viewUtils-ChwePFhK.js} +4180 -3725
- package/package.json +5 -5
- package/src/appTypes.d.ts +12 -0
package/dist/schema.json
CHANGED
|
@@ -81,12 +81,58 @@
|
|
|
81
81
|
],
|
|
82
82
|
"type": "string"
|
|
83
83
|
},
|
|
84
|
+
"AlignmentMismatchesParams": {
|
|
85
|
+
"additionalProperties": false,
|
|
86
|
+
"description": "Emits one row per mismatching aligned base in a read alignment.\n\nThe transform uses the read sequence, CIGAR string, and MD tag. The MD tag is required because ordinary `M` CIGAR operations do not distinguish matches from mismatches. The output rows preserve the input datum fields, or only the fields listed in `copyFields` when it is defined, and add fixed mismatch fields: `mismatchStart`, `mismatchEnd`, `readOffset`, `base`, `refBase`, and optionally `baseQuality`. Reference coordinates are 0-based, half-open.",
|
|
87
|
+
"properties": {
|
|
88
|
+
"cigar": {
|
|
89
|
+
"$ref": "#/definitions/Field",
|
|
90
|
+
"description": "The CIGAR string.\n\n__Default value:__ `\"cigar\"`"
|
|
91
|
+
},
|
|
92
|
+
"copyFields": {
|
|
93
|
+
"description": "Top-level input fields copied to the emitted mismatch rows.\n\nIf omitted, all input fields are copied. This can be used to avoid copying bulky fields such as read sequence or base quality arrays while still allowing the transform to read its input fields.",
|
|
94
|
+
"items": {
|
|
95
|
+
"type": "string"
|
|
96
|
+
},
|
|
97
|
+
"type": "array"
|
|
98
|
+
},
|
|
99
|
+
"description": {
|
|
100
|
+
"description": "A description of the transform step. Can be used for documentation and agent context.",
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
"md": {
|
|
104
|
+
"$ref": "#/definitions/Field",
|
|
105
|
+
"description": "MD tag field.\n\n__Default value:__ `\"md\"`"
|
|
106
|
+
},
|
|
107
|
+
"quality": {
|
|
108
|
+
"$ref": "#/definitions/Field",
|
|
109
|
+
"description": "Base quality field.\n\n__Default value:__ `\"qual\"`"
|
|
110
|
+
},
|
|
111
|
+
"sequence": {
|
|
112
|
+
"$ref": "#/definitions/Field",
|
|
113
|
+
"description": "Read sequence field.\n\n__Default value:__ `\"seq\"`"
|
|
114
|
+
},
|
|
115
|
+
"start": {
|
|
116
|
+
"$ref": "#/definitions/Field",
|
|
117
|
+
"description": "The read's reference start coordinate.\n\n__Default value:__ `\"start\"`"
|
|
118
|
+
},
|
|
119
|
+
"type": {
|
|
120
|
+
"const": "alignmentMismatches",
|
|
121
|
+
"description": "The type of the transform to be applied",
|
|
122
|
+
"type": "string"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"required": [
|
|
126
|
+
"type"
|
|
127
|
+
],
|
|
128
|
+
"type": "object"
|
|
129
|
+
},
|
|
84
130
|
"AppConcatSpec": {
|
|
85
131
|
"additionalProperties": false,
|
|
86
132
|
"properties": {
|
|
87
133
|
"axes": {
|
|
88
134
|
"additionalProperties": false,
|
|
89
|
-
"description": "
|
|
135
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
90
136
|
"properties": {
|
|
91
137
|
"x": {
|
|
92
138
|
"additionalProperties": false,
|
|
@@ -892,6 +938,14 @@
|
|
|
892
938
|
"$ref": "#/definitions/Data",
|
|
893
939
|
"description": "Specifies a [data source](https://genomespy.app/docs/grammar/data/). If omitted, the data source is inherited from the parent view."
|
|
894
940
|
},
|
|
941
|
+
"datasets": {
|
|
942
|
+
"additionalProperties": {
|
|
943
|
+
"items": {},
|
|
944
|
+
"type": "array"
|
|
945
|
+
},
|
|
946
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
947
|
+
"type": "object"
|
|
948
|
+
},
|
|
895
949
|
"description": {
|
|
896
950
|
"anyOf": [
|
|
897
951
|
{
|
|
@@ -925,16 +979,19 @@
|
|
|
925
979
|
{
|
|
926
980
|
"$ref": "#/definitions/Step"
|
|
927
981
|
},
|
|
982
|
+
{
|
|
983
|
+
"$ref": "#/definitions/ExprRef"
|
|
984
|
+
},
|
|
928
985
|
{
|
|
929
986
|
"const": "container",
|
|
930
987
|
"type": "string"
|
|
931
988
|
}
|
|
932
989
|
],
|
|
933
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
990
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
934
991
|
},
|
|
935
992
|
"legends": {
|
|
936
993
|
"additionalProperties": false,
|
|
937
|
-
"description": "
|
|
994
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
938
995
|
"properties": {
|
|
939
996
|
"angle": {
|
|
940
997
|
"$ref": "#/definitions/Legend"
|
|
@@ -1006,6 +1063,9 @@
|
|
|
1006
1063
|
"default": {
|
|
1007
1064
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1008
1065
|
},
|
|
1066
|
+
"direction": {
|
|
1067
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
1068
|
+
},
|
|
1009
1069
|
"dx": {
|
|
1010
1070
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1011
1071
|
},
|
|
@@ -1054,6 +1114,9 @@
|
|
|
1054
1114
|
"text": {
|
|
1055
1115
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1056
1116
|
},
|
|
1117
|
+
"tooltip": {
|
|
1118
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
1119
|
+
},
|
|
1057
1120
|
"uniqueId": {
|
|
1058
1121
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1059
1122
|
},
|
|
@@ -1084,6 +1147,9 @@
|
|
|
1084
1147
|
"default": {
|
|
1085
1148
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1086
1149
|
},
|
|
1150
|
+
"direction": {
|
|
1151
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
1152
|
+
},
|
|
1087
1153
|
"dx": {
|
|
1088
1154
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1089
1155
|
},
|
|
@@ -1132,6 +1198,9 @@
|
|
|
1132
1198
|
"text": {
|
|
1133
1199
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1134
1200
|
},
|
|
1201
|
+
"tooltip": {
|
|
1202
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
1203
|
+
},
|
|
1135
1204
|
"uniqueId": {
|
|
1136
1205
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1137
1206
|
},
|
|
@@ -1162,6 +1231,9 @@
|
|
|
1162
1231
|
"default": {
|
|
1163
1232
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1164
1233
|
},
|
|
1234
|
+
"direction": {
|
|
1235
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
1236
|
+
},
|
|
1165
1237
|
"dx": {
|
|
1166
1238
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1167
1239
|
},
|
|
@@ -1210,6 +1282,9 @@
|
|
|
1210
1282
|
"text": {
|
|
1211
1283
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1212
1284
|
},
|
|
1285
|
+
"tooltip": {
|
|
1286
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
1287
|
+
},
|
|
1213
1288
|
"uniqueId": {
|
|
1214
1289
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
1215
1290
|
},
|
|
@@ -1233,7 +1308,7 @@
|
|
|
1233
1308
|
},
|
|
1234
1309
|
"scales": {
|
|
1235
1310
|
"additionalProperties": false,
|
|
1236
|
-
"description": "
|
|
1311
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
1237
1312
|
"properties": {
|
|
1238
1313
|
"angle": {
|
|
1239
1314
|
"$ref": "#/definitions/Scale"
|
|
@@ -1241,6 +1316,9 @@
|
|
|
1241
1316
|
"color": {
|
|
1242
1317
|
"$ref": "#/definitions/Scale"
|
|
1243
1318
|
},
|
|
1319
|
+
"direction": {
|
|
1320
|
+
"$ref": "#/definitions/Scale"
|
|
1321
|
+
},
|
|
1244
1322
|
"dx": {
|
|
1245
1323
|
"$ref": "#/definitions/Scale"
|
|
1246
1324
|
},
|
|
@@ -1333,12 +1411,15 @@
|
|
|
1333
1411
|
{
|
|
1334
1412
|
"type": "number"
|
|
1335
1413
|
},
|
|
1414
|
+
{
|
|
1415
|
+
"$ref": "#/definitions/ExprRef"
|
|
1416
|
+
},
|
|
1336
1417
|
{
|
|
1337
1418
|
"const": "container",
|
|
1338
1419
|
"type": "string"
|
|
1339
1420
|
}
|
|
1340
1421
|
],
|
|
1341
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
1422
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
1342
1423
|
},
|
|
1343
1424
|
"viewportWidth": {
|
|
1344
1425
|
"anyOf": [
|
|
@@ -1348,12 +1429,15 @@
|
|
|
1348
1429
|
{
|
|
1349
1430
|
"type": "number"
|
|
1350
1431
|
},
|
|
1432
|
+
{
|
|
1433
|
+
"$ref": "#/definitions/ExprRef"
|
|
1434
|
+
},
|
|
1351
1435
|
{
|
|
1352
1436
|
"const": "container",
|
|
1353
1437
|
"type": "string"
|
|
1354
1438
|
}
|
|
1355
1439
|
],
|
|
1356
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
1440
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
1357
1441
|
},
|
|
1358
1442
|
"visible": {
|
|
1359
1443
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -1370,12 +1454,15 @@
|
|
|
1370
1454
|
{
|
|
1371
1455
|
"$ref": "#/definitions/Step"
|
|
1372
1456
|
},
|
|
1457
|
+
{
|
|
1458
|
+
"$ref": "#/definitions/ExprRef"
|
|
1459
|
+
},
|
|
1373
1460
|
{
|
|
1374
1461
|
"const": "container",
|
|
1375
1462
|
"type": "string"
|
|
1376
1463
|
}
|
|
1377
1464
|
],
|
|
1378
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
1465
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
1379
1466
|
}
|
|
1380
1467
|
},
|
|
1381
1468
|
"required": [
|
|
@@ -1389,7 +1476,7 @@
|
|
|
1389
1476
|
"properties": {
|
|
1390
1477
|
"axes": {
|
|
1391
1478
|
"additionalProperties": false,
|
|
1392
|
-
"description": "
|
|
1479
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
1393
1480
|
"properties": {
|
|
1394
1481
|
"x": {
|
|
1395
1482
|
"additionalProperties": false,
|
|
@@ -2178,6 +2265,14 @@
|
|
|
2178
2265
|
"$ref": "#/definitions/Data",
|
|
2179
2266
|
"description": "Specifies a [data source](https://genomespy.app/docs/grammar/data/). If omitted, the data source is inherited from the parent view."
|
|
2180
2267
|
},
|
|
2268
|
+
"datasets": {
|
|
2269
|
+
"additionalProperties": {
|
|
2270
|
+
"items": {},
|
|
2271
|
+
"type": "array"
|
|
2272
|
+
},
|
|
2273
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
2274
|
+
"type": "object"
|
|
2275
|
+
},
|
|
2181
2276
|
"description": {
|
|
2182
2277
|
"anyOf": [
|
|
2183
2278
|
{
|
|
@@ -2224,16 +2319,19 @@
|
|
|
2224
2319
|
{
|
|
2225
2320
|
"$ref": "#/definitions/Step"
|
|
2226
2321
|
},
|
|
2322
|
+
{
|
|
2323
|
+
"$ref": "#/definitions/ExprRef"
|
|
2324
|
+
},
|
|
2227
2325
|
{
|
|
2228
2326
|
"const": "container",
|
|
2229
2327
|
"type": "string"
|
|
2230
2328
|
}
|
|
2231
2329
|
],
|
|
2232
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
2330
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
2233
2331
|
},
|
|
2234
2332
|
"legends": {
|
|
2235
2333
|
"additionalProperties": false,
|
|
2236
|
-
"description": "
|
|
2334
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
2237
2335
|
"properties": {
|
|
2238
2336
|
"angle": {
|
|
2239
2337
|
"$ref": "#/definitions/Legend"
|
|
@@ -2305,6 +2403,9 @@
|
|
|
2305
2403
|
"default": {
|
|
2306
2404
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2307
2405
|
},
|
|
2406
|
+
"direction": {
|
|
2407
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
2408
|
+
},
|
|
2308
2409
|
"dx": {
|
|
2309
2410
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2310
2411
|
},
|
|
@@ -2353,6 +2454,9 @@
|
|
|
2353
2454
|
"text": {
|
|
2354
2455
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2355
2456
|
},
|
|
2457
|
+
"tooltip": {
|
|
2458
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
2459
|
+
},
|
|
2356
2460
|
"uniqueId": {
|
|
2357
2461
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2358
2462
|
},
|
|
@@ -2383,6 +2487,9 @@
|
|
|
2383
2487
|
"default": {
|
|
2384
2488
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2385
2489
|
},
|
|
2490
|
+
"direction": {
|
|
2491
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
2492
|
+
},
|
|
2386
2493
|
"dx": {
|
|
2387
2494
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2388
2495
|
},
|
|
@@ -2431,6 +2538,9 @@
|
|
|
2431
2538
|
"text": {
|
|
2432
2539
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2433
2540
|
},
|
|
2541
|
+
"tooltip": {
|
|
2542
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
2543
|
+
},
|
|
2434
2544
|
"uniqueId": {
|
|
2435
2545
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2436
2546
|
},
|
|
@@ -2461,6 +2571,9 @@
|
|
|
2461
2571
|
"default": {
|
|
2462
2572
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2463
2573
|
},
|
|
2574
|
+
"direction": {
|
|
2575
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
2576
|
+
},
|
|
2464
2577
|
"dx": {
|
|
2465
2578
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2466
2579
|
},
|
|
@@ -2509,6 +2622,9 @@
|
|
|
2509
2622
|
"text": {
|
|
2510
2623
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2511
2624
|
},
|
|
2625
|
+
"tooltip": {
|
|
2626
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
2627
|
+
},
|
|
2512
2628
|
"uniqueId": {
|
|
2513
2629
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
2514
2630
|
},
|
|
@@ -2532,7 +2648,7 @@
|
|
|
2532
2648
|
},
|
|
2533
2649
|
"scales": {
|
|
2534
2650
|
"additionalProperties": false,
|
|
2535
|
-
"description": "
|
|
2651
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
2536
2652
|
"properties": {
|
|
2537
2653
|
"angle": {
|
|
2538
2654
|
"$ref": "#/definitions/Scale"
|
|
@@ -2540,6 +2656,9 @@
|
|
|
2540
2656
|
"color": {
|
|
2541
2657
|
"$ref": "#/definitions/Scale"
|
|
2542
2658
|
},
|
|
2659
|
+
"direction": {
|
|
2660
|
+
"$ref": "#/definitions/Scale"
|
|
2661
|
+
},
|
|
2543
2662
|
"dx": {
|
|
2544
2663
|
"$ref": "#/definitions/Scale"
|
|
2545
2664
|
},
|
|
@@ -2632,12 +2751,15 @@
|
|
|
2632
2751
|
{
|
|
2633
2752
|
"type": "number"
|
|
2634
2753
|
},
|
|
2754
|
+
{
|
|
2755
|
+
"$ref": "#/definitions/ExprRef"
|
|
2756
|
+
},
|
|
2635
2757
|
{
|
|
2636
2758
|
"const": "container",
|
|
2637
2759
|
"type": "string"
|
|
2638
2760
|
}
|
|
2639
2761
|
],
|
|
2640
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
2762
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
2641
2763
|
},
|
|
2642
2764
|
"viewportWidth": {
|
|
2643
2765
|
"anyOf": [
|
|
@@ -2647,12 +2769,15 @@
|
|
|
2647
2769
|
{
|
|
2648
2770
|
"type": "number"
|
|
2649
2771
|
},
|
|
2772
|
+
{
|
|
2773
|
+
"$ref": "#/definitions/ExprRef"
|
|
2774
|
+
},
|
|
2650
2775
|
{
|
|
2651
2776
|
"const": "container",
|
|
2652
2777
|
"type": "string"
|
|
2653
2778
|
}
|
|
2654
2779
|
],
|
|
2655
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
2780
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
2656
2781
|
},
|
|
2657
2782
|
"visible": {
|
|
2658
2783
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -2669,12 +2794,15 @@
|
|
|
2669
2794
|
{
|
|
2670
2795
|
"$ref": "#/definitions/Step"
|
|
2671
2796
|
},
|
|
2797
|
+
{
|
|
2798
|
+
"$ref": "#/definitions/ExprRef"
|
|
2799
|
+
},
|
|
2672
2800
|
{
|
|
2673
2801
|
"const": "container",
|
|
2674
2802
|
"type": "string"
|
|
2675
2803
|
}
|
|
2676
2804
|
],
|
|
2677
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
2805
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
2678
2806
|
}
|
|
2679
2807
|
},
|
|
2680
2808
|
"required": [
|
|
@@ -2694,7 +2822,7 @@
|
|
|
2694
2822
|
},
|
|
2695
2823
|
"axes": {
|
|
2696
2824
|
"additionalProperties": false,
|
|
2697
|
-
"description": "
|
|
2825
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
2698
2826
|
"properties": {
|
|
2699
2827
|
"x": {
|
|
2700
2828
|
"additionalProperties": false,
|
|
@@ -3483,6 +3611,14 @@
|
|
|
3483
3611
|
"$ref": "#/definitions/Data",
|
|
3484
3612
|
"description": "Specifies a [data source](https://genomespy.app/docs/grammar/data/). If omitted, the data source is inherited from the parent view."
|
|
3485
3613
|
},
|
|
3614
|
+
"datasets": {
|
|
3615
|
+
"additionalProperties": {
|
|
3616
|
+
"items": {},
|
|
3617
|
+
"type": "array"
|
|
3618
|
+
},
|
|
3619
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
3620
|
+
"type": "object"
|
|
3621
|
+
},
|
|
3486
3622
|
"description": {
|
|
3487
3623
|
"anyOf": [
|
|
3488
3624
|
{
|
|
@@ -3516,12 +3652,15 @@
|
|
|
3516
3652
|
{
|
|
3517
3653
|
"$ref": "#/definitions/Step"
|
|
3518
3654
|
},
|
|
3655
|
+
{
|
|
3656
|
+
"$ref": "#/definitions/ExprRef"
|
|
3657
|
+
},
|
|
3519
3658
|
{
|
|
3520
3659
|
"const": "container",
|
|
3521
3660
|
"type": "string"
|
|
3522
3661
|
}
|
|
3523
3662
|
],
|
|
3524
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
3663
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
3525
3664
|
},
|
|
3526
3665
|
"layer": {
|
|
3527
3666
|
"items": {
|
|
@@ -3544,7 +3683,7 @@
|
|
|
3544
3683
|
},
|
|
3545
3684
|
"legends": {
|
|
3546
3685
|
"additionalProperties": false,
|
|
3547
|
-
"description": "
|
|
3686
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
3548
3687
|
"properties": {
|
|
3549
3688
|
"angle": {
|
|
3550
3689
|
"$ref": "#/definitions/Legend"
|
|
@@ -3620,6 +3759,9 @@
|
|
|
3620
3759
|
"default": {
|
|
3621
3760
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3622
3761
|
},
|
|
3762
|
+
"direction": {
|
|
3763
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
3764
|
+
},
|
|
3623
3765
|
"dx": {
|
|
3624
3766
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3625
3767
|
},
|
|
@@ -3668,6 +3810,9 @@
|
|
|
3668
3810
|
"text": {
|
|
3669
3811
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3670
3812
|
},
|
|
3813
|
+
"tooltip": {
|
|
3814
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
3815
|
+
},
|
|
3671
3816
|
"uniqueId": {
|
|
3672
3817
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3673
3818
|
},
|
|
@@ -3698,6 +3843,9 @@
|
|
|
3698
3843
|
"default": {
|
|
3699
3844
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3700
3845
|
},
|
|
3846
|
+
"direction": {
|
|
3847
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
3848
|
+
},
|
|
3701
3849
|
"dx": {
|
|
3702
3850
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3703
3851
|
},
|
|
@@ -3746,6 +3894,9 @@
|
|
|
3746
3894
|
"text": {
|
|
3747
3895
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3748
3896
|
},
|
|
3897
|
+
"tooltip": {
|
|
3898
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
3899
|
+
},
|
|
3749
3900
|
"uniqueId": {
|
|
3750
3901
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3751
3902
|
},
|
|
@@ -3776,6 +3927,9 @@
|
|
|
3776
3927
|
"default": {
|
|
3777
3928
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3778
3929
|
},
|
|
3930
|
+
"direction": {
|
|
3931
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
3932
|
+
},
|
|
3779
3933
|
"dx": {
|
|
3780
3934
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3781
3935
|
},
|
|
@@ -3824,6 +3978,9 @@
|
|
|
3824
3978
|
"text": {
|
|
3825
3979
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3826
3980
|
},
|
|
3981
|
+
"tooltip": {
|
|
3982
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
3983
|
+
},
|
|
3827
3984
|
"uniqueId": {
|
|
3828
3985
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
3829
3986
|
},
|
|
@@ -3847,7 +4004,7 @@
|
|
|
3847
4004
|
},
|
|
3848
4005
|
"scales": {
|
|
3849
4006
|
"additionalProperties": false,
|
|
3850
|
-
"description": "
|
|
4007
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
3851
4008
|
"properties": {
|
|
3852
4009
|
"angle": {
|
|
3853
4010
|
"$ref": "#/definitions/Scale"
|
|
@@ -3855,6 +4012,9 @@
|
|
|
3855
4012
|
"color": {
|
|
3856
4013
|
"$ref": "#/definitions/Scale"
|
|
3857
4014
|
},
|
|
4015
|
+
"direction": {
|
|
4016
|
+
"$ref": "#/definitions/Scale"
|
|
4017
|
+
},
|
|
3858
4018
|
"dx": {
|
|
3859
4019
|
"$ref": "#/definitions/Scale"
|
|
3860
4020
|
},
|
|
@@ -3935,12 +4095,15 @@
|
|
|
3935
4095
|
{
|
|
3936
4096
|
"type": "number"
|
|
3937
4097
|
},
|
|
4098
|
+
{
|
|
4099
|
+
"$ref": "#/definitions/ExprRef"
|
|
4100
|
+
},
|
|
3938
4101
|
{
|
|
3939
4102
|
"const": "container",
|
|
3940
4103
|
"type": "string"
|
|
3941
4104
|
}
|
|
3942
4105
|
],
|
|
3943
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
4106
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
3944
4107
|
},
|
|
3945
4108
|
"viewportWidth": {
|
|
3946
4109
|
"anyOf": [
|
|
@@ -3950,12 +4113,15 @@
|
|
|
3950
4113
|
{
|
|
3951
4114
|
"type": "number"
|
|
3952
4115
|
},
|
|
4116
|
+
{
|
|
4117
|
+
"$ref": "#/definitions/ExprRef"
|
|
4118
|
+
},
|
|
3953
4119
|
{
|
|
3954
4120
|
"const": "container",
|
|
3955
4121
|
"type": "string"
|
|
3956
4122
|
}
|
|
3957
4123
|
],
|
|
3958
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
4124
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
3959
4125
|
},
|
|
3960
4126
|
"visible": {
|
|
3961
4127
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -3972,12 +4138,15 @@
|
|
|
3972
4138
|
{
|
|
3973
4139
|
"$ref": "#/definitions/Step"
|
|
3974
4140
|
},
|
|
4141
|
+
{
|
|
4142
|
+
"$ref": "#/definitions/ExprRef"
|
|
4143
|
+
},
|
|
3975
4144
|
{
|
|
3976
4145
|
"const": "container",
|
|
3977
4146
|
"type": "string"
|
|
3978
4147
|
}
|
|
3979
4148
|
],
|
|
3980
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
4149
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
3981
4150
|
}
|
|
3982
4151
|
},
|
|
3983
4152
|
"required": [
|
|
@@ -3997,7 +4166,7 @@
|
|
|
3997
4166
|
},
|
|
3998
4167
|
"axes": {
|
|
3999
4168
|
"additionalProperties": false,
|
|
4000
|
-
"description": "
|
|
4169
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
4001
4170
|
"properties": {
|
|
4002
4171
|
"x": {
|
|
4003
4172
|
"additionalProperties": false,
|
|
@@ -4786,6 +4955,14 @@
|
|
|
4786
4955
|
"$ref": "#/definitions/Data",
|
|
4787
4956
|
"description": "Specifies a [data source](https://genomespy.app/docs/grammar/data/). If omitted, the data source is inherited from the parent view."
|
|
4788
4957
|
},
|
|
4958
|
+
"datasets": {
|
|
4959
|
+
"additionalProperties": {
|
|
4960
|
+
"items": {},
|
|
4961
|
+
"type": "array"
|
|
4962
|
+
},
|
|
4963
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
4964
|
+
"type": "object"
|
|
4965
|
+
},
|
|
4789
4966
|
"description": {
|
|
4790
4967
|
"anyOf": [
|
|
4791
4968
|
{
|
|
@@ -4819,16 +4996,19 @@
|
|
|
4819
4996
|
{
|
|
4820
4997
|
"$ref": "#/definitions/Step"
|
|
4821
4998
|
},
|
|
4999
|
+
{
|
|
5000
|
+
"$ref": "#/definitions/ExprRef"
|
|
5001
|
+
},
|
|
4822
5002
|
{
|
|
4823
5003
|
"const": "container",
|
|
4824
5004
|
"type": "string"
|
|
4825
5005
|
}
|
|
4826
5006
|
],
|
|
4827
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
5007
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
4828
5008
|
},
|
|
4829
5009
|
"legends": {
|
|
4830
5010
|
"additionalProperties": false,
|
|
4831
|
-
"description": "
|
|
5011
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
4832
5012
|
"properties": {
|
|
4833
5013
|
"angle": {
|
|
4834
5014
|
"$ref": "#/definitions/Legend"
|
|
@@ -4923,6 +5103,9 @@
|
|
|
4923
5103
|
"default": {
|
|
4924
5104
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
4925
5105
|
},
|
|
5106
|
+
"direction": {
|
|
5107
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
5108
|
+
},
|
|
4926
5109
|
"dx": {
|
|
4927
5110
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
4928
5111
|
},
|
|
@@ -4971,6 +5154,9 @@
|
|
|
4971
5154
|
"text": {
|
|
4972
5155
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
4973
5156
|
},
|
|
5157
|
+
"tooltip": {
|
|
5158
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
5159
|
+
},
|
|
4974
5160
|
"uniqueId": {
|
|
4975
5161
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
4976
5162
|
},
|
|
@@ -5001,6 +5187,9 @@
|
|
|
5001
5187
|
"default": {
|
|
5002
5188
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
5003
5189
|
},
|
|
5190
|
+
"direction": {
|
|
5191
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
5192
|
+
},
|
|
5004
5193
|
"dx": {
|
|
5005
5194
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
5006
5195
|
},
|
|
@@ -5049,6 +5238,9 @@
|
|
|
5049
5238
|
"text": {
|
|
5050
5239
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
5051
5240
|
},
|
|
5241
|
+
"tooltip": {
|
|
5242
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
5243
|
+
},
|
|
5052
5244
|
"uniqueId": {
|
|
5053
5245
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
5054
5246
|
},
|
|
@@ -5079,6 +5271,9 @@
|
|
|
5079
5271
|
"default": {
|
|
5080
5272
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
5081
5273
|
},
|
|
5274
|
+
"direction": {
|
|
5275
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
5276
|
+
},
|
|
5082
5277
|
"dx": {
|
|
5083
5278
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
5084
5279
|
},
|
|
@@ -5127,6 +5322,9 @@
|
|
|
5127
5322
|
"text": {
|
|
5128
5323
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
5129
5324
|
},
|
|
5325
|
+
"tooltip": {
|
|
5326
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
5327
|
+
},
|
|
5130
5328
|
"uniqueId": {
|
|
5131
5329
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
5132
5330
|
},
|
|
@@ -5150,7 +5348,7 @@
|
|
|
5150
5348
|
},
|
|
5151
5349
|
"scales": {
|
|
5152
5350
|
"additionalProperties": false,
|
|
5153
|
-
"description": "
|
|
5351
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
5154
5352
|
"properties": {
|
|
5155
5353
|
"angle": {
|
|
5156
5354
|
"$ref": "#/definitions/Scale"
|
|
@@ -5158,6 +5356,9 @@
|
|
|
5158
5356
|
"color": {
|
|
5159
5357
|
"$ref": "#/definitions/Scale"
|
|
5160
5358
|
},
|
|
5359
|
+
"direction": {
|
|
5360
|
+
"$ref": "#/definitions/Scale"
|
|
5361
|
+
},
|
|
5161
5362
|
"dx": {
|
|
5162
5363
|
"$ref": "#/definitions/Scale"
|
|
5163
5364
|
},
|
|
@@ -5242,12 +5443,15 @@
|
|
|
5242
5443
|
{
|
|
5243
5444
|
"type": "number"
|
|
5244
5445
|
},
|
|
5446
|
+
{
|
|
5447
|
+
"$ref": "#/definitions/ExprRef"
|
|
5448
|
+
},
|
|
5245
5449
|
{
|
|
5246
5450
|
"const": "container",
|
|
5247
5451
|
"type": "string"
|
|
5248
5452
|
}
|
|
5249
5453
|
],
|
|
5250
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
5454
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
5251
5455
|
},
|
|
5252
5456
|
"viewportWidth": {
|
|
5253
5457
|
"anyOf": [
|
|
@@ -5257,12 +5461,15 @@
|
|
|
5257
5461
|
{
|
|
5258
5462
|
"type": "number"
|
|
5259
5463
|
},
|
|
5464
|
+
{
|
|
5465
|
+
"$ref": "#/definitions/ExprRef"
|
|
5466
|
+
},
|
|
5260
5467
|
{
|
|
5261
5468
|
"const": "container",
|
|
5262
5469
|
"type": "string"
|
|
5263
5470
|
}
|
|
5264
5471
|
],
|
|
5265
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
5472
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
5266
5473
|
},
|
|
5267
5474
|
"visible": {
|
|
5268
5475
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -5279,12 +5486,15 @@
|
|
|
5279
5486
|
{
|
|
5280
5487
|
"$ref": "#/definitions/Step"
|
|
5281
5488
|
},
|
|
5489
|
+
{
|
|
5490
|
+
"$ref": "#/definitions/ExprRef"
|
|
5491
|
+
},
|
|
5282
5492
|
{
|
|
5283
5493
|
"const": "container",
|
|
5284
5494
|
"type": "string"
|
|
5285
5495
|
}
|
|
5286
5496
|
],
|
|
5287
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
5497
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
5288
5498
|
}
|
|
5289
5499
|
},
|
|
5290
5500
|
"required": [
|
|
@@ -5336,7 +5546,7 @@
|
|
|
5336
5546
|
},
|
|
5337
5547
|
"axes": {
|
|
5338
5548
|
"additionalProperties": false,
|
|
5339
|
-
"description": "
|
|
5549
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
5340
5550
|
"properties": {
|
|
5341
5551
|
"x": {
|
|
5342
5552
|
"additionalProperties": false,
|
|
@@ -6138,7 +6348,7 @@
|
|
|
6138
6348
|
"items": {},
|
|
6139
6349
|
"type": "array"
|
|
6140
6350
|
},
|
|
6141
|
-
"description": "
|
|
6351
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
6142
6352
|
"type": "object"
|
|
6143
6353
|
},
|
|
6144
6354
|
"description": {
|
|
@@ -6185,16 +6395,19 @@
|
|
|
6185
6395
|
{
|
|
6186
6396
|
"$ref": "#/definitions/Step"
|
|
6187
6397
|
},
|
|
6398
|
+
{
|
|
6399
|
+
"$ref": "#/definitions/ExprRef"
|
|
6400
|
+
},
|
|
6188
6401
|
{
|
|
6189
6402
|
"const": "container",
|
|
6190
6403
|
"type": "string"
|
|
6191
6404
|
}
|
|
6192
6405
|
],
|
|
6193
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
6406
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
6194
6407
|
},
|
|
6195
6408
|
"legends": {
|
|
6196
6409
|
"additionalProperties": false,
|
|
6197
|
-
"description": "
|
|
6410
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
6198
6411
|
"properties": {
|
|
6199
6412
|
"angle": {
|
|
6200
6413
|
"$ref": "#/definitions/Legend"
|
|
@@ -6281,6 +6494,9 @@
|
|
|
6281
6494
|
"default": {
|
|
6282
6495
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6283
6496
|
},
|
|
6497
|
+
"direction": {
|
|
6498
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
6499
|
+
},
|
|
6284
6500
|
"dx": {
|
|
6285
6501
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6286
6502
|
},
|
|
@@ -6329,6 +6545,9 @@
|
|
|
6329
6545
|
"text": {
|
|
6330
6546
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6331
6547
|
},
|
|
6548
|
+
"tooltip": {
|
|
6549
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
6550
|
+
},
|
|
6332
6551
|
"uniqueId": {
|
|
6333
6552
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6334
6553
|
},
|
|
@@ -6359,6 +6578,9 @@
|
|
|
6359
6578
|
"default": {
|
|
6360
6579
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6361
6580
|
},
|
|
6581
|
+
"direction": {
|
|
6582
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
6583
|
+
},
|
|
6362
6584
|
"dx": {
|
|
6363
6585
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6364
6586
|
},
|
|
@@ -6407,6 +6629,9 @@
|
|
|
6407
6629
|
"text": {
|
|
6408
6630
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6409
6631
|
},
|
|
6632
|
+
"tooltip": {
|
|
6633
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
6634
|
+
},
|
|
6410
6635
|
"uniqueId": {
|
|
6411
6636
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6412
6637
|
},
|
|
@@ -6437,6 +6662,9 @@
|
|
|
6437
6662
|
"default": {
|
|
6438
6663
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6439
6664
|
},
|
|
6665
|
+
"direction": {
|
|
6666
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
6667
|
+
},
|
|
6440
6668
|
"dx": {
|
|
6441
6669
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6442
6670
|
},
|
|
@@ -6485,6 +6713,9 @@
|
|
|
6485
6713
|
"text": {
|
|
6486
6714
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6487
6715
|
},
|
|
6716
|
+
"tooltip": {
|
|
6717
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
6718
|
+
},
|
|
6488
6719
|
"uniqueId": {
|
|
6489
6720
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
6490
6721
|
},
|
|
@@ -6508,7 +6739,7 @@
|
|
|
6508
6739
|
},
|
|
6509
6740
|
"scales": {
|
|
6510
6741
|
"additionalProperties": false,
|
|
6511
|
-
"description": "
|
|
6742
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
6512
6743
|
"properties": {
|
|
6513
6744
|
"angle": {
|
|
6514
6745
|
"$ref": "#/definitions/Scale"
|
|
@@ -6516,6 +6747,9 @@
|
|
|
6516
6747
|
"color": {
|
|
6517
6748
|
"$ref": "#/definitions/Scale"
|
|
6518
6749
|
},
|
|
6750
|
+
"direction": {
|
|
6751
|
+
"$ref": "#/definitions/Scale"
|
|
6752
|
+
},
|
|
6519
6753
|
"dx": {
|
|
6520
6754
|
"$ref": "#/definitions/Scale"
|
|
6521
6755
|
},
|
|
@@ -6615,12 +6849,15 @@
|
|
|
6615
6849
|
{
|
|
6616
6850
|
"type": "number"
|
|
6617
6851
|
},
|
|
6852
|
+
{
|
|
6853
|
+
"$ref": "#/definitions/ExprRef"
|
|
6854
|
+
},
|
|
6618
6855
|
{
|
|
6619
6856
|
"const": "container",
|
|
6620
6857
|
"type": "string"
|
|
6621
6858
|
}
|
|
6622
6859
|
],
|
|
6623
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
6860
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
6624
6861
|
},
|
|
6625
6862
|
"viewportWidth": {
|
|
6626
6863
|
"anyOf": [
|
|
@@ -6630,12 +6867,15 @@
|
|
|
6630
6867
|
{
|
|
6631
6868
|
"type": "number"
|
|
6632
6869
|
},
|
|
6870
|
+
{
|
|
6871
|
+
"$ref": "#/definitions/ExprRef"
|
|
6872
|
+
},
|
|
6633
6873
|
{
|
|
6634
6874
|
"const": "container",
|
|
6635
6875
|
"type": "string"
|
|
6636
6876
|
}
|
|
6637
6877
|
],
|
|
6638
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
6878
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
6639
6879
|
},
|
|
6640
6880
|
"visible": {
|
|
6641
6881
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -6652,12 +6892,15 @@
|
|
|
6652
6892
|
{
|
|
6653
6893
|
"$ref": "#/definitions/Step"
|
|
6654
6894
|
},
|
|
6895
|
+
{
|
|
6896
|
+
"$ref": "#/definitions/ExprRef"
|
|
6897
|
+
},
|
|
6655
6898
|
{
|
|
6656
6899
|
"const": "container",
|
|
6657
6900
|
"type": "string"
|
|
6658
6901
|
}
|
|
6659
6902
|
],
|
|
6660
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
6903
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
6661
6904
|
}
|
|
6662
6905
|
},
|
|
6663
6906
|
"required": [
|
|
@@ -6684,7 +6927,7 @@
|
|
|
6684
6927
|
},
|
|
6685
6928
|
"axes": {
|
|
6686
6929
|
"additionalProperties": false,
|
|
6687
|
-
"description": "
|
|
6930
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
6688
6931
|
"properties": {
|
|
6689
6932
|
"x": {
|
|
6690
6933
|
"additionalProperties": false,
|
|
@@ -7486,7 +7729,7 @@
|
|
|
7486
7729
|
"items": {},
|
|
7487
7730
|
"type": "array"
|
|
7488
7731
|
},
|
|
7489
|
-
"description": "
|
|
7732
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
7490
7733
|
"type": "object"
|
|
7491
7734
|
},
|
|
7492
7735
|
"description": {
|
|
@@ -7533,12 +7776,15 @@
|
|
|
7533
7776
|
{
|
|
7534
7777
|
"$ref": "#/definitions/Step"
|
|
7535
7778
|
},
|
|
7779
|
+
{
|
|
7780
|
+
"$ref": "#/definitions/ExprRef"
|
|
7781
|
+
},
|
|
7536
7782
|
{
|
|
7537
7783
|
"const": "container",
|
|
7538
7784
|
"type": "string"
|
|
7539
7785
|
}
|
|
7540
7786
|
],
|
|
7541
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
7787
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
7542
7788
|
},
|
|
7543
7789
|
"layer": {
|
|
7544
7790
|
"items": {
|
|
@@ -7561,7 +7807,7 @@
|
|
|
7561
7807
|
},
|
|
7562
7808
|
"legends": {
|
|
7563
7809
|
"additionalProperties": false,
|
|
7564
|
-
"description": "
|
|
7810
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
7565
7811
|
"properties": {
|
|
7566
7812
|
"angle": {
|
|
7567
7813
|
"$ref": "#/definitions/Legend"
|
|
@@ -7637,6 +7883,9 @@
|
|
|
7637
7883
|
"default": {
|
|
7638
7884
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7639
7885
|
},
|
|
7886
|
+
"direction": {
|
|
7887
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
7888
|
+
},
|
|
7640
7889
|
"dx": {
|
|
7641
7890
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7642
7891
|
},
|
|
@@ -7685,6 +7934,9 @@
|
|
|
7685
7934
|
"text": {
|
|
7686
7935
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7687
7936
|
},
|
|
7937
|
+
"tooltip": {
|
|
7938
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
7939
|
+
},
|
|
7688
7940
|
"uniqueId": {
|
|
7689
7941
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7690
7942
|
},
|
|
@@ -7715,6 +7967,9 @@
|
|
|
7715
7967
|
"default": {
|
|
7716
7968
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7717
7969
|
},
|
|
7970
|
+
"direction": {
|
|
7971
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
7972
|
+
},
|
|
7718
7973
|
"dx": {
|
|
7719
7974
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7720
7975
|
},
|
|
@@ -7763,6 +8018,9 @@
|
|
|
7763
8018
|
"text": {
|
|
7764
8019
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7765
8020
|
},
|
|
8021
|
+
"tooltip": {
|
|
8022
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
8023
|
+
},
|
|
7766
8024
|
"uniqueId": {
|
|
7767
8025
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7768
8026
|
},
|
|
@@ -7793,6 +8051,9 @@
|
|
|
7793
8051
|
"default": {
|
|
7794
8052
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7795
8053
|
},
|
|
8054
|
+
"direction": {
|
|
8055
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
8056
|
+
},
|
|
7796
8057
|
"dx": {
|
|
7797
8058
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7798
8059
|
},
|
|
@@ -7841,6 +8102,9 @@
|
|
|
7841
8102
|
"text": {
|
|
7842
8103
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7843
8104
|
},
|
|
8105
|
+
"tooltip": {
|
|
8106
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
8107
|
+
},
|
|
7844
8108
|
"uniqueId": {
|
|
7845
8109
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
7846
8110
|
},
|
|
@@ -7864,7 +8128,7 @@
|
|
|
7864
8128
|
},
|
|
7865
8129
|
"scales": {
|
|
7866
8130
|
"additionalProperties": false,
|
|
7867
|
-
"description": "
|
|
8131
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
7868
8132
|
"properties": {
|
|
7869
8133
|
"angle": {
|
|
7870
8134
|
"$ref": "#/definitions/Scale"
|
|
@@ -7872,6 +8136,9 @@
|
|
|
7872
8136
|
"color": {
|
|
7873
8137
|
"$ref": "#/definitions/Scale"
|
|
7874
8138
|
},
|
|
8139
|
+
"direction": {
|
|
8140
|
+
"$ref": "#/definitions/Scale"
|
|
8141
|
+
},
|
|
7875
8142
|
"dx": {
|
|
7876
8143
|
"$ref": "#/definitions/Scale"
|
|
7877
8144
|
},
|
|
@@ -7970,12 +8237,15 @@
|
|
|
7970
8237
|
{
|
|
7971
8238
|
"type": "number"
|
|
7972
8239
|
},
|
|
8240
|
+
{
|
|
8241
|
+
"$ref": "#/definitions/ExprRef"
|
|
8242
|
+
},
|
|
7973
8243
|
{
|
|
7974
8244
|
"const": "container",
|
|
7975
8245
|
"type": "string"
|
|
7976
8246
|
}
|
|
7977
8247
|
],
|
|
7978
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
8248
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
7979
8249
|
},
|
|
7980
8250
|
"viewportWidth": {
|
|
7981
8251
|
"anyOf": [
|
|
@@ -7985,12 +8255,15 @@
|
|
|
7985
8255
|
{
|
|
7986
8256
|
"type": "number"
|
|
7987
8257
|
},
|
|
8258
|
+
{
|
|
8259
|
+
"$ref": "#/definitions/ExprRef"
|
|
8260
|
+
},
|
|
7988
8261
|
{
|
|
7989
8262
|
"const": "container",
|
|
7990
8263
|
"type": "string"
|
|
7991
8264
|
}
|
|
7992
8265
|
],
|
|
7993
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
8266
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
7994
8267
|
},
|
|
7995
8268
|
"visible": {
|
|
7996
8269
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -8007,12 +8280,15 @@
|
|
|
8007
8280
|
{
|
|
8008
8281
|
"$ref": "#/definitions/Step"
|
|
8009
8282
|
},
|
|
8283
|
+
{
|
|
8284
|
+
"$ref": "#/definitions/ExprRef"
|
|
8285
|
+
},
|
|
8010
8286
|
{
|
|
8011
8287
|
"const": "container",
|
|
8012
8288
|
"type": "string"
|
|
8013
8289
|
}
|
|
8014
8290
|
],
|
|
8015
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
8291
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
8016
8292
|
}
|
|
8017
8293
|
},
|
|
8018
8294
|
"required": [
|
|
@@ -8039,7 +8315,7 @@
|
|
|
8039
8315
|
},
|
|
8040
8316
|
"axes": {
|
|
8041
8317
|
"additionalProperties": false,
|
|
8042
|
-
"description": "
|
|
8318
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
8043
8319
|
"properties": {
|
|
8044
8320
|
"x": {
|
|
8045
8321
|
"additionalProperties": false,
|
|
@@ -8841,7 +9117,7 @@
|
|
|
8841
9117
|
"items": {},
|
|
8842
9118
|
"type": "array"
|
|
8843
9119
|
},
|
|
8844
|
-
"description": "
|
|
9120
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
8845
9121
|
"type": "object"
|
|
8846
9122
|
},
|
|
8847
9123
|
"description": {
|
|
@@ -8888,16 +9164,19 @@
|
|
|
8888
9164
|
{
|
|
8889
9165
|
"$ref": "#/definitions/Step"
|
|
8890
9166
|
},
|
|
9167
|
+
{
|
|
9168
|
+
"$ref": "#/definitions/ExprRef"
|
|
9169
|
+
},
|
|
8891
9170
|
{
|
|
8892
9171
|
"const": "container",
|
|
8893
9172
|
"type": "string"
|
|
8894
9173
|
}
|
|
8895
9174
|
],
|
|
8896
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
9175
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
8897
9176
|
},
|
|
8898
9177
|
"legends": {
|
|
8899
9178
|
"additionalProperties": false,
|
|
8900
|
-
"description": "
|
|
9179
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
8901
9180
|
"properties": {
|
|
8902
9181
|
"angle": {
|
|
8903
9182
|
"$ref": "#/definitions/Legend"
|
|
@@ -8992,6 +9271,9 @@
|
|
|
8992
9271
|
"default": {
|
|
8993
9272
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
8994
9273
|
},
|
|
9274
|
+
"direction": {
|
|
9275
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
9276
|
+
},
|
|
8995
9277
|
"dx": {
|
|
8996
9278
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
8997
9279
|
},
|
|
@@ -9040,6 +9322,9 @@
|
|
|
9040
9322
|
"text": {
|
|
9041
9323
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9042
9324
|
},
|
|
9325
|
+
"tooltip": {
|
|
9326
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
9327
|
+
},
|
|
9043
9328
|
"uniqueId": {
|
|
9044
9329
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9045
9330
|
},
|
|
@@ -9070,6 +9355,9 @@
|
|
|
9070
9355
|
"default": {
|
|
9071
9356
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9072
9357
|
},
|
|
9358
|
+
"direction": {
|
|
9359
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
9360
|
+
},
|
|
9073
9361
|
"dx": {
|
|
9074
9362
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9075
9363
|
},
|
|
@@ -9118,6 +9406,9 @@
|
|
|
9118
9406
|
"text": {
|
|
9119
9407
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9120
9408
|
},
|
|
9409
|
+
"tooltip": {
|
|
9410
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
9411
|
+
},
|
|
9121
9412
|
"uniqueId": {
|
|
9122
9413
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9123
9414
|
},
|
|
@@ -9148,6 +9439,9 @@
|
|
|
9148
9439
|
"default": {
|
|
9149
9440
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9150
9441
|
},
|
|
9442
|
+
"direction": {
|
|
9443
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
9444
|
+
},
|
|
9151
9445
|
"dx": {
|
|
9152
9446
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9153
9447
|
},
|
|
@@ -9196,6 +9490,9 @@
|
|
|
9196
9490
|
"text": {
|
|
9197
9491
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9198
9492
|
},
|
|
9493
|
+
"tooltip": {
|
|
9494
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
9495
|
+
},
|
|
9199
9496
|
"uniqueId": {
|
|
9200
9497
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
9201
9498
|
},
|
|
@@ -9219,7 +9516,7 @@
|
|
|
9219
9516
|
},
|
|
9220
9517
|
"scales": {
|
|
9221
9518
|
"additionalProperties": false,
|
|
9222
|
-
"description": "
|
|
9519
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
9223
9520
|
"properties": {
|
|
9224
9521
|
"angle": {
|
|
9225
9522
|
"$ref": "#/definitions/Scale"
|
|
@@ -9227,6 +9524,9 @@
|
|
|
9227
9524
|
"color": {
|
|
9228
9525
|
"$ref": "#/definitions/Scale"
|
|
9229
9526
|
},
|
|
9527
|
+
"direction": {
|
|
9528
|
+
"$ref": "#/definitions/Scale"
|
|
9529
|
+
},
|
|
9230
9530
|
"dx": {
|
|
9231
9531
|
"$ref": "#/definitions/Scale"
|
|
9232
9532
|
},
|
|
@@ -9329,12 +9629,15 @@
|
|
|
9329
9629
|
{
|
|
9330
9630
|
"type": "number"
|
|
9331
9631
|
},
|
|
9632
|
+
{
|
|
9633
|
+
"$ref": "#/definitions/ExprRef"
|
|
9634
|
+
},
|
|
9332
9635
|
{
|
|
9333
9636
|
"const": "container",
|
|
9334
9637
|
"type": "string"
|
|
9335
9638
|
}
|
|
9336
9639
|
],
|
|
9337
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
9640
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
9338
9641
|
},
|
|
9339
9642
|
"viewportWidth": {
|
|
9340
9643
|
"anyOf": [
|
|
@@ -9344,12 +9647,15 @@
|
|
|
9344
9647
|
{
|
|
9345
9648
|
"type": "number"
|
|
9346
9649
|
},
|
|
9650
|
+
{
|
|
9651
|
+
"$ref": "#/definitions/ExprRef"
|
|
9652
|
+
},
|
|
9347
9653
|
{
|
|
9348
9654
|
"const": "container",
|
|
9349
9655
|
"type": "string"
|
|
9350
9656
|
}
|
|
9351
9657
|
],
|
|
9352
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
9658
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
9353
9659
|
},
|
|
9354
9660
|
"visible": {
|
|
9355
9661
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -9366,12 +9672,15 @@
|
|
|
9366
9672
|
{
|
|
9367
9673
|
"$ref": "#/definitions/Step"
|
|
9368
9674
|
},
|
|
9675
|
+
{
|
|
9676
|
+
"$ref": "#/definitions/ExprRef"
|
|
9677
|
+
},
|
|
9369
9678
|
{
|
|
9370
9679
|
"const": "container",
|
|
9371
9680
|
"type": "string"
|
|
9372
9681
|
}
|
|
9373
9682
|
],
|
|
9374
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
9683
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
9375
9684
|
}
|
|
9376
9685
|
},
|
|
9377
9686
|
"required": [
|
|
@@ -9392,7 +9701,7 @@
|
|
|
9392
9701
|
},
|
|
9393
9702
|
"axes": {
|
|
9394
9703
|
"additionalProperties": false,
|
|
9395
|
-
"description": "
|
|
9704
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
9396
9705
|
"properties": {
|
|
9397
9706
|
"x": {
|
|
9398
9707
|
"additionalProperties": false,
|
|
@@ -10194,7 +10503,7 @@
|
|
|
10194
10503
|
"items": {},
|
|
10195
10504
|
"type": "array"
|
|
10196
10505
|
},
|
|
10197
|
-
"description": "
|
|
10506
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
10198
10507
|
"type": "object"
|
|
10199
10508
|
},
|
|
10200
10509
|
"description": {
|
|
@@ -10241,16 +10550,19 @@
|
|
|
10241
10550
|
{
|
|
10242
10551
|
"$ref": "#/definitions/Step"
|
|
10243
10552
|
},
|
|
10553
|
+
{
|
|
10554
|
+
"$ref": "#/definitions/ExprRef"
|
|
10555
|
+
},
|
|
10244
10556
|
{
|
|
10245
10557
|
"const": "container",
|
|
10246
10558
|
"type": "string"
|
|
10247
10559
|
}
|
|
10248
10560
|
],
|
|
10249
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
10561
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
10250
10562
|
},
|
|
10251
10563
|
"legends": {
|
|
10252
10564
|
"additionalProperties": false,
|
|
10253
|
-
"description": "
|
|
10565
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
10254
10566
|
"properties": {
|
|
10255
10567
|
"angle": {
|
|
10256
10568
|
"$ref": "#/definitions/Legend"
|
|
@@ -10322,6 +10634,9 @@
|
|
|
10322
10634
|
"default": {
|
|
10323
10635
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10324
10636
|
},
|
|
10637
|
+
"direction": {
|
|
10638
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
10639
|
+
},
|
|
10325
10640
|
"dx": {
|
|
10326
10641
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10327
10642
|
},
|
|
@@ -10370,6 +10685,9 @@
|
|
|
10370
10685
|
"text": {
|
|
10371
10686
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10372
10687
|
},
|
|
10688
|
+
"tooltip": {
|
|
10689
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
10690
|
+
},
|
|
10373
10691
|
"uniqueId": {
|
|
10374
10692
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10375
10693
|
},
|
|
@@ -10400,6 +10718,9 @@
|
|
|
10400
10718
|
"default": {
|
|
10401
10719
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10402
10720
|
},
|
|
10721
|
+
"direction": {
|
|
10722
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
10723
|
+
},
|
|
10403
10724
|
"dx": {
|
|
10404
10725
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10405
10726
|
},
|
|
@@ -10448,6 +10769,9 @@
|
|
|
10448
10769
|
"text": {
|
|
10449
10770
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10450
10771
|
},
|
|
10772
|
+
"tooltip": {
|
|
10773
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
10774
|
+
},
|
|
10451
10775
|
"uniqueId": {
|
|
10452
10776
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10453
10777
|
},
|
|
@@ -10478,6 +10802,9 @@
|
|
|
10478
10802
|
"default": {
|
|
10479
10803
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10480
10804
|
},
|
|
10805
|
+
"direction": {
|
|
10806
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
10807
|
+
},
|
|
10481
10808
|
"dx": {
|
|
10482
10809
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10483
10810
|
},
|
|
@@ -10526,6 +10853,9 @@
|
|
|
10526
10853
|
"text": {
|
|
10527
10854
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10528
10855
|
},
|
|
10856
|
+
"tooltip": {
|
|
10857
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
10858
|
+
},
|
|
10529
10859
|
"uniqueId": {
|
|
10530
10860
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
10531
10861
|
},
|
|
@@ -10549,7 +10879,7 @@
|
|
|
10549
10879
|
},
|
|
10550
10880
|
"scales": {
|
|
10551
10881
|
"additionalProperties": false,
|
|
10552
|
-
"description": "
|
|
10882
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
10553
10883
|
"properties": {
|
|
10554
10884
|
"angle": {
|
|
10555
10885
|
"$ref": "#/definitions/Scale"
|
|
@@ -10557,6 +10887,9 @@
|
|
|
10557
10887
|
"color": {
|
|
10558
10888
|
"$ref": "#/definitions/Scale"
|
|
10559
10889
|
},
|
|
10890
|
+
"direction": {
|
|
10891
|
+
"$ref": "#/definitions/Scale"
|
|
10892
|
+
},
|
|
10560
10893
|
"dx": {
|
|
10561
10894
|
"$ref": "#/definitions/Scale"
|
|
10562
10895
|
},
|
|
@@ -10680,12 +11013,15 @@
|
|
|
10680
11013
|
{
|
|
10681
11014
|
"type": "number"
|
|
10682
11015
|
},
|
|
11016
|
+
{
|
|
11017
|
+
"$ref": "#/definitions/ExprRef"
|
|
11018
|
+
},
|
|
10683
11019
|
{
|
|
10684
11020
|
"const": "container",
|
|
10685
11021
|
"type": "string"
|
|
10686
11022
|
}
|
|
10687
11023
|
],
|
|
10688
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
11024
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
10689
11025
|
},
|
|
10690
11026
|
"viewportWidth": {
|
|
10691
11027
|
"anyOf": [
|
|
@@ -10695,12 +11031,15 @@
|
|
|
10695
11031
|
{
|
|
10696
11032
|
"type": "number"
|
|
10697
11033
|
},
|
|
11034
|
+
{
|
|
11035
|
+
"$ref": "#/definitions/ExprRef"
|
|
11036
|
+
},
|
|
10698
11037
|
{
|
|
10699
11038
|
"const": "container",
|
|
10700
11039
|
"type": "string"
|
|
10701
11040
|
}
|
|
10702
11041
|
],
|
|
10703
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
11042
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
10704
11043
|
},
|
|
10705
11044
|
"visible": {
|
|
10706
11045
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -10717,12 +11056,15 @@
|
|
|
10717
11056
|
{
|
|
10718
11057
|
"$ref": "#/definitions/Step"
|
|
10719
11058
|
},
|
|
11059
|
+
{
|
|
11060
|
+
"$ref": "#/definitions/ExprRef"
|
|
11061
|
+
},
|
|
10720
11062
|
{
|
|
10721
11063
|
"const": "container",
|
|
10722
11064
|
"type": "string"
|
|
10723
11065
|
}
|
|
10724
11066
|
],
|
|
10725
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
11067
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
10726
11068
|
}
|
|
10727
11069
|
},
|
|
10728
11070
|
"required": [
|
|
@@ -10742,7 +11084,7 @@
|
|
|
10742
11084
|
},
|
|
10743
11085
|
"axes": {
|
|
10744
11086
|
"additionalProperties": false,
|
|
10745
|
-
"description": "
|
|
11087
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
10746
11088
|
"properties": {
|
|
10747
11089
|
"x": {
|
|
10748
11090
|
"additionalProperties": false,
|
|
@@ -11544,7 +11886,7 @@
|
|
|
11544
11886
|
"items": {},
|
|
11545
11887
|
"type": "array"
|
|
11546
11888
|
},
|
|
11547
|
-
"description": "
|
|
11889
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
11548
11890
|
"type": "object"
|
|
11549
11891
|
},
|
|
11550
11892
|
"description": {
|
|
@@ -11604,16 +11946,19 @@
|
|
|
11604
11946
|
{
|
|
11605
11947
|
"$ref": "#/definitions/Step"
|
|
11606
11948
|
},
|
|
11949
|
+
{
|
|
11950
|
+
"$ref": "#/definitions/ExprRef"
|
|
11951
|
+
},
|
|
11607
11952
|
{
|
|
11608
11953
|
"const": "container",
|
|
11609
11954
|
"type": "string"
|
|
11610
11955
|
}
|
|
11611
11956
|
],
|
|
11612
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
11957
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
11613
11958
|
},
|
|
11614
11959
|
"legends": {
|
|
11615
11960
|
"additionalProperties": false,
|
|
11616
|
-
"description": "
|
|
11961
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
11617
11962
|
"properties": {
|
|
11618
11963
|
"angle": {
|
|
11619
11964
|
"$ref": "#/definitions/Legend"
|
|
@@ -11685,6 +12030,9 @@
|
|
|
11685
12030
|
"default": {
|
|
11686
12031
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11687
12032
|
},
|
|
12033
|
+
"direction": {
|
|
12034
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
12035
|
+
},
|
|
11688
12036
|
"dx": {
|
|
11689
12037
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11690
12038
|
},
|
|
@@ -11733,6 +12081,9 @@
|
|
|
11733
12081
|
"text": {
|
|
11734
12082
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11735
12083
|
},
|
|
12084
|
+
"tooltip": {
|
|
12085
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
12086
|
+
},
|
|
11736
12087
|
"uniqueId": {
|
|
11737
12088
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11738
12089
|
},
|
|
@@ -11763,6 +12114,9 @@
|
|
|
11763
12114
|
"default": {
|
|
11764
12115
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11765
12116
|
},
|
|
12117
|
+
"direction": {
|
|
12118
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
12119
|
+
},
|
|
11766
12120
|
"dx": {
|
|
11767
12121
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11768
12122
|
},
|
|
@@ -11811,6 +12165,9 @@
|
|
|
11811
12165
|
"text": {
|
|
11812
12166
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11813
12167
|
},
|
|
12168
|
+
"tooltip": {
|
|
12169
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
12170
|
+
},
|
|
11814
12171
|
"uniqueId": {
|
|
11815
12172
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11816
12173
|
},
|
|
@@ -11841,6 +12198,9 @@
|
|
|
11841
12198
|
"default": {
|
|
11842
12199
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11843
12200
|
},
|
|
12201
|
+
"direction": {
|
|
12202
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
12203
|
+
},
|
|
11844
12204
|
"dx": {
|
|
11845
12205
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11846
12206
|
},
|
|
@@ -11889,6 +12249,9 @@
|
|
|
11889
12249
|
"text": {
|
|
11890
12250
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11891
12251
|
},
|
|
12252
|
+
"tooltip": {
|
|
12253
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
12254
|
+
},
|
|
11892
12255
|
"uniqueId": {
|
|
11893
12256
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
11894
12257
|
},
|
|
@@ -11912,7 +12275,7 @@
|
|
|
11912
12275
|
},
|
|
11913
12276
|
"scales": {
|
|
11914
12277
|
"additionalProperties": false,
|
|
11915
|
-
"description": "
|
|
12278
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
11916
12279
|
"properties": {
|
|
11917
12280
|
"angle": {
|
|
11918
12281
|
"$ref": "#/definitions/Scale"
|
|
@@ -11920,6 +12283,9 @@
|
|
|
11920
12283
|
"color": {
|
|
11921
12284
|
"$ref": "#/definitions/Scale"
|
|
11922
12285
|
},
|
|
12286
|
+
"direction": {
|
|
12287
|
+
"$ref": "#/definitions/Scale"
|
|
12288
|
+
},
|
|
11923
12289
|
"dx": {
|
|
11924
12290
|
"$ref": "#/definitions/Scale"
|
|
11925
12291
|
},
|
|
@@ -12030,12 +12396,15 @@
|
|
|
12030
12396
|
{
|
|
12031
12397
|
"type": "number"
|
|
12032
12398
|
},
|
|
12399
|
+
{
|
|
12400
|
+
"$ref": "#/definitions/ExprRef"
|
|
12401
|
+
},
|
|
12033
12402
|
{
|
|
12034
12403
|
"const": "container",
|
|
12035
12404
|
"type": "string"
|
|
12036
12405
|
}
|
|
12037
12406
|
],
|
|
12038
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
12407
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
12039
12408
|
},
|
|
12040
12409
|
"viewportWidth": {
|
|
12041
12410
|
"anyOf": [
|
|
@@ -12045,12 +12414,15 @@
|
|
|
12045
12414
|
{
|
|
12046
12415
|
"type": "number"
|
|
12047
12416
|
},
|
|
12417
|
+
{
|
|
12418
|
+
"$ref": "#/definitions/ExprRef"
|
|
12419
|
+
},
|
|
12048
12420
|
{
|
|
12049
12421
|
"const": "container",
|
|
12050
12422
|
"type": "string"
|
|
12051
12423
|
}
|
|
12052
12424
|
],
|
|
12053
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
12425
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
12054
12426
|
},
|
|
12055
12427
|
"visible": {
|
|
12056
12428
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -12067,12 +12439,15 @@
|
|
|
12067
12439
|
{
|
|
12068
12440
|
"$ref": "#/definitions/Step"
|
|
12069
12441
|
},
|
|
12442
|
+
{
|
|
12443
|
+
"$ref": "#/definitions/ExprRef"
|
|
12444
|
+
},
|
|
12070
12445
|
{
|
|
12071
12446
|
"const": "container",
|
|
12072
12447
|
"type": "string"
|
|
12073
12448
|
}
|
|
12074
12449
|
],
|
|
12075
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
12450
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
12076
12451
|
}
|
|
12077
12452
|
},
|
|
12078
12453
|
"required": [
|
|
@@ -12092,7 +12467,7 @@
|
|
|
12092
12467
|
},
|
|
12093
12468
|
"axes": {
|
|
12094
12469
|
"additionalProperties": false,
|
|
12095
|
-
"description": "
|
|
12470
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
12096
12471
|
"properties": {
|
|
12097
12472
|
"x": {
|
|
12098
12473
|
"additionalProperties": false,
|
|
@@ -12911,7 +13286,7 @@
|
|
|
12911
13286
|
"items": {},
|
|
12912
13287
|
"type": "array"
|
|
12913
13288
|
},
|
|
12914
|
-
"description": "
|
|
13289
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
12915
13290
|
"type": "object"
|
|
12916
13291
|
},
|
|
12917
13292
|
"description": {
|
|
@@ -12958,16 +13333,19 @@
|
|
|
12958
13333
|
{
|
|
12959
13334
|
"$ref": "#/definitions/Step"
|
|
12960
13335
|
},
|
|
13336
|
+
{
|
|
13337
|
+
"$ref": "#/definitions/ExprRef"
|
|
13338
|
+
},
|
|
12961
13339
|
{
|
|
12962
13340
|
"const": "container",
|
|
12963
13341
|
"type": "string"
|
|
12964
13342
|
}
|
|
12965
13343
|
],
|
|
12966
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
13344
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
12967
13345
|
},
|
|
12968
13346
|
"legends": {
|
|
12969
13347
|
"additionalProperties": false,
|
|
12970
|
-
"description": "
|
|
13348
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
12971
13349
|
"properties": {
|
|
12972
13350
|
"angle": {
|
|
12973
13351
|
"$ref": "#/definitions/Legend"
|
|
@@ -13039,6 +13417,9 @@
|
|
|
13039
13417
|
"default": {
|
|
13040
13418
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13041
13419
|
},
|
|
13420
|
+
"direction": {
|
|
13421
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
13422
|
+
},
|
|
13042
13423
|
"dx": {
|
|
13043
13424
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13044
13425
|
},
|
|
@@ -13087,6 +13468,9 @@
|
|
|
13087
13468
|
"text": {
|
|
13088
13469
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13089
13470
|
},
|
|
13471
|
+
"tooltip": {
|
|
13472
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
13473
|
+
},
|
|
13090
13474
|
"uniqueId": {
|
|
13091
13475
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13092
13476
|
},
|
|
@@ -13117,6 +13501,9 @@
|
|
|
13117
13501
|
"default": {
|
|
13118
13502
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13119
13503
|
},
|
|
13504
|
+
"direction": {
|
|
13505
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
13506
|
+
},
|
|
13120
13507
|
"dx": {
|
|
13121
13508
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13122
13509
|
},
|
|
@@ -13165,6 +13552,9 @@
|
|
|
13165
13552
|
"text": {
|
|
13166
13553
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13167
13554
|
},
|
|
13555
|
+
"tooltip": {
|
|
13556
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
13557
|
+
},
|
|
13168
13558
|
"uniqueId": {
|
|
13169
13559
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13170
13560
|
},
|
|
@@ -13195,6 +13585,9 @@
|
|
|
13195
13585
|
"default": {
|
|
13196
13586
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13197
13587
|
},
|
|
13588
|
+
"direction": {
|
|
13589
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
13590
|
+
},
|
|
13198
13591
|
"dx": {
|
|
13199
13592
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13200
13593
|
},
|
|
@@ -13243,6 +13636,9 @@
|
|
|
13243
13636
|
"text": {
|
|
13244
13637
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13245
13638
|
},
|
|
13639
|
+
"tooltip": {
|
|
13640
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
13641
|
+
},
|
|
13246
13642
|
"uniqueId": {
|
|
13247
13643
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
13248
13644
|
},
|
|
@@ -13266,7 +13662,7 @@
|
|
|
13266
13662
|
},
|
|
13267
13663
|
"scales": {
|
|
13268
13664
|
"additionalProperties": false,
|
|
13269
|
-
"description": "
|
|
13665
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
13270
13666
|
"properties": {
|
|
13271
13667
|
"angle": {
|
|
13272
13668
|
"$ref": "#/definitions/Scale"
|
|
@@ -13274,6 +13670,9 @@
|
|
|
13274
13670
|
"color": {
|
|
13275
13671
|
"$ref": "#/definitions/Scale"
|
|
13276
13672
|
},
|
|
13673
|
+
"direction": {
|
|
13674
|
+
"$ref": "#/definitions/Scale"
|
|
13675
|
+
},
|
|
13277
13676
|
"dx": {
|
|
13278
13677
|
"$ref": "#/definitions/Scale"
|
|
13279
13678
|
},
|
|
@@ -13384,12 +13783,15 @@
|
|
|
13384
13783
|
{
|
|
13385
13784
|
"type": "number"
|
|
13386
13785
|
},
|
|
13786
|
+
{
|
|
13787
|
+
"$ref": "#/definitions/ExprRef"
|
|
13788
|
+
},
|
|
13387
13789
|
{
|
|
13388
13790
|
"const": "container",
|
|
13389
13791
|
"type": "string"
|
|
13390
13792
|
}
|
|
13391
13793
|
],
|
|
13392
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
13794
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
13393
13795
|
},
|
|
13394
13796
|
"viewportWidth": {
|
|
13395
13797
|
"anyOf": [
|
|
@@ -13399,12 +13801,15 @@
|
|
|
13399
13801
|
{
|
|
13400
13802
|
"type": "number"
|
|
13401
13803
|
},
|
|
13804
|
+
{
|
|
13805
|
+
"$ref": "#/definitions/ExprRef"
|
|
13806
|
+
},
|
|
13402
13807
|
{
|
|
13403
13808
|
"const": "container",
|
|
13404
13809
|
"type": "string"
|
|
13405
13810
|
}
|
|
13406
13811
|
],
|
|
13407
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
13812
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
13408
13813
|
},
|
|
13409
13814
|
"visible": {
|
|
13410
13815
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -13421,12 +13826,15 @@
|
|
|
13421
13826
|
{
|
|
13422
13827
|
"$ref": "#/definitions/Step"
|
|
13423
13828
|
},
|
|
13829
|
+
{
|
|
13830
|
+
"$ref": "#/definitions/ExprRef"
|
|
13831
|
+
},
|
|
13424
13832
|
{
|
|
13425
13833
|
"const": "container",
|
|
13426
13834
|
"type": "string"
|
|
13427
13835
|
}
|
|
13428
13836
|
],
|
|
13429
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
13837
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
13430
13838
|
}
|
|
13431
13839
|
},
|
|
13432
13840
|
"required": [
|
|
@@ -13447,7 +13855,7 @@
|
|
|
13447
13855
|
},
|
|
13448
13856
|
"axes": {
|
|
13449
13857
|
"additionalProperties": false,
|
|
13450
|
-
"description": "
|
|
13858
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
13451
13859
|
"properties": {
|
|
13452
13860
|
"x": {
|
|
13453
13861
|
"additionalProperties": false,
|
|
@@ -14249,7 +14657,7 @@
|
|
|
14249
14657
|
"items": {},
|
|
14250
14658
|
"type": "array"
|
|
14251
14659
|
},
|
|
14252
|
-
"description": "
|
|
14660
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
14253
14661
|
"type": "object"
|
|
14254
14662
|
},
|
|
14255
14663
|
"description": {
|
|
@@ -14296,16 +14704,19 @@
|
|
|
14296
14704
|
{
|
|
14297
14705
|
"$ref": "#/definitions/Step"
|
|
14298
14706
|
},
|
|
14707
|
+
{
|
|
14708
|
+
"$ref": "#/definitions/ExprRef"
|
|
14709
|
+
},
|
|
14299
14710
|
{
|
|
14300
14711
|
"const": "container",
|
|
14301
14712
|
"type": "string"
|
|
14302
14713
|
}
|
|
14303
14714
|
],
|
|
14304
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
14715
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
14305
14716
|
},
|
|
14306
14717
|
"legends": {
|
|
14307
14718
|
"additionalProperties": false,
|
|
14308
|
-
"description": "
|
|
14719
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
14309
14720
|
"properties": {
|
|
14310
14721
|
"angle": {
|
|
14311
14722
|
"$ref": "#/definitions/Legend"
|
|
@@ -14381,6 +14792,9 @@
|
|
|
14381
14792
|
"default": {
|
|
14382
14793
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14383
14794
|
},
|
|
14795
|
+
"direction": {
|
|
14796
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
14797
|
+
},
|
|
14384
14798
|
"dx": {
|
|
14385
14799
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14386
14800
|
},
|
|
@@ -14429,6 +14843,9 @@
|
|
|
14429
14843
|
"text": {
|
|
14430
14844
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14431
14845
|
},
|
|
14846
|
+
"tooltip": {
|
|
14847
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
14848
|
+
},
|
|
14432
14849
|
"uniqueId": {
|
|
14433
14850
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14434
14851
|
},
|
|
@@ -14459,6 +14876,9 @@
|
|
|
14459
14876
|
"default": {
|
|
14460
14877
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14461
14878
|
},
|
|
14879
|
+
"direction": {
|
|
14880
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
14881
|
+
},
|
|
14462
14882
|
"dx": {
|
|
14463
14883
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14464
14884
|
},
|
|
@@ -14507,6 +14927,9 @@
|
|
|
14507
14927
|
"text": {
|
|
14508
14928
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14509
14929
|
},
|
|
14930
|
+
"tooltip": {
|
|
14931
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
14932
|
+
},
|
|
14510
14933
|
"uniqueId": {
|
|
14511
14934
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14512
14935
|
},
|
|
@@ -14537,6 +14960,9 @@
|
|
|
14537
14960
|
"default": {
|
|
14538
14961
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14539
14962
|
},
|
|
14963
|
+
"direction": {
|
|
14964
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
14965
|
+
},
|
|
14540
14966
|
"dx": {
|
|
14541
14967
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14542
14968
|
},
|
|
@@ -14585,6 +15011,9 @@
|
|
|
14585
15011
|
"text": {
|
|
14586
15012
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14587
15013
|
},
|
|
15014
|
+
"tooltip": {
|
|
15015
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
15016
|
+
},
|
|
14588
15017
|
"uniqueId": {
|
|
14589
15018
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
14590
15019
|
},
|
|
@@ -14627,7 +15056,7 @@
|
|
|
14627
15056
|
},
|
|
14628
15057
|
"scales": {
|
|
14629
15058
|
"additionalProperties": false,
|
|
14630
|
-
"description": "
|
|
15059
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
14631
15060
|
"properties": {
|
|
14632
15061
|
"angle": {
|
|
14633
15062
|
"$ref": "#/definitions/Scale"
|
|
@@ -14635,6 +15064,9 @@
|
|
|
14635
15064
|
"color": {
|
|
14636
15065
|
"$ref": "#/definitions/Scale"
|
|
14637
15066
|
},
|
|
15067
|
+
"direction": {
|
|
15068
|
+
"$ref": "#/definitions/Scale"
|
|
15069
|
+
},
|
|
14638
15070
|
"dx": {
|
|
14639
15071
|
"$ref": "#/definitions/Scale"
|
|
14640
15072
|
},
|
|
@@ -14749,12 +15181,15 @@
|
|
|
14749
15181
|
{
|
|
14750
15182
|
"type": "number"
|
|
14751
15183
|
},
|
|
15184
|
+
{
|
|
15185
|
+
"$ref": "#/definitions/ExprRef"
|
|
15186
|
+
},
|
|
14752
15187
|
{
|
|
14753
15188
|
"const": "container",
|
|
14754
15189
|
"type": "string"
|
|
14755
15190
|
}
|
|
14756
15191
|
],
|
|
14757
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
15192
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
14758
15193
|
},
|
|
14759
15194
|
"viewportWidth": {
|
|
14760
15195
|
"anyOf": [
|
|
@@ -14764,12 +15199,15 @@
|
|
|
14764
15199
|
{
|
|
14765
15200
|
"type": "number"
|
|
14766
15201
|
},
|
|
15202
|
+
{
|
|
15203
|
+
"$ref": "#/definitions/ExprRef"
|
|
15204
|
+
},
|
|
14767
15205
|
{
|
|
14768
15206
|
"const": "container",
|
|
14769
15207
|
"type": "string"
|
|
14770
15208
|
}
|
|
14771
15209
|
],
|
|
14772
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
15210
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
14773
15211
|
},
|
|
14774
15212
|
"visible": {
|
|
14775
15213
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -14786,12 +15224,15 @@
|
|
|
14786
15224
|
{
|
|
14787
15225
|
"$ref": "#/definitions/Step"
|
|
14788
15226
|
},
|
|
15227
|
+
{
|
|
15228
|
+
"$ref": "#/definitions/ExprRef"
|
|
15229
|
+
},
|
|
14789
15230
|
{
|
|
14790
15231
|
"const": "container",
|
|
14791
15232
|
"type": "string"
|
|
14792
15233
|
}
|
|
14793
15234
|
],
|
|
14794
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
15235
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
14795
15236
|
}
|
|
14796
15237
|
},
|
|
14797
15238
|
"required": [
|
|
@@ -14814,7 +15255,7 @@
|
|
|
14814
15255
|
},
|
|
14815
15256
|
"axes": {
|
|
14816
15257
|
"additionalProperties": false,
|
|
14817
|
-
"description": "
|
|
15258
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
14818
15259
|
"properties": {
|
|
14819
15260
|
"x": {
|
|
14820
15261
|
"additionalProperties": false,
|
|
@@ -15603,6 +16044,14 @@
|
|
|
15603
16044
|
"$ref": "#/definitions/Data",
|
|
15604
16045
|
"description": "Specifies a [data source](https://genomespy.app/docs/grammar/data/). If omitted, the data source is inherited from the parent view."
|
|
15605
16046
|
},
|
|
16047
|
+
"datasets": {
|
|
16048
|
+
"additionalProperties": {
|
|
16049
|
+
"items": {},
|
|
16050
|
+
"type": "array"
|
|
16051
|
+
},
|
|
16052
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
16053
|
+
"type": "object"
|
|
16054
|
+
},
|
|
15606
16055
|
"description": {
|
|
15607
16056
|
"anyOf": [
|
|
15608
16057
|
{
|
|
@@ -15636,16 +16085,19 @@
|
|
|
15636
16085
|
{
|
|
15637
16086
|
"$ref": "#/definitions/Step"
|
|
15638
16087
|
},
|
|
16088
|
+
{
|
|
16089
|
+
"$ref": "#/definitions/ExprRef"
|
|
16090
|
+
},
|
|
15639
16091
|
{
|
|
15640
16092
|
"const": "container",
|
|
15641
16093
|
"type": "string"
|
|
15642
16094
|
}
|
|
15643
16095
|
],
|
|
15644
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
16096
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
15645
16097
|
},
|
|
15646
16098
|
"legends": {
|
|
15647
16099
|
"additionalProperties": false,
|
|
15648
|
-
"description": "
|
|
16100
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
15649
16101
|
"properties": {
|
|
15650
16102
|
"angle": {
|
|
15651
16103
|
"$ref": "#/definitions/Legend"
|
|
@@ -15732,6 +16184,9 @@
|
|
|
15732
16184
|
"default": {
|
|
15733
16185
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15734
16186
|
},
|
|
16187
|
+
"direction": {
|
|
16188
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
16189
|
+
},
|
|
15735
16190
|
"dx": {
|
|
15736
16191
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15737
16192
|
},
|
|
@@ -15780,6 +16235,9 @@
|
|
|
15780
16235
|
"text": {
|
|
15781
16236
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15782
16237
|
},
|
|
16238
|
+
"tooltip": {
|
|
16239
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
16240
|
+
},
|
|
15783
16241
|
"uniqueId": {
|
|
15784
16242
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15785
16243
|
},
|
|
@@ -15810,6 +16268,9 @@
|
|
|
15810
16268
|
"default": {
|
|
15811
16269
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15812
16270
|
},
|
|
16271
|
+
"direction": {
|
|
16272
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
16273
|
+
},
|
|
15813
16274
|
"dx": {
|
|
15814
16275
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15815
16276
|
},
|
|
@@ -15858,6 +16319,9 @@
|
|
|
15858
16319
|
"text": {
|
|
15859
16320
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15860
16321
|
},
|
|
16322
|
+
"tooltip": {
|
|
16323
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
16324
|
+
},
|
|
15861
16325
|
"uniqueId": {
|
|
15862
16326
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15863
16327
|
},
|
|
@@ -15888,6 +16352,9 @@
|
|
|
15888
16352
|
"default": {
|
|
15889
16353
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15890
16354
|
},
|
|
16355
|
+
"direction": {
|
|
16356
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
16357
|
+
},
|
|
15891
16358
|
"dx": {
|
|
15892
16359
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15893
16360
|
},
|
|
@@ -15936,6 +16403,9 @@
|
|
|
15936
16403
|
"text": {
|
|
15937
16404
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15938
16405
|
},
|
|
16406
|
+
"tooltip": {
|
|
16407
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
16408
|
+
},
|
|
15939
16409
|
"uniqueId": {
|
|
15940
16410
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
15941
16411
|
},
|
|
@@ -15959,7 +16429,7 @@
|
|
|
15959
16429
|
},
|
|
15960
16430
|
"scales": {
|
|
15961
16431
|
"additionalProperties": false,
|
|
15962
|
-
"description": "
|
|
16432
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
15963
16433
|
"properties": {
|
|
15964
16434
|
"angle": {
|
|
15965
16435
|
"$ref": "#/definitions/Scale"
|
|
@@ -15967,6 +16437,9 @@
|
|
|
15967
16437
|
"color": {
|
|
15968
16438
|
"$ref": "#/definitions/Scale"
|
|
15969
16439
|
},
|
|
16440
|
+
"direction": {
|
|
16441
|
+
"$ref": "#/definitions/Scale"
|
|
16442
|
+
},
|
|
15970
16443
|
"dx": {
|
|
15971
16444
|
"$ref": "#/definitions/Scale"
|
|
15972
16445
|
},
|
|
@@ -16048,12 +16521,15 @@
|
|
|
16048
16521
|
{
|
|
16049
16522
|
"type": "number"
|
|
16050
16523
|
},
|
|
16524
|
+
{
|
|
16525
|
+
"$ref": "#/definitions/ExprRef"
|
|
16526
|
+
},
|
|
16051
16527
|
{
|
|
16052
16528
|
"const": "container",
|
|
16053
16529
|
"type": "string"
|
|
16054
16530
|
}
|
|
16055
16531
|
],
|
|
16056
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
16532
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
16057
16533
|
},
|
|
16058
16534
|
"viewportWidth": {
|
|
16059
16535
|
"anyOf": [
|
|
@@ -16063,12 +16539,15 @@
|
|
|
16063
16539
|
{
|
|
16064
16540
|
"type": "number"
|
|
16065
16541
|
},
|
|
16542
|
+
{
|
|
16543
|
+
"$ref": "#/definitions/ExprRef"
|
|
16544
|
+
},
|
|
16066
16545
|
{
|
|
16067
16546
|
"const": "container",
|
|
16068
16547
|
"type": "string"
|
|
16069
16548
|
}
|
|
16070
16549
|
],
|
|
16071
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
16550
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
16072
16551
|
},
|
|
16073
16552
|
"visible": {
|
|
16074
16553
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -16085,12 +16564,15 @@
|
|
|
16085
16564
|
{
|
|
16086
16565
|
"$ref": "#/definitions/Step"
|
|
16087
16566
|
},
|
|
16567
|
+
{
|
|
16568
|
+
"$ref": "#/definitions/ExprRef"
|
|
16569
|
+
},
|
|
16088
16570
|
{
|
|
16089
16571
|
"const": "container",
|
|
16090
16572
|
"type": "string"
|
|
16091
16573
|
}
|
|
16092
16574
|
],
|
|
16093
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
16575
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
16094
16576
|
}
|
|
16095
16577
|
},
|
|
16096
16578
|
"required": [
|
|
@@ -16103,7 +16585,7 @@
|
|
|
16103
16585
|
"properties": {
|
|
16104
16586
|
"axes": {
|
|
16105
16587
|
"additionalProperties": false,
|
|
16106
|
-
"description": "
|
|
16588
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
16107
16589
|
"properties": {
|
|
16108
16590
|
"x": {
|
|
16109
16591
|
"additionalProperties": false,
|
|
@@ -16892,6 +17374,14 @@
|
|
|
16892
17374
|
"$ref": "#/definitions/Data",
|
|
16893
17375
|
"description": "Specifies a [data source](https://genomespy.app/docs/grammar/data/). If omitted, the data source is inherited from the parent view."
|
|
16894
17376
|
},
|
|
17377
|
+
"datasets": {
|
|
17378
|
+
"additionalProperties": {
|
|
17379
|
+
"items": {},
|
|
17380
|
+
"type": "array"
|
|
17381
|
+
},
|
|
17382
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
17383
|
+
"type": "object"
|
|
17384
|
+
},
|
|
16895
17385
|
"description": {
|
|
16896
17386
|
"anyOf": [
|
|
16897
17387
|
{
|
|
@@ -16925,16 +17415,19 @@
|
|
|
16925
17415
|
{
|
|
16926
17416
|
"$ref": "#/definitions/Step"
|
|
16927
17417
|
},
|
|
17418
|
+
{
|
|
17419
|
+
"$ref": "#/definitions/ExprRef"
|
|
17420
|
+
},
|
|
16928
17421
|
{
|
|
16929
17422
|
"const": "container",
|
|
16930
17423
|
"type": "string"
|
|
16931
17424
|
}
|
|
16932
17425
|
],
|
|
16933
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
17426
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
16934
17427
|
},
|
|
16935
17428
|
"legends": {
|
|
16936
17429
|
"additionalProperties": false,
|
|
16937
|
-
"description": "
|
|
17430
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
16938
17431
|
"properties": {
|
|
16939
17432
|
"angle": {
|
|
16940
17433
|
"$ref": "#/definitions/Legend"
|
|
@@ -17006,6 +17499,9 @@
|
|
|
17006
17499
|
"default": {
|
|
17007
17500
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17008
17501
|
},
|
|
17502
|
+
"direction": {
|
|
17503
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
17504
|
+
},
|
|
17009
17505
|
"dx": {
|
|
17010
17506
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17011
17507
|
},
|
|
@@ -17054,6 +17550,9 @@
|
|
|
17054
17550
|
"text": {
|
|
17055
17551
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17056
17552
|
},
|
|
17553
|
+
"tooltip": {
|
|
17554
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
17555
|
+
},
|
|
17057
17556
|
"uniqueId": {
|
|
17058
17557
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17059
17558
|
},
|
|
@@ -17084,6 +17583,9 @@
|
|
|
17084
17583
|
"default": {
|
|
17085
17584
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17086
17585
|
},
|
|
17586
|
+
"direction": {
|
|
17587
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
17588
|
+
},
|
|
17087
17589
|
"dx": {
|
|
17088
17590
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17089
17591
|
},
|
|
@@ -17132,6 +17634,9 @@
|
|
|
17132
17634
|
"text": {
|
|
17133
17635
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17134
17636
|
},
|
|
17637
|
+
"tooltip": {
|
|
17638
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
17639
|
+
},
|
|
17135
17640
|
"uniqueId": {
|
|
17136
17641
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17137
17642
|
},
|
|
@@ -17162,6 +17667,9 @@
|
|
|
17162
17667
|
"default": {
|
|
17163
17668
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17164
17669
|
},
|
|
17670
|
+
"direction": {
|
|
17671
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
17672
|
+
},
|
|
17165
17673
|
"dx": {
|
|
17166
17674
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17167
17675
|
},
|
|
@@ -17210,6 +17718,9 @@
|
|
|
17210
17718
|
"text": {
|
|
17211
17719
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17212
17720
|
},
|
|
17721
|
+
"tooltip": {
|
|
17722
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
17723
|
+
},
|
|
17213
17724
|
"uniqueId": {
|
|
17214
17725
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
17215
17726
|
},
|
|
@@ -17233,7 +17744,7 @@
|
|
|
17233
17744
|
},
|
|
17234
17745
|
"scales": {
|
|
17235
17746
|
"additionalProperties": false,
|
|
17236
|
-
"description": "
|
|
17747
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
17237
17748
|
"properties": {
|
|
17238
17749
|
"angle": {
|
|
17239
17750
|
"$ref": "#/definitions/Scale"
|
|
@@ -17241,6 +17752,9 @@
|
|
|
17241
17752
|
"color": {
|
|
17242
17753
|
"$ref": "#/definitions/Scale"
|
|
17243
17754
|
},
|
|
17755
|
+
"direction": {
|
|
17756
|
+
"$ref": "#/definitions/Scale"
|
|
17757
|
+
},
|
|
17244
17758
|
"dx": {
|
|
17245
17759
|
"$ref": "#/definitions/Scale"
|
|
17246
17760
|
},
|
|
@@ -17346,12 +17860,15 @@
|
|
|
17346
17860
|
{
|
|
17347
17861
|
"type": "number"
|
|
17348
17862
|
},
|
|
17863
|
+
{
|
|
17864
|
+
"$ref": "#/definitions/ExprRef"
|
|
17865
|
+
},
|
|
17349
17866
|
{
|
|
17350
17867
|
"const": "container",
|
|
17351
17868
|
"type": "string"
|
|
17352
17869
|
}
|
|
17353
17870
|
],
|
|
17354
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
17871
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
17355
17872
|
},
|
|
17356
17873
|
"viewportWidth": {
|
|
17357
17874
|
"anyOf": [
|
|
@@ -17361,12 +17878,15 @@
|
|
|
17361
17878
|
{
|
|
17362
17879
|
"type": "number"
|
|
17363
17880
|
},
|
|
17881
|
+
{
|
|
17882
|
+
"$ref": "#/definitions/ExprRef"
|
|
17883
|
+
},
|
|
17364
17884
|
{
|
|
17365
17885
|
"const": "container",
|
|
17366
17886
|
"type": "string"
|
|
17367
17887
|
}
|
|
17368
17888
|
],
|
|
17369
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
17889
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
17370
17890
|
},
|
|
17371
17891
|
"visible": {
|
|
17372
17892
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -17383,12 +17903,15 @@
|
|
|
17383
17903
|
{
|
|
17384
17904
|
"$ref": "#/definitions/Step"
|
|
17385
17905
|
},
|
|
17906
|
+
{
|
|
17907
|
+
"$ref": "#/definitions/ExprRef"
|
|
17908
|
+
},
|
|
17386
17909
|
{
|
|
17387
17910
|
"const": "container",
|
|
17388
17911
|
"type": "string"
|
|
17389
17912
|
}
|
|
17390
17913
|
],
|
|
17391
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
17914
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
17392
17915
|
}
|
|
17393
17916
|
},
|
|
17394
17917
|
"required": [
|
|
@@ -17443,6 +17966,765 @@
|
|
|
17443
17966
|
],
|
|
17444
17967
|
"type": "object"
|
|
17445
17968
|
},
|
|
17969
|
+
"ArrowConfig": {
|
|
17970
|
+
"additionalProperties": false,
|
|
17971
|
+
"properties": {
|
|
17972
|
+
"buildIndex": {
|
|
17973
|
+
"description": "Whether the x channel should build an index for efficient subset rendering. If omitted, GenomeSpy enables indexing automatically for positional x encodings.",
|
|
17974
|
+
"type": "boolean"
|
|
17975
|
+
},
|
|
17976
|
+
"clip": {
|
|
17977
|
+
"anyOf": [
|
|
17978
|
+
{
|
|
17979
|
+
"type": "boolean"
|
|
17980
|
+
},
|
|
17981
|
+
{
|
|
17982
|
+
"const": "x",
|
|
17983
|
+
"type": "string"
|
|
17984
|
+
},
|
|
17985
|
+
{
|
|
17986
|
+
"const": "y",
|
|
17987
|
+
"type": "string"
|
|
17988
|
+
},
|
|
17989
|
+
{
|
|
17990
|
+
"const": "never",
|
|
17991
|
+
"type": "string"
|
|
17992
|
+
}
|
|
17993
|
+
],
|
|
17994
|
+
"description": "Controls whether the mark is clipped to the UnitView's rectangle. The values `\"x\"` and `\"y\"` clip only in the corresponding screen-space direction. Inherited clipping from parent containers still applies unless `\"never\"` is used.\n\n__Default value:__ the direction of zoomable positional scales"
|
|
17995
|
+
},
|
|
17996
|
+
"color": {
|
|
17997
|
+
"anyOf": [
|
|
17998
|
+
{
|
|
17999
|
+
"type": "string"
|
|
18000
|
+
},
|
|
18001
|
+
{
|
|
18002
|
+
"$ref": "#/definitions/ExprRef"
|
|
18003
|
+
}
|
|
18004
|
+
],
|
|
18005
|
+
"description": "Color of the mark. Affects either `fill` or `stroke`, depending on the `filled` property."
|
|
18006
|
+
},
|
|
18007
|
+
"cullByVisibleRange": {
|
|
18008
|
+
"anyOf": [
|
|
18009
|
+
{
|
|
18010
|
+
"type": "boolean"
|
|
18011
|
+
},
|
|
18012
|
+
{
|
|
18013
|
+
"const": "x",
|
|
18014
|
+
"type": "string"
|
|
18015
|
+
},
|
|
18016
|
+
{
|
|
18017
|
+
"const": "y",
|
|
18018
|
+
"type": "string"
|
|
18019
|
+
}
|
|
18020
|
+
],
|
|
18021
|
+
"description": "Hide point-like mark instances whose anchor falls outside the inherited visible range in the given screen-space direction."
|
|
18022
|
+
},
|
|
18023
|
+
"cursor": {
|
|
18024
|
+
"anyOf": [
|
|
18025
|
+
{
|
|
18026
|
+
"type": "string"
|
|
18027
|
+
},
|
|
18028
|
+
{
|
|
18029
|
+
"$ref": "#/definitions/ExprRef"
|
|
18030
|
+
}
|
|
18031
|
+
],
|
|
18032
|
+
"description": "Mouse cursor shown while the pointer is over the mark. Mark cursor takes precedence over enclosing view cursors.\n\n__Default value:__ browser default"
|
|
18033
|
+
},
|
|
18034
|
+
"direction": {
|
|
18035
|
+
"anyOf": [
|
|
18036
|
+
{
|
|
18037
|
+
"const": "forward",
|
|
18038
|
+
"type": "string"
|
|
18039
|
+
},
|
|
18040
|
+
{
|
|
18041
|
+
"const": "reverse",
|
|
18042
|
+
"type": "string"
|
|
18043
|
+
},
|
|
18044
|
+
{
|
|
18045
|
+
"$ref": "#/definitions/ExprRef"
|
|
18046
|
+
}
|
|
18047
|
+
],
|
|
18048
|
+
"description": "Direction of the arrowhead. `\"forward\"` places the arrowhead at the secondary endpoint (`x2`, `y2`). `\"reverse\"` places it at the primary endpoint (`x`, `y`). For data-driven direction, use the `direction` encoding channel.\n\n__Default value:__ `\"forward\"`"
|
|
18049
|
+
},
|
|
18050
|
+
"fill": {
|
|
18051
|
+
"anyOf": [
|
|
18052
|
+
{
|
|
18053
|
+
"type": "string"
|
|
18054
|
+
},
|
|
18055
|
+
{
|
|
18056
|
+
"$ref": "#/definitions/ExprRef"
|
|
18057
|
+
}
|
|
18058
|
+
],
|
|
18059
|
+
"description": "The fill color."
|
|
18060
|
+
},
|
|
18061
|
+
"fillOpacity": {
|
|
18062
|
+
"anyOf": [
|
|
18063
|
+
{
|
|
18064
|
+
"type": "number"
|
|
18065
|
+
},
|
|
18066
|
+
{
|
|
18067
|
+
"$ref": "#/definitions/ExprRef"
|
|
18068
|
+
}
|
|
18069
|
+
],
|
|
18070
|
+
"description": "The fill opacity. Value between `0` and `1`."
|
|
18071
|
+
},
|
|
18072
|
+
"filled": {
|
|
18073
|
+
"description": "Whether the `color` represents the `fill` color (`true`) or the `stroke` color (`false`).",
|
|
18074
|
+
"type": "boolean"
|
|
18075
|
+
},
|
|
18076
|
+
"headAngle": {
|
|
18077
|
+
"anyOf": [
|
|
18078
|
+
{
|
|
18079
|
+
"type": "number"
|
|
18080
|
+
},
|
|
18081
|
+
{
|
|
18082
|
+
"$ref": "#/definitions/ExprRef"
|
|
18083
|
+
}
|
|
18084
|
+
],
|
|
18085
|
+
"description": "Angle in degrees between the arrow axis and an outer edge of the arrowhead. Smaller values produce longer, narrower heads. Larger values produce shorter, blunter heads. Values are clamped to `[1, 90]`.\n\n__Default value:__ `45`"
|
|
18086
|
+
},
|
|
18087
|
+
"headNotchAngle": {
|
|
18088
|
+
"anyOf": [
|
|
18089
|
+
{
|
|
18090
|
+
"type": "number"
|
|
18091
|
+
},
|
|
18092
|
+
{
|
|
18093
|
+
"$ref": "#/definitions/ExprRef"
|
|
18094
|
+
}
|
|
18095
|
+
],
|
|
18096
|
+
"description": "Angle in degrees between the arrow axis and the arrowhead notch edge. `90` places the notch point at the tip, producing a triangular head when `headAngle` is less than `90`. Applies to `\"triangle\"` heads. `\"open\"` heads use `headAngle` for the notch edge as well. Values are clamped to `[1, 90]`.\n\n__Default value:__ `90`"
|
|
18097
|
+
},
|
|
18098
|
+
"headPlacement": {
|
|
18099
|
+
"anyOf": [
|
|
18100
|
+
{
|
|
18101
|
+
"const": "inside",
|
|
18102
|
+
"type": "string"
|
|
18103
|
+
},
|
|
18104
|
+
{
|
|
18105
|
+
"const": "outside",
|
|
18106
|
+
"type": "string"
|
|
18107
|
+
},
|
|
18108
|
+
{
|
|
18109
|
+
"$ref": "#/definitions/ExprRef"
|
|
18110
|
+
}
|
|
18111
|
+
],
|
|
18112
|
+
"description": "Placement of the arrowhead relative to the encoded segment. `\"inside\"` keeps the whole arrowhead within the encoded segment. `\"outside\"` places the arrowhead beyond the encoded segment so that the head starts at the segment endpoint.\n\n__Default value:__ `\"inside\"`"
|
|
18113
|
+
},
|
|
18114
|
+
"headShape": {
|
|
18115
|
+
"anyOf": [
|
|
18116
|
+
{
|
|
18117
|
+
"const": "triangle",
|
|
18118
|
+
"type": "string"
|
|
18119
|
+
},
|
|
18120
|
+
{
|
|
18121
|
+
"const": "open",
|
|
18122
|
+
"type": "string"
|
|
18123
|
+
},
|
|
18124
|
+
{
|
|
18125
|
+
"$ref": "#/definitions/ExprRef"
|
|
18126
|
+
}
|
|
18127
|
+
],
|
|
18128
|
+
"description": "Shape of the arrowhead. `\"triangle\"` draws a filled head. `\"open\"` draws an open head whose thickness matches the resolved `size`, even when `stem` is `false`.\n\n__Default value:__ `\"triangle\"`"
|
|
18129
|
+
},
|
|
18130
|
+
"headSpacing": {
|
|
18131
|
+
"anyOf": [
|
|
18132
|
+
{
|
|
18133
|
+
"type": "number"
|
|
18134
|
+
},
|
|
18135
|
+
{
|
|
18136
|
+
"type": "null"
|
|
18137
|
+
},
|
|
18138
|
+
{
|
|
18139
|
+
"$ref": "#/definitions/ExprRef"
|
|
18140
|
+
}
|
|
18141
|
+
],
|
|
18142
|
+
"description": "Spacing between repeated arrowheads as a multiplier of resolved `size`. The effective spacing is at least the rendered arrowhead footprint, including stroke. If `null`, arrowheads are not repeated.\n\n__Default value:__ `null`"
|
|
18143
|
+
},
|
|
18144
|
+
"headWidth": {
|
|
18145
|
+
"anyOf": [
|
|
18146
|
+
{
|
|
18147
|
+
"type": "number"
|
|
18148
|
+
},
|
|
18149
|
+
{
|
|
18150
|
+
"$ref": "#/definitions/ExprRef"
|
|
18151
|
+
}
|
|
18152
|
+
],
|
|
18153
|
+
"description": "Width of the arrowhead as a multiplier of resolved `size`. Values above `1` make the arrowhead wider than the stem.\n\n__Default value:__ `3`"
|
|
18154
|
+
},
|
|
18155
|
+
"minBufferSize": {
|
|
18156
|
+
"description": "Minimum size for WebGL buffers (number of data items). Allows for using `bufferSubData()` to update graphics.\n\nThis property is intended for internal use.",
|
|
18157
|
+
"type": "number"
|
|
18158
|
+
},
|
|
18159
|
+
"minSize": {
|
|
18160
|
+
"anyOf": [
|
|
18161
|
+
{
|
|
18162
|
+
"type": "number"
|
|
18163
|
+
},
|
|
18164
|
+
{
|
|
18165
|
+
"$ref": "#/definitions/ExprRef"
|
|
18166
|
+
}
|
|
18167
|
+
],
|
|
18168
|
+
"description": "Minimum resolved arrow stem thickness in pixels. Applies to numeric, band-relative, and encoded `size` values.\n\n__Default value:__ `1`"
|
|
18169
|
+
},
|
|
18170
|
+
"minStemLength": {
|
|
18171
|
+
"anyOf": [
|
|
18172
|
+
{
|
|
18173
|
+
"type": "number"
|
|
18174
|
+
},
|
|
18175
|
+
{
|
|
18176
|
+
"$ref": "#/definitions/ExprRef"
|
|
18177
|
+
}
|
|
18178
|
+
],
|
|
18179
|
+
"description": "Minimum visible length of the arrow stem in pixels. When a non-repeated arrow is too short for the configured shape and minimum stem length, the affected notch or head angle is made blunter toward 90 degrees. For `\"inside\"` placement, this applies to `\"triangle\"` heads and is measured from the start of the stem to where the stem meets the head notch edge. For `\"outside\"` placement, this applies when `startNotch` is `true` and is measured from the start notch to the head start. Has no effect when `stem` is `false`.\n\n__Default value:__ `0`"
|
|
18180
|
+
},
|
|
18181
|
+
"opacity": {
|
|
18182
|
+
"anyOf": [
|
|
18183
|
+
{
|
|
18184
|
+
"type": "number"
|
|
18185
|
+
},
|
|
18186
|
+
{
|
|
18187
|
+
"$ref": "#/definitions/ExprRef"
|
|
18188
|
+
}
|
|
18189
|
+
],
|
|
18190
|
+
"description": "Opacity of the mark. Affects `fillOpacity` or `strokeOpacity`, depending on the `filled` property."
|
|
18191
|
+
},
|
|
18192
|
+
"size": {
|
|
18193
|
+
"$ref": "#/definitions/ArrowSize",
|
|
18194
|
+
"description": "Arrow stem thickness in pixels, or as a fraction of the perpendicular band or view span for axis-aligned arrows.\n\nNumeric values are pixels. `{ \"band\": 0.8 }` resolves to 80% of the perpendicular band width, or 80% of the perpendicular view span when no band scale is available. Use `channel` to explicitly select the reference channel. Band-relative size is not supported for diagonal arrows.\n\n__Default value:__ `8`"
|
|
18195
|
+
},
|
|
18196
|
+
"startNotch": {
|
|
18197
|
+
"anyOf": [
|
|
18198
|
+
{
|
|
18199
|
+
"type": "boolean"
|
|
18200
|
+
},
|
|
18201
|
+
{
|
|
18202
|
+
"$ref": "#/definitions/ExprRef"
|
|
18203
|
+
}
|
|
18204
|
+
],
|
|
18205
|
+
"description": "Whether to draw a notch at the start of the arrow. The start notch uses the same slope as the arrowhead edge.\n\n__Default value:__ `false`"
|
|
18206
|
+
},
|
|
18207
|
+
"stem": {
|
|
18208
|
+
"anyOf": [
|
|
18209
|
+
{
|
|
18210
|
+
"type": "boolean"
|
|
18211
|
+
},
|
|
18212
|
+
{
|
|
18213
|
+
"$ref": "#/definitions/ExprRef"
|
|
18214
|
+
}
|
|
18215
|
+
],
|
|
18216
|
+
"description": "Whether to draw the arrow stem. When `false`, the resolved `size` still controls open-head thickness. `minStemLength` has no effect when the stem is hidden.\n\n__Default value:__ `true`"
|
|
18217
|
+
},
|
|
18218
|
+
"stroke": {
|
|
18219
|
+
"anyOf": [
|
|
18220
|
+
{
|
|
18221
|
+
"type": "string"
|
|
18222
|
+
},
|
|
18223
|
+
{
|
|
18224
|
+
"$ref": "#/definitions/ExprRef"
|
|
18225
|
+
}
|
|
18226
|
+
],
|
|
18227
|
+
"description": "The stroke color"
|
|
18228
|
+
},
|
|
18229
|
+
"strokeOpacity": {
|
|
18230
|
+
"anyOf": [
|
|
18231
|
+
{
|
|
18232
|
+
"type": "number"
|
|
18233
|
+
},
|
|
18234
|
+
{
|
|
18235
|
+
"$ref": "#/definitions/ExprRef"
|
|
18236
|
+
}
|
|
18237
|
+
],
|
|
18238
|
+
"description": "The stroke opacity. Value between `0` and `1`."
|
|
18239
|
+
},
|
|
18240
|
+
"strokeWidth": {
|
|
18241
|
+
"anyOf": [
|
|
18242
|
+
{
|
|
18243
|
+
"type": "number"
|
|
18244
|
+
},
|
|
18245
|
+
{
|
|
18246
|
+
"$ref": "#/definitions/ExprRef"
|
|
18247
|
+
}
|
|
18248
|
+
],
|
|
18249
|
+
"description": "The stroke width in pixels."
|
|
18250
|
+
},
|
|
18251
|
+
"style": {
|
|
18252
|
+
"anyOf": [
|
|
18253
|
+
{
|
|
18254
|
+
"type": "string"
|
|
18255
|
+
},
|
|
18256
|
+
{
|
|
18257
|
+
"items": {
|
|
18258
|
+
"type": "string"
|
|
18259
|
+
},
|
|
18260
|
+
"type": "array"
|
|
18261
|
+
}
|
|
18262
|
+
],
|
|
18263
|
+
"description": "Named style reference(s) resolved from `config.style`. If an array is provided, later styles override earlier ones."
|
|
18264
|
+
},
|
|
18265
|
+
"tooltip": {
|
|
18266
|
+
"$ref": "#/definitions/Tooltip",
|
|
18267
|
+
"description": "Tooltip handler. If `null`, no tooltip is shown. If string, specifies the [tooltip handler](https://genomespy.app/docs/api/embed-options/#custom-tooltip-handlers) to use."
|
|
18268
|
+
},
|
|
18269
|
+
"x": {
|
|
18270
|
+
"anyOf": [
|
|
18271
|
+
{
|
|
18272
|
+
"type": "number"
|
|
18273
|
+
},
|
|
18274
|
+
{
|
|
18275
|
+
"$ref": "#/definitions/ExprRef"
|
|
18276
|
+
}
|
|
18277
|
+
],
|
|
18278
|
+
"description": "Position on the x axis."
|
|
18279
|
+
},
|
|
18280
|
+
"x2": {
|
|
18281
|
+
"anyOf": [
|
|
18282
|
+
{
|
|
18283
|
+
"type": "number"
|
|
18284
|
+
},
|
|
18285
|
+
{
|
|
18286
|
+
"$ref": "#/definitions/ExprRef"
|
|
18287
|
+
}
|
|
18288
|
+
],
|
|
18289
|
+
"description": "The secondary position on the x axis."
|
|
18290
|
+
},
|
|
18291
|
+
"xOffset": {
|
|
18292
|
+
"description": "Offsets of the `x` and `x2` coordinates in pixels. The offset is applied after the viewport scaling and translation.\n\n**Default value:** `0`",
|
|
18293
|
+
"type": "number"
|
|
18294
|
+
},
|
|
18295
|
+
"y": {
|
|
18296
|
+
"anyOf": [
|
|
18297
|
+
{
|
|
18298
|
+
"type": "number"
|
|
18299
|
+
},
|
|
18300
|
+
{
|
|
18301
|
+
"$ref": "#/definitions/ExprRef"
|
|
18302
|
+
}
|
|
18303
|
+
],
|
|
18304
|
+
"description": "Position on the y axis."
|
|
18305
|
+
},
|
|
18306
|
+
"y2": {
|
|
18307
|
+
"anyOf": [
|
|
18308
|
+
{
|
|
18309
|
+
"type": "number"
|
|
18310
|
+
},
|
|
18311
|
+
{
|
|
18312
|
+
"$ref": "#/definitions/ExprRef"
|
|
18313
|
+
}
|
|
18314
|
+
],
|
|
18315
|
+
"description": "The secondary position on the y axis."
|
|
18316
|
+
},
|
|
18317
|
+
"yOffset": {
|
|
18318
|
+
"description": "Offsets of the `y` and `y2` coordinates in pixels. The offset is applied after the viewport scaling and translation.\n\n**Default value:** `0`",
|
|
18319
|
+
"type": "number"
|
|
18320
|
+
}
|
|
18321
|
+
},
|
|
18322
|
+
"type": "object"
|
|
18323
|
+
},
|
|
18324
|
+
"ArrowDirection": {
|
|
18325
|
+
"enum": [
|
|
18326
|
+
"forward",
|
|
18327
|
+
"reverse"
|
|
18328
|
+
],
|
|
18329
|
+
"type": "string"
|
|
18330
|
+
},
|
|
18331
|
+
"ArrowProps": {
|
|
18332
|
+
"additionalProperties": false,
|
|
18333
|
+
"properties": {
|
|
18334
|
+
"buildIndex": {
|
|
18335
|
+
"description": "Whether the x channel should build an index for efficient subset rendering. If omitted, GenomeSpy enables indexing automatically for positional x encodings.",
|
|
18336
|
+
"type": "boolean"
|
|
18337
|
+
},
|
|
18338
|
+
"clip": {
|
|
18339
|
+
"anyOf": [
|
|
18340
|
+
{
|
|
18341
|
+
"type": "boolean"
|
|
18342
|
+
},
|
|
18343
|
+
{
|
|
18344
|
+
"const": "x",
|
|
18345
|
+
"type": "string"
|
|
18346
|
+
},
|
|
18347
|
+
{
|
|
18348
|
+
"const": "y",
|
|
18349
|
+
"type": "string"
|
|
18350
|
+
},
|
|
18351
|
+
{
|
|
18352
|
+
"const": "never",
|
|
18353
|
+
"type": "string"
|
|
18354
|
+
}
|
|
18355
|
+
],
|
|
18356
|
+
"description": "Controls whether the mark is clipped to the UnitView's rectangle. The values `\"x\"` and `\"y\"` clip only in the corresponding screen-space direction. Inherited clipping from parent containers still applies unless `\"never\"` is used.\n\n__Default value:__ the direction of zoomable positional scales"
|
|
18357
|
+
},
|
|
18358
|
+
"color": {
|
|
18359
|
+
"anyOf": [
|
|
18360
|
+
{
|
|
18361
|
+
"type": "string"
|
|
18362
|
+
},
|
|
18363
|
+
{
|
|
18364
|
+
"$ref": "#/definitions/ExprRef"
|
|
18365
|
+
}
|
|
18366
|
+
],
|
|
18367
|
+
"description": "Color of the mark. Affects either `fill` or `stroke`, depending on the `filled` property."
|
|
18368
|
+
},
|
|
18369
|
+
"cullByVisibleRange": {
|
|
18370
|
+
"anyOf": [
|
|
18371
|
+
{
|
|
18372
|
+
"type": "boolean"
|
|
18373
|
+
},
|
|
18374
|
+
{
|
|
18375
|
+
"const": "x",
|
|
18376
|
+
"type": "string"
|
|
18377
|
+
},
|
|
18378
|
+
{
|
|
18379
|
+
"const": "y",
|
|
18380
|
+
"type": "string"
|
|
18381
|
+
}
|
|
18382
|
+
],
|
|
18383
|
+
"description": "Hide point-like mark instances whose anchor falls outside the inherited visible range in the given screen-space direction."
|
|
18384
|
+
},
|
|
18385
|
+
"cursor": {
|
|
18386
|
+
"anyOf": [
|
|
18387
|
+
{
|
|
18388
|
+
"type": "string"
|
|
18389
|
+
},
|
|
18390
|
+
{
|
|
18391
|
+
"$ref": "#/definitions/ExprRef"
|
|
18392
|
+
}
|
|
18393
|
+
],
|
|
18394
|
+
"description": "Mouse cursor shown while the pointer is over the mark. Mark cursor takes precedence over enclosing view cursors.\n\n__Default value:__ browser default"
|
|
18395
|
+
},
|
|
18396
|
+
"direction": {
|
|
18397
|
+
"anyOf": [
|
|
18398
|
+
{
|
|
18399
|
+
"const": "forward",
|
|
18400
|
+
"type": "string"
|
|
18401
|
+
},
|
|
18402
|
+
{
|
|
18403
|
+
"const": "reverse",
|
|
18404
|
+
"type": "string"
|
|
18405
|
+
},
|
|
18406
|
+
{
|
|
18407
|
+
"$ref": "#/definitions/ExprRef"
|
|
18408
|
+
}
|
|
18409
|
+
],
|
|
18410
|
+
"description": "Direction of the arrowhead. `\"forward\"` places the arrowhead at the secondary endpoint (`x2`, `y2`). `\"reverse\"` places it at the primary endpoint (`x`, `y`). For data-driven direction, use the `direction` encoding channel.\n\n__Default value:__ `\"forward\"`"
|
|
18411
|
+
},
|
|
18412
|
+
"fill": {
|
|
18413
|
+
"anyOf": [
|
|
18414
|
+
{
|
|
18415
|
+
"type": "string"
|
|
18416
|
+
},
|
|
18417
|
+
{
|
|
18418
|
+
"$ref": "#/definitions/ExprRef"
|
|
18419
|
+
}
|
|
18420
|
+
],
|
|
18421
|
+
"description": "The fill color."
|
|
18422
|
+
},
|
|
18423
|
+
"fillOpacity": {
|
|
18424
|
+
"anyOf": [
|
|
18425
|
+
{
|
|
18426
|
+
"type": "number"
|
|
18427
|
+
},
|
|
18428
|
+
{
|
|
18429
|
+
"$ref": "#/definitions/ExprRef"
|
|
18430
|
+
}
|
|
18431
|
+
],
|
|
18432
|
+
"description": "The fill opacity. Value between `0` and `1`."
|
|
18433
|
+
},
|
|
18434
|
+
"filled": {
|
|
18435
|
+
"description": "Whether the `color` represents the `fill` color (`true`) or the `stroke` color (`false`).",
|
|
18436
|
+
"type": "boolean"
|
|
18437
|
+
},
|
|
18438
|
+
"headAngle": {
|
|
18439
|
+
"anyOf": [
|
|
18440
|
+
{
|
|
18441
|
+
"type": "number"
|
|
18442
|
+
},
|
|
18443
|
+
{
|
|
18444
|
+
"$ref": "#/definitions/ExprRef"
|
|
18445
|
+
}
|
|
18446
|
+
],
|
|
18447
|
+
"description": "Angle in degrees between the arrow axis and an outer edge of the arrowhead. Smaller values produce longer, narrower heads. Larger values produce shorter, blunter heads. Values are clamped to `[1, 90]`.\n\n__Default value:__ `45`"
|
|
18448
|
+
},
|
|
18449
|
+
"headNotchAngle": {
|
|
18450
|
+
"anyOf": [
|
|
18451
|
+
{
|
|
18452
|
+
"type": "number"
|
|
18453
|
+
},
|
|
18454
|
+
{
|
|
18455
|
+
"$ref": "#/definitions/ExprRef"
|
|
18456
|
+
}
|
|
18457
|
+
],
|
|
18458
|
+
"description": "Angle in degrees between the arrow axis and the arrowhead notch edge. `90` places the notch point at the tip, producing a triangular head when `headAngle` is less than `90`. Applies to `\"triangle\"` heads. `\"open\"` heads use `headAngle` for the notch edge as well. Values are clamped to `[1, 90]`.\n\n__Default value:__ `90`"
|
|
18459
|
+
},
|
|
18460
|
+
"headPlacement": {
|
|
18461
|
+
"anyOf": [
|
|
18462
|
+
{
|
|
18463
|
+
"const": "inside",
|
|
18464
|
+
"type": "string"
|
|
18465
|
+
},
|
|
18466
|
+
{
|
|
18467
|
+
"const": "outside",
|
|
18468
|
+
"type": "string"
|
|
18469
|
+
},
|
|
18470
|
+
{
|
|
18471
|
+
"$ref": "#/definitions/ExprRef"
|
|
18472
|
+
}
|
|
18473
|
+
],
|
|
18474
|
+
"description": "Placement of the arrowhead relative to the encoded segment. `\"inside\"` keeps the whole arrowhead within the encoded segment. `\"outside\"` places the arrowhead beyond the encoded segment so that the head starts at the segment endpoint.\n\n__Default value:__ `\"inside\"`"
|
|
18475
|
+
},
|
|
18476
|
+
"headShape": {
|
|
18477
|
+
"anyOf": [
|
|
18478
|
+
{
|
|
18479
|
+
"const": "triangle",
|
|
18480
|
+
"type": "string"
|
|
18481
|
+
},
|
|
18482
|
+
{
|
|
18483
|
+
"const": "open",
|
|
18484
|
+
"type": "string"
|
|
18485
|
+
},
|
|
18486
|
+
{
|
|
18487
|
+
"$ref": "#/definitions/ExprRef"
|
|
18488
|
+
}
|
|
18489
|
+
],
|
|
18490
|
+
"description": "Shape of the arrowhead. `\"triangle\"` draws a filled head. `\"open\"` draws an open head whose thickness matches the resolved `size`, even when `stem` is `false`.\n\n__Default value:__ `\"triangle\"`"
|
|
18491
|
+
},
|
|
18492
|
+
"headSpacing": {
|
|
18493
|
+
"anyOf": [
|
|
18494
|
+
{
|
|
18495
|
+
"type": "number"
|
|
18496
|
+
},
|
|
18497
|
+
{
|
|
18498
|
+
"type": "null"
|
|
18499
|
+
},
|
|
18500
|
+
{
|
|
18501
|
+
"$ref": "#/definitions/ExprRef"
|
|
18502
|
+
}
|
|
18503
|
+
],
|
|
18504
|
+
"description": "Spacing between repeated arrowheads as a multiplier of resolved `size`. The effective spacing is at least the rendered arrowhead footprint, including stroke. If `null`, arrowheads are not repeated.\n\n__Default value:__ `null`"
|
|
18505
|
+
},
|
|
18506
|
+
"headWidth": {
|
|
18507
|
+
"anyOf": [
|
|
18508
|
+
{
|
|
18509
|
+
"type": "number"
|
|
18510
|
+
},
|
|
18511
|
+
{
|
|
18512
|
+
"$ref": "#/definitions/ExprRef"
|
|
18513
|
+
}
|
|
18514
|
+
],
|
|
18515
|
+
"description": "Width of the arrowhead as a multiplier of resolved `size`. Values above `1` make the arrowhead wider than the stem.\n\n__Default value:__ `3`"
|
|
18516
|
+
},
|
|
18517
|
+
"minBufferSize": {
|
|
18518
|
+
"description": "Minimum size for WebGL buffers (number of data items). Allows for using `bufferSubData()` to update graphics.\n\nThis property is intended for internal use.",
|
|
18519
|
+
"type": "number"
|
|
18520
|
+
},
|
|
18521
|
+
"minSize": {
|
|
18522
|
+
"anyOf": [
|
|
18523
|
+
{
|
|
18524
|
+
"type": "number"
|
|
18525
|
+
},
|
|
18526
|
+
{
|
|
18527
|
+
"$ref": "#/definitions/ExprRef"
|
|
18528
|
+
}
|
|
18529
|
+
],
|
|
18530
|
+
"description": "Minimum resolved arrow stem thickness in pixels. Applies to numeric, band-relative, and encoded `size` values.\n\n__Default value:__ `1`"
|
|
18531
|
+
},
|
|
18532
|
+
"minStemLength": {
|
|
18533
|
+
"anyOf": [
|
|
18534
|
+
{
|
|
18535
|
+
"type": "number"
|
|
18536
|
+
},
|
|
18537
|
+
{
|
|
18538
|
+
"$ref": "#/definitions/ExprRef"
|
|
18539
|
+
}
|
|
18540
|
+
],
|
|
18541
|
+
"description": "Minimum visible length of the arrow stem in pixels. When a non-repeated arrow is too short for the configured shape and minimum stem length, the affected notch or head angle is made blunter toward 90 degrees. For `\"inside\"` placement, this applies to `\"triangle\"` heads and is measured from the start of the stem to where the stem meets the head notch edge. For `\"outside\"` placement, this applies when `startNotch` is `true` and is measured from the start notch to the head start. Has no effect when `stem` is `false`.\n\n__Default value:__ `0`"
|
|
18542
|
+
},
|
|
18543
|
+
"opacity": {
|
|
18544
|
+
"anyOf": [
|
|
18545
|
+
{
|
|
18546
|
+
"type": "number"
|
|
18547
|
+
},
|
|
18548
|
+
{
|
|
18549
|
+
"$ref": "#/definitions/ExprRef"
|
|
18550
|
+
}
|
|
18551
|
+
],
|
|
18552
|
+
"description": "Opacity of the mark. Affects `fillOpacity` or `strokeOpacity`, depending on the `filled` property."
|
|
18553
|
+
},
|
|
18554
|
+
"size": {
|
|
18555
|
+
"$ref": "#/definitions/ArrowSize",
|
|
18556
|
+
"description": "Arrow stem thickness in pixels, or as a fraction of the perpendicular band or view span for axis-aligned arrows.\n\nNumeric values are pixels. `{ \"band\": 0.8 }` resolves to 80% of the perpendicular band width, or 80% of the perpendicular view span when no band scale is available. Use `channel` to explicitly select the reference channel. Band-relative size is not supported for diagonal arrows.\n\n__Default value:__ `8`"
|
|
18557
|
+
},
|
|
18558
|
+
"startNotch": {
|
|
18559
|
+
"anyOf": [
|
|
18560
|
+
{
|
|
18561
|
+
"type": "boolean"
|
|
18562
|
+
},
|
|
18563
|
+
{
|
|
18564
|
+
"$ref": "#/definitions/ExprRef"
|
|
18565
|
+
}
|
|
18566
|
+
],
|
|
18567
|
+
"description": "Whether to draw a notch at the start of the arrow. The start notch uses the same slope as the arrowhead edge.\n\n__Default value:__ `false`"
|
|
18568
|
+
},
|
|
18569
|
+
"stem": {
|
|
18570
|
+
"anyOf": [
|
|
18571
|
+
{
|
|
18572
|
+
"type": "boolean"
|
|
18573
|
+
},
|
|
18574
|
+
{
|
|
18575
|
+
"$ref": "#/definitions/ExprRef"
|
|
18576
|
+
}
|
|
18577
|
+
],
|
|
18578
|
+
"description": "Whether to draw the arrow stem. When `false`, the resolved `size` still controls open-head thickness. `minStemLength` has no effect when the stem is hidden.\n\n__Default value:__ `true`"
|
|
18579
|
+
},
|
|
18580
|
+
"stroke": {
|
|
18581
|
+
"anyOf": [
|
|
18582
|
+
{
|
|
18583
|
+
"type": "string"
|
|
18584
|
+
},
|
|
18585
|
+
{
|
|
18586
|
+
"$ref": "#/definitions/ExprRef"
|
|
18587
|
+
}
|
|
18588
|
+
],
|
|
18589
|
+
"description": "The stroke color"
|
|
18590
|
+
},
|
|
18591
|
+
"strokeOpacity": {
|
|
18592
|
+
"anyOf": [
|
|
18593
|
+
{
|
|
18594
|
+
"type": "number"
|
|
18595
|
+
},
|
|
18596
|
+
{
|
|
18597
|
+
"$ref": "#/definitions/ExprRef"
|
|
18598
|
+
}
|
|
18599
|
+
],
|
|
18600
|
+
"description": "The stroke opacity. Value between `0` and `1`."
|
|
18601
|
+
},
|
|
18602
|
+
"strokeWidth": {
|
|
18603
|
+
"anyOf": [
|
|
18604
|
+
{
|
|
18605
|
+
"type": "number"
|
|
18606
|
+
},
|
|
18607
|
+
{
|
|
18608
|
+
"$ref": "#/definitions/ExprRef"
|
|
18609
|
+
}
|
|
18610
|
+
],
|
|
18611
|
+
"description": "The stroke width in pixels."
|
|
18612
|
+
},
|
|
18613
|
+
"style": {
|
|
18614
|
+
"anyOf": [
|
|
18615
|
+
{
|
|
18616
|
+
"type": "string"
|
|
18617
|
+
},
|
|
18618
|
+
{
|
|
18619
|
+
"items": {
|
|
18620
|
+
"type": "string"
|
|
18621
|
+
},
|
|
18622
|
+
"type": "array"
|
|
18623
|
+
}
|
|
18624
|
+
],
|
|
18625
|
+
"description": "Named style reference(s) resolved from `config.style`. If an array is provided, later styles override earlier ones."
|
|
18626
|
+
},
|
|
18627
|
+
"tooltip": {
|
|
18628
|
+
"$ref": "#/definitions/Tooltip",
|
|
18629
|
+
"description": "Tooltip handler. If `null`, no tooltip is shown. If string, specifies the [tooltip handler](https://genomespy.app/docs/api/embed-options/#custom-tooltip-handlers) to use."
|
|
18630
|
+
},
|
|
18631
|
+
"type": {
|
|
18632
|
+
"const": "arrow",
|
|
18633
|
+
"type": "string"
|
|
18634
|
+
},
|
|
18635
|
+
"x": {
|
|
18636
|
+
"anyOf": [
|
|
18637
|
+
{
|
|
18638
|
+
"type": "number"
|
|
18639
|
+
},
|
|
18640
|
+
{
|
|
18641
|
+
"$ref": "#/definitions/ExprRef"
|
|
18642
|
+
}
|
|
18643
|
+
],
|
|
18644
|
+
"description": "Position on the x axis."
|
|
18645
|
+
},
|
|
18646
|
+
"x2": {
|
|
18647
|
+
"anyOf": [
|
|
18648
|
+
{
|
|
18649
|
+
"type": "number"
|
|
18650
|
+
},
|
|
18651
|
+
{
|
|
18652
|
+
"$ref": "#/definitions/ExprRef"
|
|
18653
|
+
}
|
|
18654
|
+
],
|
|
18655
|
+
"description": "The secondary position on the x axis."
|
|
18656
|
+
},
|
|
18657
|
+
"xOffset": {
|
|
18658
|
+
"description": "Offsets of the `x` and `x2` coordinates in pixels. The offset is applied after the viewport scaling and translation.\n\n**Default value:** `0`",
|
|
18659
|
+
"type": "number"
|
|
18660
|
+
},
|
|
18661
|
+
"y": {
|
|
18662
|
+
"anyOf": [
|
|
18663
|
+
{
|
|
18664
|
+
"type": "number"
|
|
18665
|
+
},
|
|
18666
|
+
{
|
|
18667
|
+
"$ref": "#/definitions/ExprRef"
|
|
18668
|
+
}
|
|
18669
|
+
],
|
|
18670
|
+
"description": "Position on the y axis."
|
|
18671
|
+
},
|
|
18672
|
+
"y2": {
|
|
18673
|
+
"anyOf": [
|
|
18674
|
+
{
|
|
18675
|
+
"type": "number"
|
|
18676
|
+
},
|
|
18677
|
+
{
|
|
18678
|
+
"$ref": "#/definitions/ExprRef"
|
|
18679
|
+
}
|
|
18680
|
+
],
|
|
18681
|
+
"description": "The secondary position on the y axis."
|
|
18682
|
+
},
|
|
18683
|
+
"yOffset": {
|
|
18684
|
+
"description": "Offsets of the `y` and `y2` coordinates in pixels. The offset is applied after the viewport scaling and translation.\n\n**Default value:** `0`",
|
|
18685
|
+
"type": "number"
|
|
18686
|
+
}
|
|
18687
|
+
},
|
|
18688
|
+
"required": [
|
|
18689
|
+
"type"
|
|
18690
|
+
],
|
|
18691
|
+
"type": "object"
|
|
18692
|
+
},
|
|
18693
|
+
"ArrowRelativeSize": {
|
|
18694
|
+
"additionalProperties": false,
|
|
18695
|
+
"properties": {
|
|
18696
|
+
"band": {
|
|
18697
|
+
"description": "Fraction of the perpendicular band or view span.",
|
|
18698
|
+
"type": "number"
|
|
18699
|
+
},
|
|
18700
|
+
"channel": {
|
|
18701
|
+
"description": "Channel whose band or view span is used. If omitted or `\"auto\"`, GenomeSpy infers the perpendicular channel from the axis-aligned arrow endpoints. Band-relative size is not supported for diagonal arrows.",
|
|
18702
|
+
"enum": [
|
|
18703
|
+
"x",
|
|
18704
|
+
"y",
|
|
18705
|
+
"auto"
|
|
18706
|
+
],
|
|
18707
|
+
"type": "string"
|
|
18708
|
+
}
|
|
18709
|
+
},
|
|
18710
|
+
"required": [
|
|
18711
|
+
"band"
|
|
18712
|
+
],
|
|
18713
|
+
"type": "object"
|
|
18714
|
+
},
|
|
18715
|
+
"ArrowSize": {
|
|
18716
|
+
"anyOf": [
|
|
18717
|
+
{
|
|
18718
|
+
"type": "number"
|
|
18719
|
+
},
|
|
18720
|
+
{
|
|
18721
|
+
"$ref": "#/definitions/ArrowRelativeSize"
|
|
18722
|
+
},
|
|
18723
|
+
{
|
|
18724
|
+
"$ref": "#/definitions/ExprRef"
|
|
18725
|
+
}
|
|
18726
|
+
]
|
|
18727
|
+
},
|
|
17446
18728
|
"Axis": {
|
|
17447
18729
|
"additionalProperties": false,
|
|
17448
18730
|
"properties": {
|
|
@@ -18193,8 +19475,15 @@
|
|
|
18193
19475
|
"description": "URL of the BAM file. URL templates must resolve to one URL."
|
|
18194
19476
|
},
|
|
18195
19477
|
"windowSize": {
|
|
18196
|
-
"
|
|
18197
|
-
|
|
19478
|
+
"anyOf": [
|
|
19479
|
+
{
|
|
19480
|
+
"type": "number"
|
|
19481
|
+
},
|
|
19482
|
+
{
|
|
19483
|
+
"$ref": "#/definitions/ExprRef"
|
|
19484
|
+
}
|
|
19485
|
+
],
|
|
19486
|
+
"description": "Size of each chunk when fetching the BAM file. Data is only fetched when the length of the visible domain smaller than the window size.\n\n__Default value:__ `10000`"
|
|
18198
19487
|
}
|
|
18199
19488
|
},
|
|
18200
19489
|
"required": [
|
|
@@ -18729,6 +20018,10 @@
|
|
|
18729
20018
|
"const": "shape",
|
|
18730
20019
|
"type": "string"
|
|
18731
20020
|
},
|
|
20021
|
+
{
|
|
20022
|
+
"const": "direction",
|
|
20023
|
+
"type": "string"
|
|
20024
|
+
},
|
|
18732
20025
|
{
|
|
18733
20026
|
"const": "angle",
|
|
18734
20027
|
"type": "string"
|
|
@@ -19400,6 +20693,113 @@
|
|
|
19400
20693
|
],
|
|
19401
20694
|
"type": "object"
|
|
19402
20695
|
},
|
|
20696
|
+
"CoordinateLookupInput": {
|
|
20697
|
+
"additionalProperties": false,
|
|
20698
|
+
"properties": {
|
|
20699
|
+
"data": {
|
|
20700
|
+
"$ref": "#/definitions/LazyData",
|
|
20701
|
+
"description": "The lazy side data source."
|
|
20702
|
+
},
|
|
20703
|
+
"transform": {
|
|
20704
|
+
"description": "Transforms applied to the side data before lookup.",
|
|
20705
|
+
"items": {
|
|
20706
|
+
"$ref": "#/definitions/TransformParams"
|
|
20707
|
+
},
|
|
20708
|
+
"type": "array"
|
|
20709
|
+
}
|
|
20710
|
+
},
|
|
20711
|
+
"required": [
|
|
20712
|
+
"data"
|
|
20713
|
+
],
|
|
20714
|
+
"type": "object"
|
|
20715
|
+
},
|
|
20716
|
+
"CoordinateLookupParams": {
|
|
20717
|
+
"additionalProperties": false,
|
|
20718
|
+
"properties": {
|
|
20719
|
+
"as": {
|
|
20720
|
+
"description": "Output field names. Defaults to `values`. Requires an explicit `values` array.",
|
|
20721
|
+
"items": {
|
|
20722
|
+
"type": "string"
|
|
20723
|
+
},
|
|
20724
|
+
"type": "array"
|
|
20725
|
+
},
|
|
20726
|
+
"channel": {
|
|
20727
|
+
"$ref": "#/definitions/PrimaryPositionalChannel",
|
|
20728
|
+
"description": "The positional channel shared with the lazy side input.\n\n__Default value:__ `\"x\"`"
|
|
20729
|
+
},
|
|
20730
|
+
"default": {
|
|
20731
|
+
"description": "Value written when no side-input row matches.\n\n__Default value:__ `null`"
|
|
20732
|
+
},
|
|
20733
|
+
"description": {
|
|
20734
|
+
"description": "A description of the transform step. Can be used for documentation and agent context.",
|
|
20735
|
+
"type": "string"
|
|
20736
|
+
},
|
|
20737
|
+
"fields": {
|
|
20738
|
+
"anyOf": [
|
|
20739
|
+
{
|
|
20740
|
+
"$ref": "#/definitions/Field"
|
|
20741
|
+
},
|
|
20742
|
+
{
|
|
20743
|
+
"items": {
|
|
20744
|
+
"$ref": "#/definitions/Field"
|
|
20745
|
+
},
|
|
20746
|
+
"maxItems": 2,
|
|
20747
|
+
"minItems": 2,
|
|
20748
|
+
"type": "array"
|
|
20749
|
+
},
|
|
20750
|
+
{
|
|
20751
|
+
"type": "null"
|
|
20752
|
+
}
|
|
20753
|
+
],
|
|
20754
|
+
"description": "Coordinate field or `[chrom, pos]` fields in the primary data. Defaults to `key`."
|
|
20755
|
+
},
|
|
20756
|
+
"from": {
|
|
20757
|
+
"$ref": "#/definitions/CoordinateLookupInput",
|
|
20758
|
+
"description": "The lazy side input and its optional transforms. Rows outside the loaded side-input domain are not passed through."
|
|
20759
|
+
},
|
|
20760
|
+
"key": {
|
|
20761
|
+
"anyOf": [
|
|
20762
|
+
{
|
|
20763
|
+
"$ref": "#/definitions/Field"
|
|
20764
|
+
},
|
|
20765
|
+
{
|
|
20766
|
+
"items": {
|
|
20767
|
+
"$ref": "#/definitions/Field"
|
|
20768
|
+
},
|
|
20769
|
+
"maxItems": 2,
|
|
20770
|
+
"minItems": 2,
|
|
20771
|
+
"type": "array"
|
|
20772
|
+
}
|
|
20773
|
+
],
|
|
20774
|
+
"description": "Coordinate field or `[chrom, pos]` fields in the lazy side input. The same fields in the primary data determine both the exact match and whether a row is within the loaded side-input interval."
|
|
20775
|
+
},
|
|
20776
|
+
"type": {
|
|
20777
|
+
"const": "coordinateLookup",
|
|
20778
|
+
"description": "The type of the transform to be applied",
|
|
20779
|
+
"type": "string"
|
|
20780
|
+
},
|
|
20781
|
+
"values": {
|
|
20782
|
+
"anyOf": [
|
|
20783
|
+
{
|
|
20784
|
+
"items": {
|
|
20785
|
+
"$ref": "#/definitions/Field"
|
|
20786
|
+
},
|
|
20787
|
+
"type": "array"
|
|
20788
|
+
},
|
|
20789
|
+
{
|
|
20790
|
+
"type": "null"
|
|
20791
|
+
}
|
|
20792
|
+
],
|
|
20793
|
+
"description": "Fields to copy from a matching side-input row. Defaults to all fields except `key`."
|
|
20794
|
+
}
|
|
20795
|
+
},
|
|
20796
|
+
"required": [
|
|
20797
|
+
"from",
|
|
20798
|
+
"key",
|
|
20799
|
+
"type"
|
|
20800
|
+
],
|
|
20801
|
+
"type": "object"
|
|
20802
|
+
},
|
|
19403
20803
|
"CoverageParams": {
|
|
19404
20804
|
"additionalProperties": false,
|
|
19405
20805
|
"properties": {
|
|
@@ -19540,6 +20940,9 @@
|
|
|
19540
20940
|
{
|
|
19541
20941
|
"$ref": "#/definitions/BedpeDataFormat"
|
|
19542
20942
|
},
|
|
20943
|
+
{
|
|
20944
|
+
"$ref": "#/definitions/VcfDataFormat"
|
|
20945
|
+
},
|
|
19543
20946
|
{
|
|
19544
20947
|
"$ref": "#/definitions/OtherDataFormat"
|
|
19545
20948
|
}
|
|
@@ -19564,6 +20967,122 @@
|
|
|
19564
20967
|
}
|
|
19565
20968
|
]
|
|
19566
20969
|
},
|
|
20970
|
+
"DirectionDef": {
|
|
20971
|
+
"anyOf": [
|
|
20972
|
+
{
|
|
20973
|
+
"additionalProperties": false,
|
|
20974
|
+
"properties": {
|
|
20975
|
+
"description": {
|
|
20976
|
+
"description": "A description of the encoded field. Can be used for documentation and to explain the meaning of the channel mapping.",
|
|
20977
|
+
"type": "string"
|
|
20978
|
+
},
|
|
20979
|
+
"domainInert": {
|
|
20980
|
+
"description": "Whether the field or evaluated expr should be excluded from the scale's domain. Prefer the view-level `domainInert` when an entire subtree should be excluded.\n\n**Default value:** `false`",
|
|
20981
|
+
"type": "boolean"
|
|
20982
|
+
},
|
|
20983
|
+
"field": {
|
|
20984
|
+
"description": "__Required.__ A string defining the name of the field from which to pull a data value or an object defining iterated values from the [`repeat`](https://vega.github.io/vega-lite/docs/repeat.html) operator.\n\n__See also:__ [`field`](https://vega.github.io/vega-lite/docs/field.html) documentation.\n\n__Notes:__ 1) Dots (`.`) and brackets (`[` and `]`) can be used to access nested objects (e.g., `\"field\": \"foo.bar\"` and `\"field\": \"foo['bar']\"`). If field names contain dots or brackets but are not nested, you can use `\\\\` to escape dots and brackets (e.g., `\"a\\\\.b\"` and `\"a\\\\[0\\\\]\"`). See more details about escaping in the [field documentation](https://vega.github.io/vega-lite/docs/field.html). 2) `field` is not required if `aggregate` is `count`.",
|
|
20985
|
+
"type": "string"
|
|
20986
|
+
},
|
|
20987
|
+
"format": {
|
|
20988
|
+
"description": "When used with the default `\"number\"` format type, the text formatting pattern for labels of guides (axes, legends, headers) and text marks.\n\n- If the format type is `\"number\"` (e.g., for quantitative fields), this is D3's [number format pattern](https://github.com/d3/d3-format#locale_format).\n\nSee the [format documentation](https://vega.github.io/vega-lite/docs/format.html) for more examples.",
|
|
20989
|
+
"type": "string"
|
|
20990
|
+
},
|
|
20991
|
+
"resolutionChannel": {
|
|
20992
|
+
"$ref": "#/definitions/ChannelWithScale",
|
|
20993
|
+
"description": "An alternative channel for scale resolution.\n\nThis is mainly for internal use and allows using `color` channel to resolve `fill` and `stroke` channels under certain circumstances."
|
|
20994
|
+
},
|
|
20995
|
+
"scale": {
|
|
20996
|
+
"anyOf": [
|
|
20997
|
+
{
|
|
20998
|
+
"$ref": "#/definitions/Scale"
|
|
20999
|
+
},
|
|
21000
|
+
{
|
|
21001
|
+
"type": "null"
|
|
21002
|
+
}
|
|
21003
|
+
],
|
|
21004
|
+
"description": "An object defining properties of the channel's scale, which is the function that transforms values in the data domain (numbers, dates, strings, etc) to visual values (pixels, colors, sizes) of the encoding channels.\n\nIf `null`, the scale will be [disabled and the data value will be directly encoded](https://vega.github.io/vega-lite/docs/scale.html#disable).\n\n__Default value:__ If undefined, default [scale properties](https://vega.github.io/vega-lite/docs/scale.html) are applied.\n\n__See also:__ [`scale`](https://vega.github.io/vega-lite/docs/scale.html) documentation."
|
|
21005
|
+
},
|
|
21006
|
+
"title": {
|
|
21007
|
+
"description": "A title for the field. If `null`, the title will be removed.",
|
|
21008
|
+
"type": [
|
|
21009
|
+
"string",
|
|
21010
|
+
"null"
|
|
21011
|
+
]
|
|
21012
|
+
},
|
|
21013
|
+
"type": {
|
|
21014
|
+
"$ref": "#/definitions/TypeForShape"
|
|
21015
|
+
}
|
|
21016
|
+
},
|
|
21017
|
+
"required": [
|
|
21018
|
+
"type"
|
|
21019
|
+
],
|
|
21020
|
+
"type": "object"
|
|
21021
|
+
},
|
|
21022
|
+
{
|
|
21023
|
+
"additionalProperties": false,
|
|
21024
|
+
"properties": {
|
|
21025
|
+
"band": {
|
|
21026
|
+
"description": "Relative position on band scale. For example, the marks will be positioned at the beginning of the band if set to `0`, and at the middle of the band if set to `0.5`.",
|
|
21027
|
+
"maximum": 1,
|
|
21028
|
+
"minimum": 0,
|
|
21029
|
+
"type": "number"
|
|
21030
|
+
},
|
|
21031
|
+
"datum": {
|
|
21032
|
+
"anyOf": [
|
|
21033
|
+
{
|
|
21034
|
+
"$ref": "#/definitions/Scalar"
|
|
21035
|
+
},
|
|
21036
|
+
{
|
|
21037
|
+
"$ref": "#/definitions/ExprRef"
|
|
21038
|
+
}
|
|
21039
|
+
],
|
|
21040
|
+
"description": "A constant value in data domain."
|
|
21041
|
+
},
|
|
21042
|
+
"description": {
|
|
21043
|
+
"description": "A description of the encoded datum. Can be used for documentation and to explain the meaning of the channel mapping.",
|
|
21044
|
+
"type": "string"
|
|
21045
|
+
},
|
|
21046
|
+
"domainInert": {
|
|
21047
|
+
"description": "Whether the field or evaluated expr should be excluded from the scale's domain. Prefer the view-level `domainInert` when an entire subtree should be excluded.\n\n**Default value:** `false`",
|
|
21048
|
+
"type": "boolean"
|
|
21049
|
+
},
|
|
21050
|
+
"resolutionChannel": {
|
|
21051
|
+
"$ref": "#/definitions/ChannelWithScale",
|
|
21052
|
+
"description": "An alternative channel for scale resolution.\n\nThis is mainly for internal use and allows using `color` channel to resolve `fill` and `stroke` channels under certain circumstances."
|
|
21053
|
+
},
|
|
21054
|
+
"scale": {
|
|
21055
|
+
"anyOf": [
|
|
21056
|
+
{
|
|
21057
|
+
"$ref": "#/definitions/Scale"
|
|
21058
|
+
},
|
|
21059
|
+
{
|
|
21060
|
+
"type": "null"
|
|
21061
|
+
}
|
|
21062
|
+
],
|
|
21063
|
+
"description": "An object defining properties of the channel's scale, which is the function that transforms values in the data domain (numbers, dates, strings, etc) to visual values (pixels, colors, sizes) of the encoding channels.\n\nIf `null`, the scale will be [disabled and the data value will be directly encoded](https://vega.github.io/vega-lite/docs/scale.html#disable).\n\n__Default value:__ If undefined, default [scale properties](https://vega.github.io/vega-lite/docs/scale.html) are applied.\n\n__See also:__ [`scale`](https://vega.github.io/vega-lite/docs/scale.html) documentation."
|
|
21064
|
+
},
|
|
21065
|
+
"title": {
|
|
21066
|
+
"description": "A title for the field. If `null`, the title will be removed.",
|
|
21067
|
+
"type": [
|
|
21068
|
+
"string",
|
|
21069
|
+
"null"
|
|
21070
|
+
]
|
|
21071
|
+
},
|
|
21072
|
+
"type": {
|
|
21073
|
+
"$ref": "#/definitions/Type"
|
|
21074
|
+
}
|
|
21075
|
+
},
|
|
21076
|
+
"required": [
|
|
21077
|
+
"type"
|
|
21078
|
+
],
|
|
21079
|
+
"type": "object"
|
|
21080
|
+
},
|
|
21081
|
+
{
|
|
21082
|
+
"$ref": "#/definitions/ValueDef%3CArrowDirection%3E"
|
|
21083
|
+
}
|
|
21084
|
+
]
|
|
21085
|
+
},
|
|
19567
21086
|
"DomEventType": {
|
|
19568
21087
|
"anyOf": [
|
|
19569
21088
|
{
|
|
@@ -19708,6 +21227,10 @@
|
|
|
19708
21227
|
"$ref": "#/definitions/ColorDef",
|
|
19709
21228
|
"description": "Color of the marks – either fill or stroke color based on the `filled` property of mark definition.\n\n_Note:_ 1) For fine-grained control over both fill and stroke colors of the marks, please use the `fill` and `stroke` channels. The `fill` or `stroke` encodings have higher precedence than `color`, thus may override the `color` encoding if conflicting encodings are specified. 2) See the scale documentation for more information about customizing [color scheme](https://vega.github.io/vega-lite/docs/scale.html#scheme)."
|
|
19710
21229
|
},
|
|
21230
|
+
"direction": {
|
|
21231
|
+
"$ref": "#/definitions/DirectionDef",
|
|
21232
|
+
"description": "Direction of arrow marks. Encoded values are mapped with a discrete scale whose range values must be `\"forward\"` or `\"reverse\"`.\n\nThis channel is supported by arrow marks only and does not create a legend."
|
|
21233
|
+
},
|
|
19711
21234
|
"dx": {
|
|
19712
21235
|
"anyOf": [
|
|
19713
21236
|
{
|
|
@@ -19786,7 +21309,7 @@
|
|
|
19786
21309
|
},
|
|
19787
21310
|
"size": {
|
|
19788
21311
|
"$ref": "#/definitions/NumericMarkPropDef",
|
|
19789
|
-
"description": "Size of the mark.\n- For `\"point\"` – the symbol size, or pixel area of the mark.\n- For `\"text\"` – the text's font size."
|
|
21312
|
+
"description": "Size of the mark.\n- For `\"point\"` – the symbol size, or pixel area of the mark.\n- For `\"text\"` – the text's font size.\n- For `\"arrow\"` – the stem thickness in pixels."
|
|
19790
21313
|
},
|
|
19791
21314
|
"stroke": {
|
|
19792
21315
|
"$ref": "#/definitions/ColorDef",
|
|
@@ -19804,6 +21327,10 @@
|
|
|
19804
21327
|
"$ref": "#/definitions/TextDef",
|
|
19805
21328
|
"description": "Text of the `text` mark."
|
|
19806
21329
|
},
|
|
21330
|
+
"tooltip": {
|
|
21331
|
+
"$ref": "#/definitions/TooltipDef",
|
|
21332
|
+
"description": "Fields, expressions, or values shown by the default tooltip handler.\n\nIf omitted, the default tooltip handler shows the hovered datum's properties. If `null`, the default tooltip handler shows no raw datum rows for this mark. Use an array to show multiple rows in a specific order."
|
|
21333
|
+
},
|
|
19807
21334
|
"uniqueId": {
|
|
19808
21335
|
"$ref": "#/definitions/FieldDefWithoutScale",
|
|
19809
21336
|
"description": "For internal use"
|
|
@@ -20221,6 +21748,40 @@
|
|
|
20221
21748
|
],
|
|
20222
21749
|
"type": "object"
|
|
20223
21750
|
},
|
|
21751
|
+
"ExprParameter": {
|
|
21752
|
+
"additionalProperties": false,
|
|
21753
|
+
"properties": {
|
|
21754
|
+
"description": {
|
|
21755
|
+
"description": "A description of the parameter. Can be used for documentation and to explain the meaning of the control or selection.",
|
|
21756
|
+
"type": "string"
|
|
21757
|
+
},
|
|
21758
|
+
"expr": {
|
|
21759
|
+
"description": "An expression for the value of the parameter. This expression may include other parameters, in which case the parameter will automatically update in response to upstream parameter changes.",
|
|
21760
|
+
"type": "string"
|
|
21761
|
+
},
|
|
21762
|
+
"name": {
|
|
21763
|
+
"description": "A unique name for the variable parameter. Parameter names should be valid JavaScript identifiers: they should contain only alphanumeric characters (or \"$\", or \"_\") and may not start with a digit. Reserved keywords that may not be used as parameter names are: \"datum\".",
|
|
21764
|
+
"type": "string"
|
|
21765
|
+
},
|
|
21766
|
+
"persist": {
|
|
21767
|
+
"description": "Whether the parameter should be persisted in bookmarks and provenance.\n\nThis primarily affects GenomeSpy App behavior. Set to `false` for ephemeral params (e.g., hover selections) or when the selection cannot be persisted due to missing `encoding.key`.\n\n__Default value:__ `true`",
|
|
21768
|
+
"type": "boolean"
|
|
21769
|
+
},
|
|
21770
|
+
"push": {
|
|
21771
|
+
"const": "outer",
|
|
21772
|
+
"type": "string"
|
|
21773
|
+
},
|
|
21774
|
+
"transition": {
|
|
21775
|
+
"$ref": "#/definitions/ParamTransition",
|
|
21776
|
+
"description": "Smoothly follows numeric expression output values."
|
|
21777
|
+
}
|
|
21778
|
+
},
|
|
21779
|
+
"required": [
|
|
21780
|
+
"expr",
|
|
21781
|
+
"name"
|
|
21782
|
+
],
|
|
21783
|
+
"type": "object"
|
|
21784
|
+
},
|
|
20224
21785
|
"ExprRef": {
|
|
20225
21786
|
"additionalProperties": false,
|
|
20226
21787
|
"properties": {
|
|
@@ -20234,6 +21795,43 @@
|
|
|
20234
21795
|
],
|
|
20235
21796
|
"type": "object"
|
|
20236
21797
|
},
|
|
21798
|
+
"FadedMultiscaleStops": {
|
|
21799
|
+
"additionalProperties": false,
|
|
21800
|
+
"properties": {
|
|
21801
|
+
"channel": {
|
|
21802
|
+
"anyOf": [
|
|
21803
|
+
{
|
|
21804
|
+
"$ref": "#/definitions/PrimaryPositionalChannel"
|
|
21805
|
+
},
|
|
21806
|
+
{
|
|
21807
|
+
"const": "auto",
|
|
21808
|
+
"type": "string"
|
|
21809
|
+
}
|
|
21810
|
+
],
|
|
21811
|
+
"description": "Which positional channel controls the stop metric.\n\n- `\"auto\"` averages `x` and `y` when both are available.\n- `\"x\"` uses only the `x` channel.\n- `\"y\"` uses only the `y` channel.\n\n__Default value:__ `\"auto\"`"
|
|
21812
|
+
},
|
|
21813
|
+
"fade": {
|
|
21814
|
+
"description": "Relative transition width around each stop.\n\nFor each stop value `s`, the fade transition is evaluated in the range:\n\n- upper edge: `s * (1 + fade)`\n- lower edge: `s * (1 - fade)`\n\n__Default value:__ `0.5`",
|
|
21815
|
+
"type": "number"
|
|
21816
|
+
},
|
|
21817
|
+
"metric": {
|
|
21818
|
+
"const": "unitsPerPixel",
|
|
21819
|
+
"description": "The metric used to evaluate zoom stops.\n\n__Default value:__ `\"unitsPerPixel\"`",
|
|
21820
|
+
"type": "string"
|
|
21821
|
+
},
|
|
21822
|
+
"values": {
|
|
21823
|
+
"description": "Stop values in descending order.",
|
|
21824
|
+
"items": {
|
|
21825
|
+
"$ref": "#/definitions/NumericStopDef"
|
|
21826
|
+
},
|
|
21827
|
+
"type": "array"
|
|
21828
|
+
}
|
|
21829
|
+
},
|
|
21830
|
+
"required": [
|
|
21831
|
+
"values"
|
|
21832
|
+
],
|
|
21833
|
+
"type": "object"
|
|
21834
|
+
},
|
|
20237
21835
|
"Field": {
|
|
20238
21836
|
"description": "The name of the field or a JavaScript expression for accessing nested properties. Dots and brackets in the field name must be escaped.",
|
|
20239
21837
|
"type": "string"
|
|
@@ -20699,6 +22297,40 @@
|
|
|
20699
22297
|
],
|
|
20700
22298
|
"type": "object"
|
|
20701
22299
|
},
|
|
22300
|
+
"FlattenCigarParams": {
|
|
22301
|
+
"additionalProperties": false,
|
|
22302
|
+
"description": "Expands a read alignment into one row per CIGAR operation.\n\nThe output rows preserve the input datum fields, or only the fields listed in `copyFields` when it is defined, and add fixed CIGAR fields: `cigarOp`, `cigarLength`, `cigarStart`, `cigarEnd`, `readStart`, `readEnd`, and `cigarType`. Reference coordinates are 0-based, half-open.",
|
|
22303
|
+
"properties": {
|
|
22304
|
+
"cigar": {
|
|
22305
|
+
"$ref": "#/definitions/Field",
|
|
22306
|
+
"description": "The CIGAR string.\n\n__Default value:__ `\"cigar\"`"
|
|
22307
|
+
},
|
|
22308
|
+
"copyFields": {
|
|
22309
|
+
"description": "Top-level input fields copied to the emitted CIGAR operation rows.\n\nIf omitted, all input fields are copied. This can be used to avoid copying bulky fields such as read sequence or base quality arrays while still allowing the transform to read its input fields.",
|
|
22310
|
+
"items": {
|
|
22311
|
+
"type": "string"
|
|
22312
|
+
},
|
|
22313
|
+
"type": "array"
|
|
22314
|
+
},
|
|
22315
|
+
"description": {
|
|
22316
|
+
"description": "A description of the transform step. Can be used for documentation and agent context.",
|
|
22317
|
+
"type": "string"
|
|
22318
|
+
},
|
|
22319
|
+
"start": {
|
|
22320
|
+
"$ref": "#/definitions/Field",
|
|
22321
|
+
"description": "The read's reference start coordinate.\n\n__Default value:__ `\"start\"`"
|
|
22322
|
+
},
|
|
22323
|
+
"type": {
|
|
22324
|
+
"const": "flattenCigar",
|
|
22325
|
+
"description": "The type of the transform to be applied",
|
|
22326
|
+
"type": "string"
|
|
22327
|
+
}
|
|
22328
|
+
},
|
|
22329
|
+
"required": [
|
|
22330
|
+
"type"
|
|
22331
|
+
],
|
|
22332
|
+
"type": "object"
|
|
22333
|
+
},
|
|
20702
22334
|
"FlattenCompressedExonsParams": {
|
|
20703
22335
|
"additionalProperties": false,
|
|
20704
22336
|
"properties": {
|
|
@@ -21366,6 +22998,10 @@
|
|
|
21366
22998
|
"GenomeSpyConfig": {
|
|
21367
22999
|
"additionalProperties": false,
|
|
21368
23000
|
"properties": {
|
|
23001
|
+
"arrow": {
|
|
23002
|
+
"$ref": "#/definitions/ArrowConfig",
|
|
23003
|
+
"description": "Defaults for arrow marks."
|
|
23004
|
+
},
|
|
21369
23005
|
"axis": {
|
|
21370
23006
|
"$ref": "#/definitions/AxisConfig",
|
|
21371
23007
|
"description": "Defaults shared by all axes."
|
|
@@ -22440,6 +24076,28 @@
|
|
|
22440
24076
|
],
|
|
22441
24077
|
"type": "string"
|
|
22442
24078
|
},
|
|
24079
|
+
"LerpTransition": {
|
|
24080
|
+
"additionalProperties": false,
|
|
24081
|
+
"properties": {
|
|
24082
|
+
"epsilon": {
|
|
24083
|
+
"description": "Distance from the target at which the current value snaps to the target.\n\n__Default value:__ `0.01`",
|
|
24084
|
+
"type": "number"
|
|
24085
|
+
},
|
|
24086
|
+
"halfLife": {
|
|
24087
|
+
"description": "Time in milliseconds for the remaining distance to the target to halve.\n\n__Default value:__ `80`",
|
|
24088
|
+
"type": "number"
|
|
24089
|
+
},
|
|
24090
|
+
"type": {
|
|
24091
|
+
"const": "lerp",
|
|
24092
|
+
"description": "The transition algorithm.",
|
|
24093
|
+
"type": "string"
|
|
24094
|
+
}
|
|
24095
|
+
},
|
|
24096
|
+
"required": [
|
|
24097
|
+
"type"
|
|
24098
|
+
],
|
|
24099
|
+
"type": "object"
|
|
24100
|
+
},
|
|
22443
24101
|
"LinearizeGenomicCoordinateParams": {
|
|
22444
24102
|
"additionalProperties": false,
|
|
22445
24103
|
"properties": {
|
|
@@ -23124,6 +24782,106 @@
|
|
|
23124
24782
|
],
|
|
23125
24783
|
"type": "object"
|
|
23126
24784
|
},
|
|
24785
|
+
"LookupParams": {
|
|
24786
|
+
"additionalProperties": false,
|
|
24787
|
+
"properties": {
|
|
24788
|
+
"as": {
|
|
24789
|
+
"description": "Output field names. Defaults to `values`. Requires an explicit `values` array.",
|
|
24790
|
+
"items": {
|
|
24791
|
+
"type": "string"
|
|
24792
|
+
},
|
|
24793
|
+
"type": "array"
|
|
24794
|
+
},
|
|
24795
|
+
"default": {
|
|
24796
|
+
"description": "Value written when no side-input row matches.\n\n__Default value:__ `null`"
|
|
24797
|
+
},
|
|
24798
|
+
"description": {
|
|
24799
|
+
"description": "A description of the transform step. Can be used for documentation and agent context.",
|
|
24800
|
+
"type": "string"
|
|
24801
|
+
},
|
|
24802
|
+
"fields": {
|
|
24803
|
+
"anyOf": [
|
|
24804
|
+
{
|
|
24805
|
+
"$ref": "#/definitions/Field"
|
|
24806
|
+
},
|
|
24807
|
+
{
|
|
24808
|
+
"items": {
|
|
24809
|
+
"$ref": "#/definitions/Field"
|
|
24810
|
+
},
|
|
24811
|
+
"type": "array"
|
|
24812
|
+
},
|
|
24813
|
+
{
|
|
24814
|
+
"type": "null"
|
|
24815
|
+
}
|
|
24816
|
+
],
|
|
24817
|
+
"description": "The fields in the input data to match against the lookup-table key. This array must have the same length and order as `key`. Defaults to `key`."
|
|
24818
|
+
},
|
|
24819
|
+
"from": {
|
|
24820
|
+
"anyOf": [
|
|
24821
|
+
{
|
|
24822
|
+
"$ref": "#/definitions/DataSource"
|
|
24823
|
+
},
|
|
24824
|
+
{
|
|
24825
|
+
"$ref": "#/definitions/LookupSelfInput"
|
|
24826
|
+
}
|
|
24827
|
+
],
|
|
24828
|
+
"description": "The non-lazy data source that provides the lookup table, or the current input data."
|
|
24829
|
+
},
|
|
24830
|
+
"key": {
|
|
24831
|
+
"anyOf": [
|
|
24832
|
+
{
|
|
24833
|
+
"$ref": "#/definitions/Field"
|
|
24834
|
+
},
|
|
24835
|
+
{
|
|
24836
|
+
"items": {
|
|
24837
|
+
"$ref": "#/definitions/Field"
|
|
24838
|
+
},
|
|
24839
|
+
"type": "array"
|
|
24840
|
+
}
|
|
24841
|
+
],
|
|
24842
|
+
"description": "The key field or fields in the lookup table. When multiple fields are provided, they form a composite key."
|
|
24843
|
+
},
|
|
24844
|
+
"type": {
|
|
24845
|
+
"const": "lookup",
|
|
24846
|
+
"description": "The type of the transform to be applied",
|
|
24847
|
+
"type": "string"
|
|
24848
|
+
},
|
|
24849
|
+
"values": {
|
|
24850
|
+
"anyOf": [
|
|
24851
|
+
{
|
|
24852
|
+
"items": {
|
|
24853
|
+
"$ref": "#/definitions/Field"
|
|
24854
|
+
},
|
|
24855
|
+
"type": "array"
|
|
24856
|
+
},
|
|
24857
|
+
{
|
|
24858
|
+
"type": "null"
|
|
24859
|
+
}
|
|
24860
|
+
],
|
|
24861
|
+
"description": "Fields to copy from a matching side-input row. Defaults to all fields except `key`."
|
|
24862
|
+
}
|
|
24863
|
+
},
|
|
24864
|
+
"required": [
|
|
24865
|
+
"from",
|
|
24866
|
+
"key",
|
|
24867
|
+
"type"
|
|
24868
|
+
],
|
|
24869
|
+
"type": "object"
|
|
24870
|
+
},
|
|
24871
|
+
"LookupSelfInput": {
|
|
24872
|
+
"additionalProperties": false,
|
|
24873
|
+
"properties": {
|
|
24874
|
+
"source": {
|
|
24875
|
+
"const": "input",
|
|
24876
|
+
"description": "Use the current input data as the lookup table. Lookup reads all records from one input file or inline dataset before emitting results. Multiple files and facets are indexed separately.",
|
|
24877
|
+
"type": "string"
|
|
24878
|
+
}
|
|
24879
|
+
},
|
|
24880
|
+
"required": [
|
|
24881
|
+
"source"
|
|
24882
|
+
],
|
|
24883
|
+
"type": "object"
|
|
24884
|
+
},
|
|
23127
24885
|
"MarkConfig": {
|
|
23128
24886
|
"additionalProperties": false,
|
|
23129
24887
|
"properties": {
|
|
@@ -23352,6 +25110,9 @@
|
|
|
23352
25110
|
{
|
|
23353
25111
|
"$ref": "#/definitions/RectProps"
|
|
23354
25112
|
},
|
|
25113
|
+
{
|
|
25114
|
+
"$ref": "#/definitions/ArrowProps"
|
|
25115
|
+
},
|
|
23355
25116
|
{
|
|
23356
25117
|
"$ref": "#/definitions/TextProps"
|
|
23357
25118
|
},
|
|
@@ -23376,7 +25137,8 @@
|
|
|
23376
25137
|
"rule",
|
|
23377
25138
|
"tick",
|
|
23378
25139
|
"text",
|
|
23379
|
-
"link"
|
|
25140
|
+
"link",
|
|
25141
|
+
"arrow"
|
|
23380
25142
|
],
|
|
23381
25143
|
"type": "string"
|
|
23382
25144
|
},
|
|
@@ -23650,41 +25412,14 @@
|
|
|
23650
25412
|
]
|
|
23651
25413
|
},
|
|
23652
25414
|
"MultiscaleStops": {
|
|
23653
|
-
"
|
|
23654
|
-
|
|
23655
|
-
|
|
23656
|
-
"anyOf": [
|
|
23657
|
-
{
|
|
23658
|
-
"$ref": "#/definitions/PrimaryPositionalChannel"
|
|
23659
|
-
},
|
|
23660
|
-
{
|
|
23661
|
-
"const": "auto",
|
|
23662
|
-
"type": "string"
|
|
23663
|
-
}
|
|
23664
|
-
],
|
|
23665
|
-
"description": "Which positional channel controls the stop metric.\n\n- `\"auto\"` averages `x` and `y` when both are available.\n- `\"x\"` uses only the `x` channel.\n- `\"y\"` uses only the `y` channel.\n\n__Default value:__ `\"auto\"`"
|
|
23666
|
-
},
|
|
23667
|
-
"fade": {
|
|
23668
|
-
"description": "Relative transition width around each stop.\n\nFor each stop value `s`, the fade transition is evaluated in the range:\n\n- upper edge: `s * (1 + fade)`\n- lower edge: `s * (1 - fade)`\n\n__Default value:__ `0.5`",
|
|
23669
|
-
"type": "number"
|
|
23670
|
-
},
|
|
23671
|
-
"metric": {
|
|
23672
|
-
"const": "unitsPerPixel",
|
|
23673
|
-
"description": "The metric used to evaluate zoom stops.\n\n__Default value:__ `\"unitsPerPixel\"`",
|
|
23674
|
-
"type": "string"
|
|
25415
|
+
"anyOf": [
|
|
25416
|
+
{
|
|
25417
|
+
"$ref": "#/definitions/FadedMultiscaleStops"
|
|
23675
25418
|
},
|
|
23676
|
-
|
|
23677
|
-
"
|
|
23678
|
-
"items": {
|
|
23679
|
-
"$ref": "#/definitions/NumericStopDef"
|
|
23680
|
-
},
|
|
23681
|
-
"type": "array"
|
|
25419
|
+
{
|
|
25420
|
+
"$ref": "#/definitions/TransitionedMultiscaleStops"
|
|
23682
25421
|
}
|
|
23683
|
-
|
|
23684
|
-
"required": [
|
|
23685
|
-
"values"
|
|
23686
|
-
],
|
|
23687
|
-
"type": "object"
|
|
25422
|
+
]
|
|
23688
25423
|
},
|
|
23689
25424
|
"MultiscaleStopsDef": {
|
|
23690
25425
|
"anyOf": [
|
|
@@ -23904,6 +25639,9 @@
|
|
|
23904
25639
|
},
|
|
23905
25640
|
"type": "object"
|
|
23906
25641
|
},
|
|
25642
|
+
"ParamTransition": {
|
|
25643
|
+
"$ref": "#/definitions/LerpTransition"
|
|
25644
|
+
},
|
|
23907
25645
|
"Parameter": {
|
|
23908
25646
|
"anyOf": [
|
|
23909
25647
|
{
|
|
@@ -24015,6 +25753,38 @@
|
|
|
24015
25753
|
],
|
|
24016
25754
|
"type": "object"
|
|
24017
25755
|
},
|
|
25756
|
+
"PlainValueParameter": {
|
|
25757
|
+
"additionalProperties": false,
|
|
25758
|
+
"properties": {
|
|
25759
|
+
"bind": {
|
|
25760
|
+
"$ref": "#/definitions/Binding",
|
|
25761
|
+
"description": "Binds the parameter to an external input element such as a slider, selection list or radio button group."
|
|
25762
|
+
},
|
|
25763
|
+
"description": {
|
|
25764
|
+
"description": "A description of the parameter. Can be used for documentation and to explain the meaning of the control or selection.",
|
|
25765
|
+
"type": "string"
|
|
25766
|
+
},
|
|
25767
|
+
"name": {
|
|
25768
|
+
"description": "A unique name for the variable parameter. Parameter names should be valid JavaScript identifiers: they should contain only alphanumeric characters (or \"$\", or \"_\") and may not start with a digit. Reserved keywords that may not be used as parameter names are: \"datum\".",
|
|
25769
|
+
"type": "string"
|
|
25770
|
+
},
|
|
25771
|
+
"persist": {
|
|
25772
|
+
"description": "Whether the parameter should be persisted in bookmarks and provenance.\n\nThis primarily affects GenomeSpy App behavior. Set to `false` for ephemeral params (e.g., hover selections) or when the selection cannot be persisted due to missing `encoding.key`.\n\n__Default value:__ `true`",
|
|
25773
|
+
"type": "boolean"
|
|
25774
|
+
},
|
|
25775
|
+
"push": {
|
|
25776
|
+
"const": "outer",
|
|
25777
|
+
"type": "string"
|
|
25778
|
+
},
|
|
25779
|
+
"value": {
|
|
25780
|
+
"description": "The [initial value](http://vega.github.io/vega-lite/docs/value.html) of the parameter.\n\n__Default value:__ `undefined`"
|
|
25781
|
+
}
|
|
25782
|
+
},
|
|
25783
|
+
"required": [
|
|
25784
|
+
"name"
|
|
25785
|
+
],
|
|
25786
|
+
"type": "object"
|
|
25787
|
+
},
|
|
24018
25788
|
"PointConfig": {
|
|
24019
25789
|
"additionalProperties": false,
|
|
24020
25790
|
"properties": {
|
|
@@ -26931,7 +28701,7 @@
|
|
|
26931
28701
|
"properties": {
|
|
26932
28702
|
"axes": {
|
|
26933
28703
|
"additionalProperties": false,
|
|
26934
|
-
"description": "
|
|
28704
|
+
"description": "Defines properties for axis resolutions used by this view subtree.\n\nUse this when a composed view shares an axis across child views and the axis settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
26935
28705
|
"properties": {
|
|
26936
28706
|
"x": {
|
|
26937
28707
|
"additionalProperties": false,
|
|
@@ -27720,6 +29490,14 @@
|
|
|
27720
29490
|
"$ref": "#/definitions/Data",
|
|
27721
29491
|
"description": "Specifies a [data source](https://genomespy.app/docs/grammar/data/). If omitted, the data source is inherited from the parent view."
|
|
27722
29492
|
},
|
|
29493
|
+
"datasets": {
|
|
29494
|
+
"additionalProperties": {
|
|
29495
|
+
"items": {},
|
|
29496
|
+
"type": "array"
|
|
29497
|
+
},
|
|
29498
|
+
"description": "Named datasets available to this view and its descendants.\n\nA descendant declaration with the same name shadows this declaration. Declare named data here to establish reliable lexical scope and enable scoped runtime updates.",
|
|
29499
|
+
"type": "object"
|
|
29500
|
+
},
|
|
27723
29501
|
"description": {
|
|
27724
29502
|
"anyOf": [
|
|
27725
29503
|
{
|
|
@@ -27753,16 +29531,19 @@
|
|
|
27753
29531
|
{
|
|
27754
29532
|
"$ref": "#/definitions/Step"
|
|
27755
29533
|
},
|
|
29534
|
+
{
|
|
29535
|
+
"$ref": "#/definitions/ExprRef"
|
|
29536
|
+
},
|
|
27756
29537
|
{
|
|
27757
29538
|
"const": "container",
|
|
27758
29539
|
"type": "string"
|
|
27759
29540
|
}
|
|
27760
29541
|
],
|
|
27761
|
-
"description": "Height of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
29542
|
+
"description": "Height of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default value:** `\"container\"`"
|
|
27762
29543
|
},
|
|
27763
29544
|
"legends": {
|
|
27764
29545
|
"additionalProperties": false,
|
|
27765
|
-
"description": "
|
|
29546
|
+
"description": "Defines properties for legend resolutions used by this view subtree.\n\nUse this when a composed view shares a legend across child views and the legend settings belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
27766
29547
|
"properties": {
|
|
27767
29548
|
"angle": {
|
|
27768
29549
|
"$ref": "#/definitions/Legend"
|
|
@@ -27838,6 +29619,9 @@
|
|
|
27838
29619
|
"default": {
|
|
27839
29620
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27840
29621
|
},
|
|
29622
|
+
"direction": {
|
|
29623
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
29624
|
+
},
|
|
27841
29625
|
"dx": {
|
|
27842
29626
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27843
29627
|
},
|
|
@@ -27886,6 +29670,9 @@
|
|
|
27886
29670
|
"text": {
|
|
27887
29671
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27888
29672
|
},
|
|
29673
|
+
"tooltip": {
|
|
29674
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
29675
|
+
},
|
|
27889
29676
|
"uniqueId": {
|
|
27890
29677
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27891
29678
|
},
|
|
@@ -27916,6 +29703,9 @@
|
|
|
27916
29703
|
"default": {
|
|
27917
29704
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27918
29705
|
},
|
|
29706
|
+
"direction": {
|
|
29707
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
29708
|
+
},
|
|
27919
29709
|
"dx": {
|
|
27920
29710
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27921
29711
|
},
|
|
@@ -27964,6 +29754,9 @@
|
|
|
27964
29754
|
"text": {
|
|
27965
29755
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27966
29756
|
},
|
|
29757
|
+
"tooltip": {
|
|
29758
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
29759
|
+
},
|
|
27967
29760
|
"uniqueId": {
|
|
27968
29761
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27969
29762
|
},
|
|
@@ -27994,6 +29787,9 @@
|
|
|
27994
29787
|
"default": {
|
|
27995
29788
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27996
29789
|
},
|
|
29790
|
+
"direction": {
|
|
29791
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
29792
|
+
},
|
|
27997
29793
|
"dx": {
|
|
27998
29794
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
27999
29795
|
},
|
|
@@ -28042,6 +29838,9 @@
|
|
|
28042
29838
|
"text": {
|
|
28043
29839
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
28044
29840
|
},
|
|
29841
|
+
"tooltip": {
|
|
29842
|
+
"$ref": "#/definitions/ResolutionBehavior"
|
|
29843
|
+
},
|
|
28045
29844
|
"uniqueId": {
|
|
28046
29845
|
"$ref": "#/definitions/ResolutionBehavior"
|
|
28047
29846
|
},
|
|
@@ -28084,7 +29883,7 @@
|
|
|
28084
29883
|
},
|
|
28085
29884
|
"scales": {
|
|
28086
29885
|
"additionalProperties": false,
|
|
28087
|
-
"description": "
|
|
29886
|
+
"description": "Defines properties for scale resolutions used by this view subtree.\n\nUse this when a composed view shares a scale across child views and the scale settings, such as the visible domain, belong to the composed view rather than an individual encoding. An ancestor declaration shadows the whole declaration of a descendant that targets the same resolution. Declarations in separate sibling subtrees are ambiguous and cause an error.",
|
|
28088
29887
|
"properties": {
|
|
28089
29888
|
"angle": {
|
|
28090
29889
|
"$ref": "#/definitions/Scale"
|
|
@@ -28092,6 +29891,9 @@
|
|
|
28092
29891
|
"color": {
|
|
28093
29892
|
"$ref": "#/definitions/Scale"
|
|
28094
29893
|
},
|
|
29894
|
+
"direction": {
|
|
29895
|
+
"$ref": "#/definitions/Scale"
|
|
29896
|
+
},
|
|
28095
29897
|
"dx": {
|
|
28096
29898
|
"$ref": "#/definitions/Scale"
|
|
28097
29899
|
},
|
|
@@ -28188,12 +29990,15 @@
|
|
|
28188
29990
|
{
|
|
28189
29991
|
"type": "number"
|
|
28190
29992
|
},
|
|
29993
|
+
{
|
|
29994
|
+
"$ref": "#/definitions/ExprRef"
|
|
29995
|
+
},
|
|
28191
29996
|
{
|
|
28192
29997
|
"const": "container",
|
|
28193
29998
|
"type": "string"
|
|
28194
29999
|
}
|
|
28195
30000
|
],
|
|
28196
|
-
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
30001
|
+
"description": "Optional viewport height of the view. If the view size exceeds the viewport height, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `height`)"
|
|
28197
30002
|
},
|
|
28198
30003
|
"viewportWidth": {
|
|
28199
30004
|
"anyOf": [
|
|
@@ -28203,12 +30008,15 @@
|
|
|
28203
30008
|
{
|
|
28204
30009
|
"type": "number"
|
|
28205
30010
|
},
|
|
30011
|
+
{
|
|
30012
|
+
"$ref": "#/definitions/ExprRef"
|
|
30013
|
+
},
|
|
28206
30014
|
{
|
|
28207
30015
|
"const": "container",
|
|
28208
30016
|
"type": "string"
|
|
28209
30017
|
}
|
|
28210
30018
|
],
|
|
28211
|
-
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping
|
|
30019
|
+
"description": "Optional viewport width of the view. If the view size exceeds the viewport width, it will be shown with [scrollbars](https://genomespy.app/docs/grammar/composition/concat/#scrollable-viewports). This property implicitly enables clipping. If an expression reference is provided, it must resolve to a number or `\"container\"`.\n\n**Default:** `null` (same as `width`)"
|
|
28212
30020
|
},
|
|
28213
30021
|
"visible": {
|
|
28214
30022
|
"description": "The default visibility of the view. An invisible view is removed from the layout and not rendered. For context, see [toggleable view visibility](https://genomespy.app/docs/sample-collections/visualizing/#toggleable-view-visibility).\n\n**Default:** `true`",
|
|
@@ -28225,12 +30033,15 @@
|
|
|
28225
30033
|
{
|
|
28226
30034
|
"$ref": "#/definitions/Step"
|
|
28227
30035
|
},
|
|
30036
|
+
{
|
|
30037
|
+
"$ref": "#/definitions/ExprRef"
|
|
30038
|
+
},
|
|
28228
30039
|
{
|
|
28229
30040
|
"const": "container",
|
|
28230
30041
|
"type": "string"
|
|
28231
30042
|
}
|
|
28232
30043
|
],
|
|
28233
|
-
"description": "Width of the view. If a number, it is interpreted as pixels. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
30044
|
+
"description": "Width of the view. If a number, it is interpreted as pixels. If an expression reference is provided, it must resolve to a number or `\"container\"`. Check [child sizing](https://genomespy.app/docs/grammar/composition/concat/#child-sizing) for details.\n\n**Default:** `\"container\"`"
|
|
28234
30045
|
}
|
|
28235
30046
|
},
|
|
28236
30047
|
"required": [
|
|
@@ -30506,7 +32317,15 @@
|
|
|
30506
32317
|
"additionalProperties": false,
|
|
30507
32318
|
"properties": {
|
|
30508
32319
|
"step": {
|
|
30509
|
-
"
|
|
32320
|
+
"anyOf": [
|
|
32321
|
+
{
|
|
32322
|
+
"type": "number"
|
|
32323
|
+
},
|
|
32324
|
+
{
|
|
32325
|
+
"$ref": "#/definitions/ExprRef"
|
|
32326
|
+
}
|
|
32327
|
+
],
|
|
32328
|
+
"description": "Step size in pixels."
|
|
30510
32329
|
}
|
|
30511
32330
|
},
|
|
30512
32331
|
"required": [
|
|
@@ -31000,8 +32819,28 @@
|
|
|
31000
32819
|
"description": "Mouse cursor shown while the pointer is over the mark. Mark cursor takes precedence over enclosing view cursors.\n\n__Default value:__ browser default"
|
|
31001
32820
|
},
|
|
31002
32821
|
"direction": {
|
|
31003
|
-
"
|
|
31004
|
-
|
|
32822
|
+
"anyOf": [
|
|
32823
|
+
{
|
|
32824
|
+
"anyOf": [
|
|
32825
|
+
{
|
|
32826
|
+
"const": "forward",
|
|
32827
|
+
"type": "string"
|
|
32828
|
+
},
|
|
32829
|
+
{
|
|
32830
|
+
"const": "reverse",
|
|
32831
|
+
"type": "string"
|
|
32832
|
+
},
|
|
32833
|
+
{
|
|
32834
|
+
"$ref": "#/definitions/ExprRef"
|
|
32835
|
+
}
|
|
32836
|
+
],
|
|
32837
|
+
"description": "Direction of the arrowhead. `\"forward\"` places the arrowhead at the secondary endpoint (`x2`, `y2`). `\"reverse\"` places it at the primary endpoint (`x`, `y`). For data-driven direction, use the `direction` encoding channel.\n\n__Default value:__ `\"forward\"`"
|
|
32838
|
+
},
|
|
32839
|
+
{
|
|
32840
|
+
"$ref": "#/definitions/LegendDirection",
|
|
32841
|
+
"description": "The direction in which legend entries are laid out."
|
|
32842
|
+
}
|
|
32843
|
+
]
|
|
31005
32844
|
},
|
|
31006
32845
|
"disable": {
|
|
31007
32846
|
"anyOf": [
|
|
@@ -31306,6 +33145,85 @@
|
|
|
31306
33145
|
],
|
|
31307
33146
|
"description": "A hatch pattern drawn inside the mark using the stroke width, color, and opacity. The pattern is aligned in screen space and scaled by the stroke width.\n\n**Default value:** `\"none\"`"
|
|
31308
33147
|
},
|
|
33148
|
+
"headAngle": {
|
|
33149
|
+
"anyOf": [
|
|
33150
|
+
{
|
|
33151
|
+
"type": "number"
|
|
33152
|
+
},
|
|
33153
|
+
{
|
|
33154
|
+
"$ref": "#/definitions/ExprRef"
|
|
33155
|
+
}
|
|
33156
|
+
],
|
|
33157
|
+
"description": "Angle in degrees between the arrow axis and an outer edge of the arrowhead. Smaller values produce longer, narrower heads. Larger values produce shorter, blunter heads. Values are clamped to `[1, 90]`.\n\n__Default value:__ `45`"
|
|
33158
|
+
},
|
|
33159
|
+
"headNotchAngle": {
|
|
33160
|
+
"anyOf": [
|
|
33161
|
+
{
|
|
33162
|
+
"type": "number"
|
|
33163
|
+
},
|
|
33164
|
+
{
|
|
33165
|
+
"$ref": "#/definitions/ExprRef"
|
|
33166
|
+
}
|
|
33167
|
+
],
|
|
33168
|
+
"description": "Angle in degrees between the arrow axis and the arrowhead notch edge. `90` places the notch point at the tip, producing a triangular head when `headAngle` is less than `90`. Applies to `\"triangle\"` heads. `\"open\"` heads use `headAngle` for the notch edge as well. Values are clamped to `[1, 90]`.\n\n__Default value:__ `90`"
|
|
33169
|
+
},
|
|
33170
|
+
"headPlacement": {
|
|
33171
|
+
"anyOf": [
|
|
33172
|
+
{
|
|
33173
|
+
"const": "inside",
|
|
33174
|
+
"type": "string"
|
|
33175
|
+
},
|
|
33176
|
+
{
|
|
33177
|
+
"const": "outside",
|
|
33178
|
+
"type": "string"
|
|
33179
|
+
},
|
|
33180
|
+
{
|
|
33181
|
+
"$ref": "#/definitions/ExprRef"
|
|
33182
|
+
}
|
|
33183
|
+
],
|
|
33184
|
+
"description": "Placement of the arrowhead relative to the encoded segment. `\"inside\"` keeps the whole arrowhead within the encoded segment. `\"outside\"` places the arrowhead beyond the encoded segment so that the head starts at the segment endpoint.\n\n__Default value:__ `\"inside\"`"
|
|
33185
|
+
},
|
|
33186
|
+
"headShape": {
|
|
33187
|
+
"anyOf": [
|
|
33188
|
+
{
|
|
33189
|
+
"const": "triangle",
|
|
33190
|
+
"type": "string"
|
|
33191
|
+
},
|
|
33192
|
+
{
|
|
33193
|
+
"const": "open",
|
|
33194
|
+
"type": "string"
|
|
33195
|
+
},
|
|
33196
|
+
{
|
|
33197
|
+
"$ref": "#/definitions/ExprRef"
|
|
33198
|
+
}
|
|
33199
|
+
],
|
|
33200
|
+
"description": "Shape of the arrowhead. `\"triangle\"` draws a filled head. `\"open\"` draws an open head whose thickness matches the resolved `size`, even when `stem` is `false`.\n\n__Default value:__ `\"triangle\"`"
|
|
33201
|
+
},
|
|
33202
|
+
"headSpacing": {
|
|
33203
|
+
"anyOf": [
|
|
33204
|
+
{
|
|
33205
|
+
"type": "number"
|
|
33206
|
+
},
|
|
33207
|
+
{
|
|
33208
|
+
"type": "null"
|
|
33209
|
+
},
|
|
33210
|
+
{
|
|
33211
|
+
"$ref": "#/definitions/ExprRef"
|
|
33212
|
+
}
|
|
33213
|
+
],
|
|
33214
|
+
"description": "Spacing between repeated arrowheads as a multiplier of resolved `size`. The effective spacing is at least the rendered arrowhead footprint, including stroke. If `null`, arrowheads are not repeated.\n\n__Default value:__ `null`"
|
|
33215
|
+
},
|
|
33216
|
+
"headWidth": {
|
|
33217
|
+
"anyOf": [
|
|
33218
|
+
{
|
|
33219
|
+
"type": "number"
|
|
33220
|
+
},
|
|
33221
|
+
{
|
|
33222
|
+
"$ref": "#/definitions/ExprRef"
|
|
33223
|
+
}
|
|
33224
|
+
],
|
|
33225
|
+
"description": "Width of the arrowhead as a multiplier of resolved `size`. Values above `1` make the arrowhead wider than the stem.\n\n__Default value:__ `3`"
|
|
33226
|
+
},
|
|
31309
33227
|
"inwardStroke": {
|
|
31310
33228
|
"anyOf": [
|
|
31311
33229
|
{
|
|
@@ -31545,6 +33463,28 @@
|
|
|
31545
33463
|
],
|
|
31546
33464
|
"description": "The minimum picking size invisibly increases the stroke width or point diameter of marks when pointing them with the mouse cursor, making it easier to select them. The valus is the minimum size in pixels.\n\n**Default value:** `3.0` for `\"link\"` and `2.0` for `\"point\"`"
|
|
31547
33465
|
},
|
|
33466
|
+
"minSize": {
|
|
33467
|
+
"anyOf": [
|
|
33468
|
+
{
|
|
33469
|
+
"type": "number"
|
|
33470
|
+
},
|
|
33471
|
+
{
|
|
33472
|
+
"$ref": "#/definitions/ExprRef"
|
|
33473
|
+
}
|
|
33474
|
+
],
|
|
33475
|
+
"description": "Minimum resolved arrow stem thickness in pixels. Applies to numeric, band-relative, and encoded `size` values.\n\n__Default value:__ `1`"
|
|
33476
|
+
},
|
|
33477
|
+
"minStemLength": {
|
|
33478
|
+
"anyOf": [
|
|
33479
|
+
{
|
|
33480
|
+
"type": "number"
|
|
33481
|
+
},
|
|
33482
|
+
{
|
|
33483
|
+
"$ref": "#/definitions/ExprRef"
|
|
33484
|
+
}
|
|
33485
|
+
],
|
|
33486
|
+
"description": "Minimum visible length of the arrow stem in pixels. When a non-repeated arrow is too short for the configured shape and minimum stem length, the affected notch or head angle is made blunter toward 90 degrees. For `\"inside\"` placement, this applies to `\"triangle\"` heads and is measured from the start of the stem to where the stem meets the head notch edge. For `\"outside\"` placement, this applies when `startNotch` is `true` and is measured from the start notch to the head start. Has no effect when `stem` is `false`.\n\n__Default value:__ `0`"
|
|
33487
|
+
},
|
|
31548
33488
|
"minWidth": {
|
|
31549
33489
|
"anyOf": [
|
|
31550
33490
|
{
|
|
@@ -31795,6 +33735,10 @@
|
|
|
31795
33735
|
],
|
|
31796
33736
|
"description": "Stroke width of `\"link\"` and `\"rule\"` marks in pixels, the area of the bounding square of `\"point\"` mark, or the font size of `\"text\"` mark."
|
|
31797
33737
|
},
|
|
33738
|
+
{
|
|
33739
|
+
"$ref": "#/definitions/ArrowSize",
|
|
33740
|
+
"description": "Arrow stem thickness in pixels, or as a fraction of the perpendicular band or view span for axis-aligned arrows.\n\nNumeric values are pixels. `{ \"band\": 0.8 }` resolves to 80% of the perpendicular band width, or 80% of the perpendicular view span when no band scale is available. Use `channel` to explicitly select the reference channel. Band-relative size is not supported for diagonal arrows.\n\n__Default value:__ `8`"
|
|
33741
|
+
},
|
|
31798
33742
|
{
|
|
31799
33743
|
"anyOf": [
|
|
31800
33744
|
{
|
|
@@ -31823,6 +33767,28 @@
|
|
|
31823
33767
|
],
|
|
31824
33768
|
"description": "If the `squeeze` property is true and secondary positional channels (`x2` and/or `y2`) are used, the text is scaled to fit mark's width and/or height.\n\n**Default value:** `true`"
|
|
31825
33769
|
},
|
|
33770
|
+
"startNotch": {
|
|
33771
|
+
"anyOf": [
|
|
33772
|
+
{
|
|
33773
|
+
"type": "boolean"
|
|
33774
|
+
},
|
|
33775
|
+
{
|
|
33776
|
+
"$ref": "#/definitions/ExprRef"
|
|
33777
|
+
}
|
|
33778
|
+
],
|
|
33779
|
+
"description": "Whether to draw a notch at the start of the arrow. The start notch uses the same slope as the arrowhead edge.\n\n__Default value:__ `false`"
|
|
33780
|
+
},
|
|
33781
|
+
"stem": {
|
|
33782
|
+
"anyOf": [
|
|
33783
|
+
{
|
|
33784
|
+
"type": "boolean"
|
|
33785
|
+
},
|
|
33786
|
+
{
|
|
33787
|
+
"$ref": "#/definitions/ExprRef"
|
|
33788
|
+
}
|
|
33789
|
+
],
|
|
33790
|
+
"description": "Whether to draw the arrow stem. When `false`, the resolved `size` still controls open-head thickness. `minStemLength` has no effect when the stem is hidden.\n\n__Default value:__ `true`"
|
|
33791
|
+
},
|
|
31826
33792
|
"stroke": {
|
|
31827
33793
|
"anyOf": [
|
|
31828
33794
|
{
|
|
@@ -33819,8 +35785,27 @@
|
|
|
33819
35785
|
}
|
|
33820
35786
|
]
|
|
33821
35787
|
},
|
|
35788
|
+
"TooltipDef": {
|
|
35789
|
+
"anyOf": [
|
|
35790
|
+
{
|
|
35791
|
+
"$ref": "#/definitions/TextDef"
|
|
35792
|
+
},
|
|
35793
|
+
{
|
|
35794
|
+
"items": {
|
|
35795
|
+
"$ref": "#/definitions/TextDef"
|
|
35796
|
+
},
|
|
35797
|
+
"type": "array"
|
|
35798
|
+
},
|
|
35799
|
+
{
|
|
35800
|
+
"type": "null"
|
|
35801
|
+
}
|
|
35802
|
+
]
|
|
35803
|
+
},
|
|
33822
35804
|
"TransformParams": {
|
|
33823
35805
|
"anyOf": [
|
|
35806
|
+
{
|
|
35807
|
+
"$ref": "#/definitions/AlignmentMismatchesParams"
|
|
35808
|
+
},
|
|
33824
35809
|
{
|
|
33825
35810
|
"$ref": "#/definitions/AggregateParams"
|
|
33826
35811
|
},
|
|
@@ -33830,12 +35815,18 @@
|
|
|
33830
35815
|
{
|
|
33831
35816
|
"$ref": "#/definitions/CoverageParams"
|
|
33832
35817
|
},
|
|
35818
|
+
{
|
|
35819
|
+
"$ref": "#/definitions/CoordinateLookupParams"
|
|
35820
|
+
},
|
|
33833
35821
|
{
|
|
33834
35822
|
"$ref": "#/definitions/FlattenDelimitedParams"
|
|
33835
35823
|
},
|
|
33836
35824
|
{
|
|
33837
35825
|
"$ref": "#/definitions/FormulaParams"
|
|
33838
35826
|
},
|
|
35827
|
+
{
|
|
35828
|
+
"$ref": "#/definitions/LookupParams"
|
|
35829
|
+
},
|
|
33839
35830
|
{
|
|
33840
35831
|
"$ref": "#/definitions/FilterParams"
|
|
33841
35832
|
},
|
|
@@ -33848,6 +35839,9 @@
|
|
|
33848
35839
|
{
|
|
33849
35840
|
"$ref": "#/definitions/FlattenCompressedExonsParams"
|
|
33850
35841
|
},
|
|
35842
|
+
{
|
|
35843
|
+
"$ref": "#/definitions/FlattenCigarParams"
|
|
35844
|
+
},
|
|
33851
35845
|
{
|
|
33852
35846
|
"$ref": "#/definitions/FlattenSequenceParams"
|
|
33853
35847
|
},
|
|
@@ -33886,9 +35880,82 @@
|
|
|
33886
35880
|
},
|
|
33887
35881
|
{
|
|
33888
35882
|
"$ref": "#/definitions/StackParams"
|
|
35883
|
+
},
|
|
35884
|
+
{
|
|
35885
|
+
"$ref": "#/definitions/WindowParams"
|
|
33889
35886
|
}
|
|
33890
35887
|
]
|
|
33891
35888
|
},
|
|
35889
|
+
"TransitionedMultiscaleStops": {
|
|
35890
|
+
"additionalProperties": false,
|
|
35891
|
+
"properties": {
|
|
35892
|
+
"channel": {
|
|
35893
|
+
"$ref": "#/definitions/PrimaryPositionalChannel",
|
|
35894
|
+
"description": "Positional channel that controls the stop metric."
|
|
35895
|
+
},
|
|
35896
|
+
"metric": {
|
|
35897
|
+
"const": "unitsPerPixel",
|
|
35898
|
+
"description": "The metric used to evaluate zoom stops.\n\n__Default value:__ `\"unitsPerPixel\"`",
|
|
35899
|
+
"type": "string"
|
|
35900
|
+
},
|
|
35901
|
+
"transition": {
|
|
35902
|
+
"$ref": "#/definitions/ParamTransition",
|
|
35903
|
+
"description": "Cross-fades stages in time after a stop selects a new detail level. The selected stage settles fully visible and all other stages settle hidden. This differs from `fade`, which keeps adjacent stages partly visible within a zoom range.\n\nTransitioned stops require `channel` to be either `\"x\"` or `\"y\"` and cannot be combined with `fade`."
|
|
35904
|
+
},
|
|
35905
|
+
"values": {
|
|
35906
|
+
"description": "Stop values in descending order.",
|
|
35907
|
+
"items": {
|
|
35908
|
+
"$ref": "#/definitions/NumericStopDef"
|
|
35909
|
+
},
|
|
35910
|
+
"type": "array"
|
|
35911
|
+
}
|
|
35912
|
+
},
|
|
35913
|
+
"required": [
|
|
35914
|
+
"channel",
|
|
35915
|
+
"transition",
|
|
35916
|
+
"values"
|
|
35917
|
+
],
|
|
35918
|
+
"type": "object"
|
|
35919
|
+
},
|
|
35920
|
+
"TransitionedValueParameter": {
|
|
35921
|
+
"additionalProperties": false,
|
|
35922
|
+
"properties": {
|
|
35923
|
+
"bind": {
|
|
35924
|
+
"$ref": "#/definitions/Binding",
|
|
35925
|
+
"description": "Binds the parameter to an external input element such as a slider, selection list or radio button group."
|
|
35926
|
+
},
|
|
35927
|
+
"description": {
|
|
35928
|
+
"description": "A description of the parameter. Can be used for documentation and to explain the meaning of the control or selection.",
|
|
35929
|
+
"type": "string"
|
|
35930
|
+
},
|
|
35931
|
+
"name": {
|
|
35932
|
+
"description": "A unique name for the variable parameter. Parameter names should be valid JavaScript identifiers: they should contain only alphanumeric characters (or \"$\", or \"_\") and may not start with a digit. Reserved keywords that may not be used as parameter names are: \"datum\".",
|
|
35933
|
+
"type": "string"
|
|
35934
|
+
},
|
|
35935
|
+
"persist": {
|
|
35936
|
+
"description": "Whether the parameter should be persisted in bookmarks and provenance.\n\nThis primarily affects GenomeSpy App behavior. Set to `false` for ephemeral params (e.g., hover selections) or when the selection cannot be persisted due to missing `encoding.key`.\n\n__Default value:__ `true`",
|
|
35937
|
+
"type": "boolean"
|
|
35938
|
+
},
|
|
35939
|
+
"push": {
|
|
35940
|
+
"const": "outer",
|
|
35941
|
+
"type": "string"
|
|
35942
|
+
},
|
|
35943
|
+
"transition": {
|
|
35944
|
+
"$ref": "#/definitions/ParamTransition",
|
|
35945
|
+
"description": "Smoothly follows numeric target values."
|
|
35946
|
+
},
|
|
35947
|
+
"value": {
|
|
35948
|
+
"description": "The finite numeric initial target value of the transitioned parameter.",
|
|
35949
|
+
"type": "number"
|
|
35950
|
+
}
|
|
35951
|
+
},
|
|
35952
|
+
"required": [
|
|
35953
|
+
"name",
|
|
35954
|
+
"transition",
|
|
35955
|
+
"value"
|
|
35956
|
+
],
|
|
35957
|
+
"type": "object"
|
|
35958
|
+
},
|
|
33892
35959
|
"TruncateTextParams": {
|
|
33893
35960
|
"additionalProperties": false,
|
|
33894
35961
|
"properties": {
|
|
@@ -34121,6 +36188,37 @@
|
|
|
34121
36188
|
],
|
|
34122
36189
|
"type": "object"
|
|
34123
36190
|
},
|
|
36191
|
+
"ValueDef<ArrowDirection>": {
|
|
36192
|
+
"additionalProperties": false,
|
|
36193
|
+
"properties": {
|
|
36194
|
+
"description": {
|
|
36195
|
+
"description": "A description of the encoded value. Can be used for documentation and to explain the meaning of the channel mapping.",
|
|
36196
|
+
"type": "string"
|
|
36197
|
+
},
|
|
36198
|
+
"title": {
|
|
36199
|
+
"description": "A title for the field. If `null`, the title will be removed.",
|
|
36200
|
+
"type": [
|
|
36201
|
+
"string",
|
|
36202
|
+
"null"
|
|
36203
|
+
]
|
|
36204
|
+
},
|
|
36205
|
+
"value": {
|
|
36206
|
+
"anyOf": [
|
|
36207
|
+
{
|
|
36208
|
+
"$ref": "#/definitions/ArrowDirection"
|
|
36209
|
+
},
|
|
36210
|
+
{
|
|
36211
|
+
"$ref": "#/definitions/ExprRef"
|
|
36212
|
+
}
|
|
36213
|
+
],
|
|
36214
|
+
"description": "A constant value in visual domain (e.g., `\"red\"` / `\"#0099ff\"`, values between `0` to `1` for opacity)."
|
|
36215
|
+
}
|
|
36216
|
+
},
|
|
36217
|
+
"required": [
|
|
36218
|
+
"value"
|
|
36219
|
+
],
|
|
36220
|
+
"type": "object"
|
|
36221
|
+
},
|
|
34124
36222
|
"ValueDef<number>": {
|
|
34125
36223
|
"additionalProperties": false,
|
|
34126
36224
|
"properties": {
|
|
@@ -34345,41 +36443,25 @@
|
|
|
34345
36443
|
},
|
|
34346
36444
|
"type": "object"
|
|
34347
36445
|
},
|
|
34348
|
-
"
|
|
34349
|
-
"
|
|
34350
|
-
|
|
34351
|
-
|
|
34352
|
-
"$ref": "#/definitions/Binding",
|
|
34353
|
-
"description": "Binds the parameter to an external input element such as a slider, selection list or radio button group."
|
|
34354
|
-
},
|
|
34355
|
-
"description": {
|
|
34356
|
-
"description": "A description of the parameter. Can be used for documentation and to explain the meaning of the control or selection.",
|
|
34357
|
-
"type": "string"
|
|
34358
|
-
},
|
|
34359
|
-
"expr": {
|
|
34360
|
-
"description": "An expression for the value of the parameter. This expression may include other parameters, in which case the parameter will automatically update in response to upstream parameter changes.",
|
|
34361
|
-
"type": "string"
|
|
34362
|
-
},
|
|
34363
|
-
"name": {
|
|
34364
|
-
"description": "A unique name for the variable parameter. Parameter names should be valid JavaScript identifiers: they should contain only alphanumeric characters (or \"$\", or \"_\") and may not start with a digit. Reserved keywords that may not be used as parameter names are: \"datum\".",
|
|
34365
|
-
"type": "string"
|
|
34366
|
-
},
|
|
34367
|
-
"persist": {
|
|
34368
|
-
"description": "Whether the parameter should be persisted in bookmarks and provenance.\n\nThis primarily affects GenomeSpy App behavior. Set to `false` for ephemeral params (e.g., hover selections) or when the selection cannot be persisted due to missing `encoding.key`.\n\n__Default value:__ `true`",
|
|
34369
|
-
"type": "boolean"
|
|
36446
|
+
"ValueParameter": {
|
|
36447
|
+
"anyOf": [
|
|
36448
|
+
{
|
|
36449
|
+
"$ref": "#/definitions/PlainValueParameter"
|
|
34370
36450
|
},
|
|
34371
|
-
|
|
34372
|
-
"
|
|
34373
|
-
|
|
36451
|
+
{
|
|
36452
|
+
"$ref": "#/definitions/TransitionedValueParameter"
|
|
36453
|
+
}
|
|
36454
|
+
]
|
|
36455
|
+
},
|
|
36456
|
+
"VariableParameter": {
|
|
36457
|
+
"anyOf": [
|
|
36458
|
+
{
|
|
36459
|
+
"$ref": "#/definitions/ValueParameter"
|
|
34374
36460
|
},
|
|
34375
|
-
|
|
34376
|
-
"
|
|
36461
|
+
{
|
|
36462
|
+
"$ref": "#/definitions/ExprParameter"
|
|
34377
36463
|
}
|
|
34378
|
-
|
|
34379
|
-
"required": [
|
|
34380
|
-
"name"
|
|
34381
|
-
],
|
|
34382
|
-
"type": "object"
|
|
36464
|
+
]
|
|
34383
36465
|
},
|
|
34384
36466
|
"VcfData": {
|
|
34385
36467
|
"additionalProperties": false,
|
|
@@ -34448,6 +36530,31 @@
|
|
|
34448
36530
|
],
|
|
34449
36531
|
"type": "object"
|
|
34450
36532
|
},
|
|
36533
|
+
"VcfDataFormat": {
|
|
36534
|
+
"additionalProperties": false,
|
|
36535
|
+
"properties": {
|
|
36536
|
+
"parse": {
|
|
36537
|
+
"anyOf": [
|
|
36538
|
+
{
|
|
36539
|
+
"$ref": "#/definitions/Parse"
|
|
36540
|
+
},
|
|
36541
|
+
{
|
|
36542
|
+
"type": "null"
|
|
36543
|
+
}
|
|
36544
|
+
],
|
|
36545
|
+
"description": "If set to `null`, disable type inference based on the spec and only use type inference based on the data. Alternatively, a parsing directive object can be provided for explicit data types. Each property of the object corresponds to a field name, and the value to the desired data type (one of `\"number\"`, `\"boolean\"`, `\"date\"`, or null (do not parse the field)). For example, `\"parse\": {\"modified_on\": \"date\"}` parses the `modified_on` field in each input record a Date value.\n\nFor `\"date\"`, we parse data based using Javascript's [`Date.parse()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse). For Specific date formats can be provided (e.g., `{foo: \"date:'%m%d%Y'\"}`), using the [d3-time-format syntax](https://github.com/d3/d3-time-format#locale_format). UTC date format parsing is supported similarly (e.g., `{foo: \"utc:'%m%d%Y'\"}`). See more about [UTC time](https://vega.github.io/vega-lite/docs/timeunit.html#utc)"
|
|
36546
|
+
},
|
|
36547
|
+
"type": {
|
|
36548
|
+
"const": "vcf",
|
|
36549
|
+
"description": "Parses Variant Call Format records and materializes sample columns in the `SAMPLES` object.",
|
|
36550
|
+
"type": "string"
|
|
36551
|
+
}
|
|
36552
|
+
},
|
|
36553
|
+
"required": [
|
|
36554
|
+
"type"
|
|
36555
|
+
],
|
|
36556
|
+
"type": "object"
|
|
36557
|
+
},
|
|
34451
36558
|
"ViewBackground": {
|
|
34452
36559
|
"additionalProperties": false,
|
|
34453
36560
|
"properties": {
|
|
@@ -34648,8 +36755,15 @@
|
|
|
34648
36755
|
"description": "The opacity of the drop shadow. Value between `0` (fully transparent) and `1` (fully opaque).\n\n**Default value:** `0` (disabled)"
|
|
34649
36756
|
},
|
|
34650
36757
|
"step": {
|
|
34651
|
-
"
|
|
34652
|
-
|
|
36758
|
+
"anyOf": [
|
|
36759
|
+
{
|
|
36760
|
+
"type": "number"
|
|
36761
|
+
},
|
|
36762
|
+
{
|
|
36763
|
+
"$ref": "#/definitions/ExprRef"
|
|
36764
|
+
}
|
|
36765
|
+
],
|
|
36766
|
+
"description": "Default step size for discrete view sizes.\n\n__Default value:__ none"
|
|
34653
36767
|
},
|
|
34654
36768
|
"stroke": {
|
|
34655
36769
|
"description": "Stroke color of the view background.",
|
|
@@ -34687,6 +36801,123 @@
|
|
|
34687
36801
|
}
|
|
34688
36802
|
]
|
|
34689
36803
|
},
|
|
36804
|
+
"WindowOnlyOp": {
|
|
36805
|
+
"description": "Operations that calculate a value from rows in the current window.",
|
|
36806
|
+
"enum": [
|
|
36807
|
+
"row_number",
|
|
36808
|
+
"rank",
|
|
36809
|
+
"dense_rank",
|
|
36810
|
+
"percent_rank",
|
|
36811
|
+
"cume_dist",
|
|
36812
|
+
"ntile",
|
|
36813
|
+
"lag",
|
|
36814
|
+
"lead",
|
|
36815
|
+
"first_value",
|
|
36816
|
+
"last_value",
|
|
36817
|
+
"nth_value",
|
|
36818
|
+
"prev_value",
|
|
36819
|
+
"next_value"
|
|
36820
|
+
],
|
|
36821
|
+
"type": "string"
|
|
36822
|
+
},
|
|
36823
|
+
"WindowOp": {
|
|
36824
|
+
"anyOf": [
|
|
36825
|
+
{
|
|
36826
|
+
"$ref": "#/definitions/WindowOnlyOp"
|
|
36827
|
+
},
|
|
36828
|
+
{
|
|
36829
|
+
"$ref": "#/definitions/AggregateOp"
|
|
36830
|
+
}
|
|
36831
|
+
]
|
|
36832
|
+
},
|
|
36833
|
+
"WindowParams": {
|
|
36834
|
+
"additionalProperties": false,
|
|
36835
|
+
"description": "Computes window functions over partitions of the input data. Results are written to each input row while preserving the input row order.",
|
|
36836
|
+
"properties": {
|
|
36837
|
+
"as": {
|
|
36838
|
+
"description": "Output field names. A missing or `null` entry uses the operation and field name joined with an underscore, such as `sum_score`. Operations without a field use only the operation name, such as `rank`.",
|
|
36839
|
+
"items": {
|
|
36840
|
+
"type": [
|
|
36841
|
+
"string",
|
|
36842
|
+
"null"
|
|
36843
|
+
]
|
|
36844
|
+
},
|
|
36845
|
+
"type": "array"
|
|
36846
|
+
},
|
|
36847
|
+
"description": {
|
|
36848
|
+
"description": "A description of the transform step. Can be used for documentation and agent context.",
|
|
36849
|
+
"type": "string"
|
|
36850
|
+
},
|
|
36851
|
+
"fields": {
|
|
36852
|
+
"description": "Input fields for operations that use a field. Use `null` for operations such as `rank` and `count` that do not use one.",
|
|
36853
|
+
"items": {
|
|
36854
|
+
"anyOf": [
|
|
36855
|
+
{
|
|
36856
|
+
"$ref": "#/definitions/Field"
|
|
36857
|
+
},
|
|
36858
|
+
{
|
|
36859
|
+
"type": "null"
|
|
36860
|
+
}
|
|
36861
|
+
]
|
|
36862
|
+
},
|
|
36863
|
+
"type": "array"
|
|
36864
|
+
},
|
|
36865
|
+
"frame": {
|
|
36866
|
+
"description": "Inclusive offsets from the current sorted row that define the window. `null` leaves the corresponding side unbounded.\n\n__Default value:__ `[null, 0]`",
|
|
36867
|
+
"items": {
|
|
36868
|
+
"type": [
|
|
36869
|
+
"number",
|
|
36870
|
+
"null"
|
|
36871
|
+
]
|
|
36872
|
+
},
|
|
36873
|
+
"maxItems": 2,
|
|
36874
|
+
"minItems": 2,
|
|
36875
|
+
"type": "array"
|
|
36876
|
+
},
|
|
36877
|
+
"groupby": {
|
|
36878
|
+
"description": "Fields that divide the input into independent window partitions.",
|
|
36879
|
+
"items": {
|
|
36880
|
+
"$ref": "#/definitions/Field"
|
|
36881
|
+
},
|
|
36882
|
+
"type": "array"
|
|
36883
|
+
},
|
|
36884
|
+
"ignorePeers": {
|
|
36885
|
+
"description": "Use row offsets without expanding frame boundaries to include sorted rows with equal values.\n\n__Default value:__ `false`",
|
|
36886
|
+
"type": "boolean"
|
|
36887
|
+
},
|
|
36888
|
+
"ops": {
|
|
36889
|
+
"description": "Window and aggregate operations to calculate. Entries align with `fields`, `params`, and `as`.",
|
|
36890
|
+
"items": {
|
|
36891
|
+
"$ref": "#/definitions/WindowOp"
|
|
36892
|
+
},
|
|
36893
|
+
"type": "array"
|
|
36894
|
+
},
|
|
36895
|
+
"params": {
|
|
36896
|
+
"description": "Optional operation parameters. `lag` and `lead` use an offset, while `ntile` and `nth_value` use a positive integer.",
|
|
36897
|
+
"items": {
|
|
36898
|
+
"type": [
|
|
36899
|
+
"number",
|
|
36900
|
+
"null"
|
|
36901
|
+
]
|
|
36902
|
+
},
|
|
36903
|
+
"type": "array"
|
|
36904
|
+
},
|
|
36905
|
+
"sort": {
|
|
36906
|
+
"$ref": "#/definitions/CompareParams",
|
|
36907
|
+
"description": "Fields used to sort rows before window functions are calculated. Without sorting, rows retain their input order and no rows are peers."
|
|
36908
|
+
},
|
|
36909
|
+
"type": {
|
|
36910
|
+
"const": "window",
|
|
36911
|
+
"description": "The type of the transform to be applied",
|
|
36912
|
+
"type": "string"
|
|
36913
|
+
}
|
|
36914
|
+
},
|
|
36915
|
+
"required": [
|
|
36916
|
+
"ops",
|
|
36917
|
+
"type"
|
|
36918
|
+
],
|
|
36919
|
+
"type": "object"
|
|
36920
|
+
},
|
|
34690
36921
|
"ZarrBackendDef": {
|
|
34691
36922
|
"additionalProperties": false,
|
|
34692
36923
|
"properties": {
|
|
@@ -34744,9 +36975,17 @@
|
|
|
34744
36975
|
},
|
|
34745
36976
|
{
|
|
34746
36977
|
"$ref": "#/definitions/ComplexDomain"
|
|
36978
|
+
},
|
|
36979
|
+
{
|
|
36980
|
+
"const": "data",
|
|
36981
|
+
"type": "string"
|
|
36982
|
+
},
|
|
36983
|
+
{
|
|
36984
|
+
"const": "unbounded",
|
|
36985
|
+
"type": "string"
|
|
34747
36986
|
}
|
|
34748
36987
|
],
|
|
34749
|
-
"description": "The boundaries that limit
|
|
36988
|
+
"description": "The boundaries that limit zoom and pan interactions.\n\nA domain array sets explicit boundaries. `\"data\"` derives the boundaries from the data that contributes to the scale domain. For index and quantitative scales, `\"unbounded\"` allows zooming and panning without fixed boundaries. Locus scales do not support unbounded zoom.\n\nWith an unbounded extent, the initial scale domain is used as the reference for the `zoomLevel` expression parameter.\n\n__Default value:__ The initial scale domain, except the whole genome for locus scales."
|
|
34750
36989
|
}
|
|
34751
36990
|
},
|
|
34752
36991
|
"type": "object"
|