@sjcrh/proteinpaint-types 2.112.1-0 → 2.114.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.
Files changed (32) hide show
  1. package/dist/brainImaging.js +1 -1
  2. package/dist/{chunk-FMW25T52.js → chunk-66XSFQPI.js} +282 -182
  3. package/dist/{chunk-ES6BRZ4L.js → chunk-7AQB3YHO.js} +15 -11
  4. package/dist/{chunk-A72XYNKT.js → chunk-BEXUBE5A.js} +15 -11
  5. package/dist/{chunk-TXZQ56TX.js → chunk-BNOGQYXG.js} +421 -251
  6. package/dist/{chunk-7Z3AE4AY.js → chunk-H45GALYV.js} +445 -345
  7. package/dist/{chunk-4CCAF4O5.js → chunk-JNEIQWTE.js} +44 -36
  8. package/dist/{chunk-KHPBBU43.js → chunk-KRHYG2ZZ.js} +610 -580
  9. package/dist/{chunk-NPVDG36X.js → chunk-OSHG443J.js} +401 -371
  10. package/dist/{chunk-GHAIGRB7.js → chunk-PR7XHL4T.js} +15 -11
  11. package/dist/{chunk-ZFUF4XMD.js → chunk-T3NOHXOJ.js} +15 -11
  12. package/dist/{chunk-2WZPM25H.js → chunk-WVBWDL2B.js} +445 -345
  13. package/dist/{chunk-GGKNEHME.js → chunk-XDRUNGOV.js} +192 -162
  14. package/dist/correlationVolcano.js +1 -1
  15. package/dist/index.js +12 -12
  16. package/dist/termdb.boxplot.js +1 -1
  17. package/dist/termdb.categories.js +1 -1
  18. package/dist/termdb.cluster.js +1 -1
  19. package/dist/termdb.descrstats.js +1 -1
  20. package/dist/termdb.numericcategories.js +1 -1
  21. package/dist/termdb.percentile.js +1 -1
  22. package/dist/termdb.termsbyids.js +1 -1
  23. package/dist/termdb.topTermsByType.js +1 -1
  24. package/dist/termdb.topVariablyExpressedGenes.js +1 -1
  25. package/dist/termdb.violin.js +1 -1
  26. package/package.json +1 -1
  27. package/src/dataset.ts +31 -15
  28. package/src/routes/termdb.DE.ts +4 -0
  29. package/src/routes/termdb.cluster.ts +7 -2
  30. package/src/terms/geneVariant.ts +23 -2
  31. package/src/terms/term.ts +16 -8
  32. package/src/termsetting.ts +3 -3
@@ -3,64 +3,88 @@ import {
3
3
  require_lib
4
4
  } from "./chunk-CNSSF43V.js";
5
5
 
6
- // dist/termdb.descrstats.ts
6
+ // dist/termdb.termsbyids.ts
7
7
  var import_typia = __toESM(require_lib(), 1);
8
8
 
9
- // src/routes/termdb.descrstats.ts
10
- var descrStatsPayload = {
9
+ // src/routes/termdb.termsbyids.ts
10
+ var termsByIdsPayload = {
11
11
  request: {
12
- typeId: "DescrStatsRequest"
12
+ typeId: "TermsByIdsRequest"
13
13
  },
14
14
  response: {
15
- typeId: "DescrStatsResponse"
16
- },
17
- examples: [
18
- {
19
- request: {
20
- body: {
21
- genome: "hg38-test",
22
- dslabel: "TermdbTest",
23
- embedder: "localhost",
24
- tw: { term: { id: "hrtavg" }, q: { mode: "continuous" } },
25
- filter: {
26
- type: "tvslst",
27
- in: true,
28
- join: "",
29
- lst: [
30
- {
31
- tag: "cohortFilter",
32
- type: "tvs",
33
- tvs: {
34
- term: {
35
- name: "Cohort",
36
- type: "categorical",
37
- values: { ABC: { label: "ABC" }, XYZ: { label: "XYZ" } },
38
- id: "subcohort",
39
- isleaf: false,
40
- groupsetting: { disabled: true }
41
- },
42
- values: [{ key: "ABC", label: "ABC" }]
43
- }
44
- }
45
- ]
46
- }
47
- }
48
- },
49
- response: {
50
- header: { status: 200 }
51
- }
52
- }
53
- ]
15
+ typeId: "TermsByIdsResponse"
16
+ }
17
+ // examples: []
54
18
  };
55
19
 
56
- // dist/termdb.descrstats.ts
57
- var validDescrStatsRequest = (input) => {
20
+ // dist/termdb.termsbyids.ts
21
+ var validTermsByIdsRequest = (input) => {
22
+ const errors = [];
23
+ const __is = (input2) => {
24
+ const $io0 = (input3) => "string" === typeof input3.genome && "string" === typeof input3.dslabel && "string" === typeof input3.embedder && (Array.isArray(input3.ids) && input3.ids.every((elem) => "string" === typeof elem));
25
+ return "object" === typeof input2 && null !== input2 && $io0(input2);
26
+ };
27
+ if (false === __is(input)) {
28
+ const $report = import_typia.createValidate.report(errors);
29
+ ((input2, _path, _exceptionable = true) => {
30
+ const $vo0 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.genome || $report(_exceptionable2, {
31
+ path: _path2 + ".genome",
32
+ expected: "string",
33
+ value: input3.genome
34
+ }), "string" === typeof input3.dslabel || $report(_exceptionable2, {
35
+ path: _path2 + ".dslabel",
36
+ expected: "string",
37
+ value: input3.dslabel
38
+ }), "string" === typeof input3.embedder || $report(_exceptionable2, {
39
+ path: _path2 + ".embedder",
40
+ expected: "string",
41
+ value: input3.embedder
42
+ }), (Array.isArray(input3.ids) || $report(_exceptionable2, {
43
+ path: _path2 + ".ids",
44
+ expected: "Array<string>",
45
+ value: input3.ids
46
+ })) && input3.ids.map((elem, _index1) => "string" === typeof elem || $report(_exceptionable2, {
47
+ path: _path2 + ".ids[" + _index1 + "]",
48
+ expected: "string",
49
+ value: elem
50
+ })).every((flag) => flag) || $report(_exceptionable2, {
51
+ path: _path2 + ".ids",
52
+ expected: "Array<string>",
53
+ value: input3.ids
54
+ })].every((flag) => flag);
55
+ return ("object" === typeof input2 && null !== input2 || $report(true, {
56
+ path: _path + "",
57
+ expected: "TermsByIdsRequest",
58
+ value: input2
59
+ })) && $vo0(input2, _path + "", true) || $report(true, {
60
+ path: _path + "",
61
+ expected: "TermsByIdsRequest",
62
+ value: input2
63
+ });
64
+ })(input, "$input", true);
65
+ }
66
+ const success = 0 === errors.length;
67
+ return {
68
+ success,
69
+ errors,
70
+ data: success ? input : void 0
71
+ };
72
+ };
73
+ var validTermsByIdsResponse = (input) => {
58
74
  const errors = [];
59
75
  const __is = (input2) => {
60
76
  const $join = import_typia.createValidate.join;
61
- const $io0 = (input3) => "string" === typeof input3.genome && "string" === typeof input3.dslabel && "string" === typeof input3.embedder && ("object" === typeof input3.tw && null !== input3.tw && $iu6(input3.tw)) && (void 0 === input3.logScale || "boolean" === typeof input3.logScale) && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io11(input3.filter)) && true;
62
- const $io1 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io2(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("CatTWValues" === input3.type || "CatTWPredefinedGS" === input3.type || "CatTWCustomGS" === input3.type) && ("object" === typeof input3.q && null !== input3.q && $iu7(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io13(input3.term));
63
- const $io2 = (input3) => Object.keys(input3).every((key) => {
77
+ const $io0 = (input3) => "object" === typeof input3.terms && null !== input3.terms && false === Array.isArray(input3.terms) && $io1(input3.terms);
78
+ const $io1 = (input3) => Object.keys(input3).every((key) => {
79
+ const value = input3[key];
80
+ if (void 0 === value)
81
+ return true;
82
+ if (RegExp(/(.*)/).test(key))
83
+ return "object" === typeof value && null !== value && $iu6(value);
84
+ return true;
85
+ });
86
+ const $io2 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io3(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("CatTWValues" === input3.type || "CatTWPredefinedGS" === input3.type || "CatTWCustomGS" === input3.type) && ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) && $iu7(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io15(input3.term));
87
+ const $io3 = (input3) => Object.keys(input3).every((key) => {
64
88
  const value = input3[key];
65
89
  if (void 0 === value)
66
90
  return true;
@@ -68,8 +92,8 @@ var validDescrStatsRequest = (input) => {
68
92
  return true;
69
93
  return true;
70
94
  });
71
- const $io3 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "values" === input3.type;
72
- const $io4 = (input3) => Object.keys(input3).every((key) => {
95
+ const $io4 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "values" === input3.type;
96
+ const $io5 = (input3) => Object.keys(input3).every((key) => {
73
97
  const value = input3[key];
74
98
  if (void 0 === value)
75
99
  return true;
@@ -77,273 +101,279 @@ var validDescrStatsRequest = (input) => {
77
101
  return "number" === typeof value;
78
102
  return true;
79
103
  });
80
- const $io5 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "predefined-groupset" === input3.type && "number" === typeof input3.predefined_groupset_idx;
81
- const $io6 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "custom-groupset" === input3.type && ("object" === typeof input3.customset && null !== input3.customset && $io7(input3.customset));
82
- const $io7 = (input3) => Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem));
83
- const $io8 = (input3) => "string" === typeof input3.name && "string" === typeof input3.type && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io9(elem))) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
84
- const $io9 = (input3) => ("string" === typeof input3.key || "number" === typeof input3.key) && "string" === typeof input3.label;
85
- const $io10 = (input3) => "string" === typeof input3.name && "filter" === input3.type && ("object" === typeof input3.filter && null !== input3.filter && $io11(input3.filter));
86
- const $io11 = (input3) => "lst" === input3.type && (void 0 === input3["in"] || "boolean" === typeof input3["in"]) && ("and" === input3.join || "or" === input3.join) && (void 0 === input3.tag || "string" === typeof input3.tag) && (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $iu1(elem)));
87
- const $io12 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io13(input3.term)) && (void 0 === input3.groupset_label || "string" === typeof input3.groupset_label) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && $io15(elem)));
88
- const $io13 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "categorical" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu8(input3.groupsetting));
89
- const $io14 = (input3) => Object.keys(input3).every((key) => {
104
+ const $io6 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "filter" === input3.type);
105
+ const $io7 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "predefined-groupset" === input3.type && "number" === typeof input3.predefined_groupset_idx;
106
+ const $io8 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "custom-groupset" === input3.type && ("object" === typeof input3.customset && null !== input3.customset && $io9(input3.customset));
107
+ const $io9 = (input3) => Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem));
108
+ const $io10 = (input3) => "string" === typeof input3.name && "string" === typeof input3.type && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io11(elem))) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
109
+ const $io11 = (input3) => ("string" === typeof input3.key || "number" === typeof input3.key) && "string" === typeof input3.label;
110
+ const $io12 = (input3) => "string" === typeof input3.name && "filter" === input3.type && ("object" === typeof input3.filter && null !== input3.filter && $io13(input3.filter)) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
111
+ const $io13 = (input3) => "lst" === input3.type && (void 0 === input3["in"] || "boolean" === typeof input3["in"]) && ("and" === input3.join || "or" === input3.join) && (void 0 === input3.tag || "string" === typeof input3.tag) && (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $iu1(elem)));
112
+ const $io14 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io15(input3.term)) && (void 0 === input3.groupset_label || "string" === typeof input3.groupset_label) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && $io17(elem)));
113
+ const $io15 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "categorical" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu8(input3.groupsetting));
114
+ const $io16 = (input3) => Object.keys(input3).every((key) => {
90
115
  const value = input3[key];
91
116
  if (void 0 === value)
92
117
  return true;
93
118
  if (RegExp(/(.*)/).test(key))
94
- return "object" === typeof value && null !== value && false === Array.isArray(value) && $io15(value);
119
+ return "object" === typeof value && null !== value && false === Array.isArray(value) && $io17(value);
95
120
  if (RegExp(/^[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(key))
96
- return "object" === typeof value && null !== value && false === Array.isArray(value) && $io15(value);
121
+ return "object" === typeof value && null !== value && false === Array.isArray(value) && $io17(value);
97
122
  return true;
98
123
  });
99
- const $io15 = (input3) => (void 0 === input3.key || "string" === typeof input3.key) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable) && (void 0 === input3.label || "string" === typeof input3.label || "number" === typeof input3.label) && (void 0 === input3.order || "string" === typeof input3.order) && (void 0 === input3.color || "string" === typeof input3.color) && (void 0 === input3.group || "number" === typeof input3.group) && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io11(input3.filter));
100
- const $io16 = (input3) => (void 0 === input3.disabled || "boolean" === typeof input3.disabled) && (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $io17(elem)));
101
- const $io17 = (input3) => "string" === typeof input3.name && (void 0 === input3.is_grade || "boolean" === typeof input3.is_grade) && (void 0 === input3.is_subcondition || "boolean" === typeof input3.is_subcondition) && (Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem)));
102
- const $io18 = (input3) => "boolean" === typeof input3.disabled && (void 0 === input3.lst || Array.isArray(input3.lst) && input3.lst.length === 0);
103
- const $io19 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io20(input3.term)) && (Array.isArray(input3.ranges) && input3.ranges.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io28(elem)));
104
- const $io20 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && ("object" === typeof input3.bins && null !== input3.bins && $io21(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io27(input3.continuousColorScale));
105
- const $io21 = (input3) => "object" === typeof input3["default"] && null !== input3["default"] && $iu9(input3["default"]) && ("object" === typeof input3.less && null !== input3.less && $iu9(input3.less)) && (void 0 === input3.label_offset || "number" === typeof input3.label_offset) && (void 0 === input3.label_offset_ignored || "boolean" === typeof input3.label_offset_ignored) && (void 0 === input3.rounding || "string" === typeof input3.rounding) && (void 0 === input3.min || "number" === typeof input3.min) && (void 0 === input3.max || "number" === typeof input3.max);
106
- const $io22 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "regular-bin" === input3.type && (void 0 === input3.mode || "discrete" === input3.mode) && "number" === typeof input3.bin_size && ("object" === typeof input3.first_bin && null !== input3.first_bin && $iu4(input3.first_bin)) && (void 0 === input3.last_bin || "object" === typeof input3.last_bin && null !== input3.last_bin && $iu5(input3.last_bin)) && (void 0 === input3.label_offset || "number" === typeof input3.label_offset);
107
- const $io23 = (input3) => true === input3.startunbounded && (void 0 === input3.startinclusive || false === input3.startinclusive) && "number" === typeof input3.stop && (void 0 === input3.stopinclusive || "boolean" === typeof input3.stopinclusive) && (void 0 === input3.stopunbounded || false === input3.stopunbounded) && (void 0 === input3.label || "string" === typeof input3.label);
108
- const $io24 = (input3) => (void 0 === input3.startunbounded || false === input3.startunbounded) && (void 0 === input3.startinclusive || "boolean" === typeof input3.startinclusive) && "number" === typeof input3.start && "number" === typeof input3.stop && (void 0 === input3.stopinclusive || "boolean" === typeof input3.stopinclusive) && (void 0 === input3.stopunbounded || false === input3.stopunbounded) && (void 0 === input3.label || "string" === typeof input3.label);
109
- const $io25 = (input3) => "number" === typeof input3.start && true === input3.stopunbounded && (void 0 === input3.startinclusive || "boolean" === typeof input3.startinclusive) && (void 0 === input3.startunbounded || false === input3.startunbounded) && (void 0 === input3.stopinclusive || false === input3.stopinclusive) && (void 0 === input3.label || "string" === typeof input3.label);
110
- const $io26 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "custom-bin" === input3.type && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && (Array.isArray(input3.lst) && ("object" === typeof input3.lst[0] && null !== input3.lst[0] && $iu2(input3.lst[0]) && (Array.isArray(input3.lst.slice(1)) && input3.lst.slice(1).every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))))) && (void 0 === input3.preferredBins || "median" === input3.preferredBins);
111
- const $io27 = (input3) => "string" === typeof input3.minColor && "string" === typeof input3.maxColor;
112
- const $io28 = (input3) => "string" === typeof input3.key && "number" === typeof input3.value && true === input3.uncomputable && (void 0 === input3.label || "string" === typeof input3.label);
113
- const $io29 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io30(input3.term)) && (void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade) && (void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent) && (void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade) && (void 0 === input3.grade_and_child || Array.isArray(input3.grade_and_child) && input3.grade_and_child.every((elem) => "object" === typeof elem && null !== elem && $io31(elem)));
114
- const $io30 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "condition" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values));
115
- const $io31 = (input3) => "number" === typeof input3.grade && "string" === typeof input3.grade_label && (void 0 === input3.child_id || "string" === typeof input3.child_id) && "string" === typeof input3.child_label;
116
- const $io32 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $iu3(elem)));
117
- const $io33 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io16(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
118
- const $io34 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io16(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
119
- const $io35 = (input3) => 1 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "M" === elem || "E" === elem || "F" === elem || "N" === elem || "S" === elem || "D" === elem || "I" === elem || "P" === elem || "L" === elem || "Intron" === elem || "Blank" === elem || "WT" === elem || "ITD" === elem || "DEL" === elem || "NLOSS" === elem || "CLOSS" === elem || "Utr3" === elem || "Utr5" === elem || "X" === elem || "noncoding" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "M" === elem || "E" === elem || "F" === elem || "N" === elem || "S" === elem || "D" === elem || "I" === elem || "P" === elem || "L" === elem || "Intron" === elem || "Blank" === elem || "WT" === elem || "ITD" === elem || "DEL" === elem || "NLOSS" === elem || "CLOSS" === elem || "Utr3" === elem || "Utr5" === elem || "X" === elem || "noncoding" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
120
- const $io36 = (input3) => 4 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "CNV_amp" === elem || "CNV_loss" === elem || "CNV_loh" === elem || "CNV_amplification" === elem || "CNV_homozygous_deletion" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "CNV_amp" === elem || "CNV_loss" === elem || "CNV_loh" === elem || "CNV_amplification" === elem || "CNV_homozygous_deletion" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
121
- const $io37 = (input3) => 5 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "SV" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "SV" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
122
- const $io38 = (input3) => 2 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "Fuserna" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "Fuserna" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
123
- const $io39 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io2(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.term && null !== input3.term && $io20(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $iu11(input3.q));
124
- const $io40 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "binary" === input3.mode && "custom-bin" === input3.type && (Array.isArray(input3.lst) && (input3.lst.length === 2 && ("object" === typeof input3.lst[0] && null !== input3.lst[0] && $iu4(input3.lst[0])) && ("object" === typeof input3.lst[1] && null !== input3.lst[1] && $iu5(input3.lst[1]))));
125
- const $io41 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "continuous" === input3.mode && (void 0 === input3.convert2ZScore || "boolean" === typeof input3.convert2ZScore) && (null !== input3.type && void 0 === input3.type);
126
- const $io42 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "spline" === input3.mode && (Array.isArray(input3.knots) && input3.knots.every((elem) => "object" === typeof elem && null !== elem && $io43(elem))) && (null !== input3.type && void 0 === input3.type);
127
- const $io43 = (input3) => "number" === typeof input3.value;
128
- const $io44 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io2(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.q && null !== input3.q && $io45(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io47(input3.term));
129
- const $io45 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "custom-samplelst" === input3.type) && "number" === typeof input3.AFcutoff && "number" === typeof input3.alleleType && "string" === typeof input3.cacheid && true && "number" === typeof input3.geneticModel && true && (void 0 === input3.missingGenotype || "number" === typeof input3.missingGenotype) && "number" === typeof input3.numOfSampleWithAnyValidGT && ("object" === typeof input3.restrictAncestry && null !== input3.restrictAncestry && $io46(input3.restrictAncestry)) && true && true && ("object" === typeof input3.variant_filter && null !== input3.variant_filter && $io11(input3.variant_filter)) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
130
- const $io46 = (input3) => "string" === typeof input3.name && ("object" === typeof input3.tvs && null !== input3.tvs && $iu12(input3.tvs));
131
- const $io47 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io48(elem)));
132
- const $io48 = (input3) => (void 0 === input3.altAlleles || Array.isArray(input3.altAlleles) && input3.altAlleles.every((elem) => "string" === typeof elem)) && (void 0 === input3.alleles || Array.isArray(input3.alleles) && input3.alleles.every((elem) => "object" === typeof elem && null !== elem && $io49(elem))) && "boolean" === typeof input3.effectAllele && (void 0 === input3.gt2count || "object" === typeof input3.gt2count && null !== input3.gt2count && $io50(input3.gt2count)) && (void 0 === input3.invalid || "boolean" === typeof input3.invalid) && (void 0 === input3.referenceAllele || "string" === typeof input3.referenceAllele) && "string" === typeof input3.rsid && "string" === typeof input3.snpid && true && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.pos || "number" === typeof input3.pos);
133
- const $io49 = (input3) => "string" === typeof input3.allele && "number" === typeof input3.count && "boolean" === typeof input3.isRef;
134
- const $io50 = (input3) => "string" === typeof input3.k && ("string" === typeof input3.v || "number" === typeof input3.v);
135
- const $io51 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io2(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.term && null !== input3.term && $iu13(input3.term)) && ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) && $iu14(input3.q));
136
- const $io52 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "categorical" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu8(input3.groupsetting));
137
- const $io53 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && ("object" === typeof input3.bins && null !== input3.bins && $io21(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io27(input3.continuousColorScale));
138
- const $io54 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "condition" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values));
139
- const $io55 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io16(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
140
- const $io56 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io16(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
141
- const $io57 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io14(input3.values)) && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io48(elem)));
142
- const $io58 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io59(input3.values));
143
- const $io59 = (input3) => Object.keys(input3).every((key) => {
124
+ const $io17 = (input3) => (void 0 === input3.key || "string" === typeof input3.key) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable) && (void 0 === input3.label || "string" === typeof input3.label || "number" === typeof input3.label) && (void 0 === input3.order || "string" === typeof input3.order) && (void 0 === input3.color || "string" === typeof input3.color) && (void 0 === input3.group || "number" === typeof input3.group) && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io13(input3.filter));
125
+ const $io18 = (input3) => (void 0 === input3.disabled || "boolean" === typeof input3.disabled) && (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $io19(elem)));
126
+ const $io19 = (input3) => "string" === typeof input3.name && (void 0 === input3.is_grade || "boolean" === typeof input3.is_grade) && (void 0 === input3.is_subcondition || "boolean" === typeof input3.is_subcondition) && (Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem)));
127
+ const $io20 = (input3) => "boolean" === typeof input3.disabled && (void 0 === input3.lst || Array.isArray(input3.lst) && input3.lst.length === 0);
128
+ const $io21 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io22(input3.term)) && (Array.isArray(input3.ranges) && input3.ranges.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io30(elem)));
129
+ const $io22 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && ("object" === typeof input3.bins && null !== input3.bins && $io23(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io29(input3.continuousColorScale));
130
+ const $io23 = (input3) => "object" === typeof input3["default"] && null !== input3["default"] && $iu9(input3["default"]) && ("object" === typeof input3.less && null !== input3.less && $iu9(input3.less)) && (void 0 === input3.label_offset || "number" === typeof input3.label_offset) && (void 0 === input3.label_offset_ignored || "boolean" === typeof input3.label_offset_ignored) && (void 0 === input3.rounding || "string" === typeof input3.rounding) && (void 0 === input3.min || "number" === typeof input3.min) && (void 0 === input3.max || "number" === typeof input3.max);
131
+ const $io24 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "regular-bin" === input3.type && (void 0 === input3.mode || "discrete" === input3.mode) && "number" === typeof input3.bin_size && ("object" === typeof input3.first_bin && null !== input3.first_bin && $iu4(input3.first_bin)) && (void 0 === input3.last_bin || "object" === typeof input3.last_bin && null !== input3.last_bin && $iu5(input3.last_bin)) && (void 0 === input3.label_offset || "number" === typeof input3.label_offset);
132
+ const $io25 = (input3) => true === input3.startunbounded && (void 0 === input3.startinclusive || false === input3.startinclusive) && "number" === typeof input3.stop && (void 0 === input3.stopinclusive || "boolean" === typeof input3.stopinclusive) && (void 0 === input3.stopunbounded || false === input3.stopunbounded) && (void 0 === input3.label || "string" === typeof input3.label);
133
+ const $io26 = (input3) => (void 0 === input3.startunbounded || false === input3.startunbounded) && (void 0 === input3.startinclusive || "boolean" === typeof input3.startinclusive) && "number" === typeof input3.start && "number" === typeof input3.stop && (void 0 === input3.stopinclusive || "boolean" === typeof input3.stopinclusive) && (void 0 === input3.stopunbounded || false === input3.stopunbounded) && (void 0 === input3.label || "string" === typeof input3.label);
134
+ const $io27 = (input3) => "number" === typeof input3.start && true === input3.stopunbounded && (void 0 === input3.startinclusive || "boolean" === typeof input3.startinclusive) && (void 0 === input3.startunbounded || false === input3.startunbounded) && (void 0 === input3.stopinclusive || false === input3.stopinclusive) && (void 0 === input3.label || "string" === typeof input3.label);
135
+ const $io28 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "custom-bin" === input3.type && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && (Array.isArray(input3.lst) && ("object" === typeof input3.lst[0] && null !== input3.lst[0] && $iu2(input3.lst[0]) && (Array.isArray(input3.lst.slice(1)) && input3.lst.slice(1).every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))))) && (void 0 === input3.preferredBins || "median" === input3.preferredBins);
136
+ const $io29 = (input3) => "string" === typeof input3.minColor && "string" === typeof input3.maxColor;
137
+ const $io30 = (input3) => "string" === typeof input3.key && "number" === typeof input3.value && true === input3.uncomputable && (void 0 === input3.label || "string" === typeof input3.label);
138
+ const $io31 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io32(input3.term)) && (void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade) && (void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent) && (void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade) && (void 0 === input3.grade_and_child || Array.isArray(input3.grade_and_child) && input3.grade_and_child.every((elem) => "object" === typeof elem && null !== elem && $io33(elem)));
139
+ const $io32 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "condition" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true;
140
+ const $io33 = (input3) => "number" === typeof input3.grade && "string" === typeof input3.grade_label && (void 0 === input3.child_id || "string" === typeof input3.child_id) && "string" === typeof input3.child_label;
141
+ const $io34 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $iu3(elem)));
142
+ const $io35 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io18(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
143
+ const $io36 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io18(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
144
+ const $io37 = (input3) => 1 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "M" === elem || "E" === elem || "F" === elem || "N" === elem || "S" === elem || "D" === elem || "I" === elem || "P" === elem || "L" === elem || "Intron" === elem || "Blank" === elem || "WT" === elem || "ITD" === elem || "DEL" === elem || "NLOSS" === elem || "CLOSS" === elem || "Utr3" === elem || "Utr5" === elem || "X" === elem || "noncoding" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "M" === elem || "E" === elem || "F" === elem || "N" === elem || "S" === elem || "D" === elem || "I" === elem || "P" === elem || "L" === elem || "Intron" === elem || "Blank" === elem || "WT" === elem || "ITD" === elem || "DEL" === elem || "NLOSS" === elem || "CLOSS" === elem || "Utr3" === elem || "Utr5" === elem || "X" === elem || "noncoding" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
145
+ const $io38 = (input3) => 4 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "CNV_amp" === elem || "CNV_loss" === elem || "CNV_loh" === elem || "CNV_amplification" === elem || "CNV_homozygous_deletion" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "CNV_amp" === elem || "CNV_loss" === elem || "CNV_loh" === elem || "CNV_amplification" === elem || "CNV_homozygous_deletion" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
146
+ const $io39 = (input3) => 5 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "SV" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "SV" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
147
+ const $io40 = (input3) => 2 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "Fuserna" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "Fuserna" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
148
+ const $io41 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io3(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.term && null !== input3.term && $io22(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $iu11(input3.q));
149
+ const $io42 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "binary" === input3.mode && "custom-bin" === input3.type && (Array.isArray(input3.lst) && (input3.lst.length === 2 && ("object" === typeof input3.lst[0] && null !== input3.lst[0] && $iu4(input3.lst[0])) && ("object" === typeof input3.lst[1] && null !== input3.lst[1] && $iu5(input3.lst[1]))));
150
+ const $io43 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "continuous" === input3.mode && (void 0 === input3.convert2ZScore || "boolean" === typeof input3.convert2ZScore) && (null !== input3.type && void 0 === input3.type);
151
+ const $io44 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "spline" === input3.mode && (Array.isArray(input3.knots) && input3.knots.every((elem) => "object" === typeof elem && null !== elem && $io45(elem))) && (null !== input3.type && void 0 === input3.type);
152
+ const $io45 = (input3) => "number" === typeof input3.value;
153
+ const $io46 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io3(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.q && null !== input3.q && $io47(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io49(input3.term));
154
+ const $io47 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type) && "number" === typeof input3.AFcutoff && "number" === typeof input3.alleleType && "string" === typeof input3.cacheid && true && "number" === typeof input3.geneticModel && true && (void 0 === input3.missingGenotype || "number" === typeof input3.missingGenotype) && "number" === typeof input3.numOfSampleWithAnyValidGT && ("object" === typeof input3.restrictAncestry && null !== input3.restrictAncestry && $io48(input3.restrictAncestry)) && true && true && ("object" === typeof input3.variant_filter && null !== input3.variant_filter && $io13(input3.variant_filter)) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
155
+ const $io48 = (input3) => "string" === typeof input3.name && ("object" === typeof input3.tvs && null !== input3.tvs && $iu12(input3.tvs));
156
+ const $io49 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io50(elem)));
157
+ const $io50 = (input3) => (void 0 === input3.altAlleles || Array.isArray(input3.altAlleles) && input3.altAlleles.every((elem) => "string" === typeof elem)) && (void 0 === input3.alleles || Array.isArray(input3.alleles) && input3.alleles.every((elem) => "object" === typeof elem && null !== elem && $io51(elem))) && "boolean" === typeof input3.effectAllele && (void 0 === input3.gt2count || "object" === typeof input3.gt2count && null !== input3.gt2count && $io52(input3.gt2count)) && (void 0 === input3.invalid || "boolean" === typeof input3.invalid) && (void 0 === input3.referenceAllele || "string" === typeof input3.referenceAllele) && "string" === typeof input3.rsid && "string" === typeof input3.snpid && true && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.pos || "number" === typeof input3.pos);
158
+ const $io51 = (input3) => "string" === typeof input3.allele && "number" === typeof input3.count && "boolean" === typeof input3.isRef;
159
+ const $io52 = (input3) => "string" === typeof input3.k && ("string" === typeof input3.v || "number" === typeof input3.v);
160
+ const $io53 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io3(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.term && null !== input3.term && $iu13(input3.term)) && ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) && $iu14(input3.q));
161
+ const $io54 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "categorical" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu8(input3.groupsetting));
162
+ const $io55 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && ("object" === typeof input3.bins && null !== input3.bins && $io23(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io29(input3.continuousColorScale));
163
+ const $io56 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "condition" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true;
164
+ const $io57 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io18(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
165
+ const $io58 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io18(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
166
+ const $io59 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io16(input3.values)) && true && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io50(elem)));
167
+ const $io60 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io61(input3.values)) && true;
168
+ const $io61 = (input3) => Object.keys(input3).every((key) => {
144
169
  const value = input3[key];
145
170
  if (void 0 === value)
146
171
  return true;
147
172
  if (RegExp(/(.*)/).test(key))
148
- return "object" === typeof value && null !== value && $io60(value);
173
+ return "object" === typeof value && null !== value && $io62(value);
149
174
  if (RegExp(/^[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(key))
150
- return "object" === typeof value && null !== value && $io60(value);
175
+ return "object" === typeof value && null !== value && $io62(value);
151
176
  return true;
152
177
  });
153
- const $io60 = (input3) => (void 0 === input3.key || "string" === typeof input3.key) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable) && (void 0 === input3.label || "string" === typeof input3.label || "number" === typeof input3.label) && (void 0 === input3.order || "string" === typeof input3.order) && (void 0 === input3.color || "string" === typeof input3.color) && (void 0 === input3.group || "number" === typeof input3.group) && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io11(input3.filter)) && "string" === typeof input3.name && "boolean" === typeof input3.inuse && (Array.isArray(input3.list) && input3.list.every((elem) => "object" === typeof elem && null !== elem && $io61(elem))) && true;
154
- const $io61 = (input3) => "string" === typeof input3.sampleId && "string" === typeof input3.sample;
155
- const $io62 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "custom-samplelst" === input3.type);
156
- const $io63 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.breaks || Array.isArray(input3.breaks) && input3.breaks.every((elem) => "number" === typeof elem)) && ("age" === input3.timeScale || "time" === input3.timeScale) && (void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade) && (void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent) && (void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade) && true;
157
- const $io64 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "values" === input3.type;
158
- const $io65 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "predefined-groupset" === input3.type && "number" === typeof input3.predefined_groupset_idx;
159
- const $io66 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "custom-groupset" === input3.type && ("object" === typeof input3.customset && null !== input3.customset && $io7(input3.customset));
160
- const $io67 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "custom-samplelst" === input3.type) && ("object" === typeof input3.groups && null !== input3.groups && false === Array.isArray(input3.groups) && $io68(input3.groups));
161
- const $io68 = (input3) => Object.keys(input3).every((key) => {
178
+ const $io62 = (input3) => (void 0 === input3.key || "string" === typeof input3.key) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable) && (void 0 === input3.label || "string" === typeof input3.label || "number" === typeof input3.label) && (void 0 === input3.order || "string" === typeof input3.order) && (void 0 === input3.color || "string" === typeof input3.color) && (void 0 === input3.group || "number" === typeof input3.group) && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io13(input3.filter)) && "string" === typeof input3.name && "boolean" === typeof input3.inuse && (Array.isArray(input3.list) && input3.list.every((elem) => "object" === typeof elem && null !== elem && $io63(elem))) && true;
179
+ const $io63 = (input3) => "string" === typeof input3.sampleId && "string" === typeof input3.sample;
180
+ const $io64 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type);
181
+ const $io65 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.breaks || Array.isArray(input3.breaks) && input3.breaks.every((elem) => "number" === typeof elem)) && ("age" === input3.timeScale || "time" === input3.timeScale) && (void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade) && (void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent) && (void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade) && true;
182
+ const $io66 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "values" === input3.type;
183
+ const $io67 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.type || "filter" === input3.type);
184
+ const $io68 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "predefined-groupset" === input3.type && "number" === typeof input3.predefined_groupset_idx;
185
+ const $io69 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "custom-groupset" === input3.type && ("object" === typeof input3.customset && null !== input3.customset && $io9(input3.customset));
186
+ const $io70 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io5(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type) && ("object" === typeof input3.groups && null !== input3.groups && false === Array.isArray(input3.groups) && $io71(input3.groups));
187
+ const $io71 = (input3) => Object.keys(input3).every((key) => {
162
188
  const value = input3[key];
163
189
  if (void 0 === value)
164
190
  return true;
165
191
  if (RegExp(/(.*)/).test(key))
166
- return "object" === typeof value && null !== value && $io69(value);
192
+ return "object" === typeof value && null !== value && $io72(value);
167
193
  if (RegExp(/^[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(key))
168
- return "object" === typeof value && null !== value && $io69(value);
194
+ return "object" === typeof value && null !== value && $io72(value);
169
195
  return true;
170
196
  });
171
- const $io69 = (input3) => "string" === typeof input3.name && "boolean" === typeof input3.inuse && (Array.isArray(input3.list) && input3.list.every((elem) => "object" === typeof elem && null !== elem && $io61(elem))) && true;
197
+ const $io72 = (input3) => "string" === typeof input3.name && "boolean" === typeof input3.inuse && (Array.isArray(input3.list) && input3.list.every((elem) => "object" === typeof elem && null !== elem && $io63(elem))) && true;
172
198
  const $iu0 = (input3) => (() => {
173
199
  if ("string" === typeof input3.type)
174
- return $io8(input3);
175
- if ("filter" === input3.type)
176
200
  return $io10(input3);
201
+ if ("filter" === input3.type)
202
+ return $io12(input3);
177
203
  return false;
178
204
  })();
179
205
  const $iu1 = (input3) => (() => {
180
206
  if (void 0 !== input3.type)
181
- return $io11(input3);
207
+ return $io13(input3);
182
208
  if (void 0 !== input3.ranges)
183
- return $io19(input3);
209
+ return $io21(input3);
184
210
  return (() => {
185
- if ($io12(input3))
186
- return $io12(input3);
187
- if ($io29(input3))
188
- return $io29(input3);
189
- if ($io32(input3))
190
- return $io32(input3);
211
+ if ($io14(input3))
212
+ return $io14(input3);
213
+ if ($io31(input3))
214
+ return $io31(input3);
215
+ if ($io34(input3))
216
+ return $io34(input3);
191
217
  return false;
192
218
  })();
193
219
  })();
194
220
  const $iu2 = (input3) => (() => {
195
221
  if (true === input3.startunbounded)
196
- return $io23(input3);
197
- if (true === input3.stopunbounded)
198
222
  return $io25(input3);
199
- return $io24(input3);
223
+ if (true === input3.stopunbounded)
224
+ return $io27(input3);
225
+ return $io26(input3);
200
226
  })();
201
227
  const $iu3 = (input3) => (() => {
202
228
  if (2 === input3.dt)
203
- return $io38(input3);
229
+ return $io40(input3);
204
230
  if (5 === input3.dt)
205
- return $io37(input3);
231
+ return $io39(input3);
206
232
  if (4 === input3.dt)
207
- return $io36(input3);
233
+ return $io38(input3);
208
234
  if (1 === input3.dt)
209
- return $io35(input3);
235
+ return $io37(input3);
210
236
  return false;
211
237
  })();
212
238
  const $iu4 = (input3) => (() => {
213
239
  if (true === input3.startunbounded)
214
- return $io23(input3);
240
+ return $io25(input3);
215
241
  if (void 0 !== input3.start)
216
- return $io24(input3);
242
+ return $io26(input3);
217
243
  return false;
218
244
  })();
219
245
  const $iu5 = (input3) => (() => {
220
246
  if (void 0 !== input3.stop)
221
- return $io24(input3);
247
+ return $io26(input3);
222
248
  if (true === input3.stopunbounded)
223
- return $io25(input3);
249
+ return $io27(input3);
224
250
  return false;
225
251
  })();
226
252
  const $iu6 = (input3) => (() => {
227
253
  if (void 0 !== input3.type)
228
- return $io1(input3);
254
+ return $io2(input3);
229
255
  return (() => {
230
- if ($io51(input3))
231
- return $io51(input3);
232
- if ($io44(input3))
233
- return $io44(input3);
234
- if ($io39(input3))
235
- return $io39(input3);
256
+ if ($io53(input3))
257
+ return $io53(input3);
258
+ if ($io46(input3))
259
+ return $io46(input3);
260
+ if ($io41(input3))
261
+ return $io41(input3);
236
262
  return false;
237
263
  })();
238
264
  })();
239
265
  const $iu7 = (input3) => (() => {
240
266
  if ("values" === input3.type)
241
- return $io3(input3);
267
+ return $io4(input3);
242
268
  if ("predefined-groupset" === input3.type)
243
- return $io5(input3);
269
+ return $io7(input3);
244
270
  if ("custom-groupset" === input3.type)
245
- return $io6(input3);
246
- return false;
271
+ return $io8(input3);
272
+ return $io6(input3);
247
273
  })();
248
274
  const $iu8 = (input3) => (() => {
249
- if (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $io17(elem)))
250
- return $io16(input3);
251
- return $io18(input3);
275
+ if (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $io19(elem)))
276
+ return $io18(input3);
277
+ return $io20(input3);
252
278
  })();
253
279
  const $iu9 = (input3) => (() => {
254
280
  if ("regular-bin" === input3.type)
255
- return $io22(input3);
281
+ return $io24(input3);
256
282
  if ("custom-bin" === input3.type)
257
- return $io26(input3);
283
+ return $io28(input3);
258
284
  return false;
259
285
  })();
260
286
  const $iu10 = (input3) => (() => {
261
287
  if ("gene" === input3.kind)
262
- return $io33(input3);
288
+ return $io35(input3);
263
289
  if ("coord" === input3.kind)
264
- return $io34(input3);
290
+ return $io36(input3);
265
291
  return false;
266
292
  })();
267
293
  const $iu11 = (input3) => (() => {
268
294
  if ("regular-bin" === input3.type)
269
- return $io22(input3);
295
+ return $io24(input3);
270
296
  if ("continuous" === input3.mode)
271
- return $io41(input3);
297
+ return $io43(input3);
272
298
  if ("spline" === input3.mode)
273
- return $io42(input3);
299
+ return $io44(input3);
274
300
  return (() => {
275
- if ($io26(input3))
276
- return $io26(input3);
277
- if ($io40(input3))
278
- return $io40(input3);
301
+ if ($io28(input3))
302
+ return $io28(input3);
303
+ if ($io42(input3))
304
+ return $io42(input3);
279
305
  return false;
280
306
  })();
281
307
  })();
282
308
  const $iu12 = (input3) => (() => {
283
309
  if (void 0 !== input3.ranges)
284
- return $io19(input3);
310
+ return $io21(input3);
285
311
  return (() => {
286
- if ($io12(input3))
287
- return $io12(input3);
288
- if ($io29(input3))
289
- return $io29(input3);
290
- if ($io32(input3))
291
- return $io32(input3);
312
+ if ($io14(input3))
313
+ return $io14(input3);
314
+ if ($io31(input3))
315
+ return $io31(input3);
316
+ if ($io34(input3))
317
+ return $io34(input3);
292
318
  return false;
293
319
  })();
294
320
  })();
295
321
  const $iu13 = (input3) => (() => {
296
322
  if ("categorical" === input3.type)
297
- return $io52(input3);
323
+ return $io54(input3);
298
324
  if ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type)
299
- return $io53(input3);
325
+ return $io55(input3);
300
326
  if ("condition" === input3.type)
301
- return $io54(input3);
327
+ return $io56(input3);
302
328
  if ("gene" === input3.kind)
303
- return $io55(input3);
329
+ return $io57(input3);
304
330
  if ("coord" === input3.kind)
305
- return $io56(input3);
331
+ return $io58(input3);
306
332
  return (() => {
307
- if ($io57(input3))
308
- return $io57(input3);
309
- if ($io58(input3))
310
- return $io58(input3);
333
+ if ($io59(input3))
334
+ return $io59(input3);
335
+ if ($io60(input3))
336
+ return $io60(input3);
311
337
  return false;
312
338
  })();
313
339
  })();
314
340
  const $iu14 = (input3) => (() => {
315
341
  if (void 0 !== input3.bin_size)
316
- return $io22(input3);
342
+ return $io24(input3);
317
343
  if (void 0 !== input3.knots)
318
- return $io42(input3);
344
+ return $io44(input3);
319
345
  if (void 0 !== input3.AFcutoff)
320
- return $io45(input3);
346
+ return $io47(input3);
321
347
  if (void 0 !== input3.timeScale)
322
- return $io63(input3);
348
+ return $io65(input3);
323
349
  return (() => {
324
350
  if (void 0 !== input3.groups)
325
- return $io67(input3);
351
+ return $io70(input3);
326
352
  return (() => {
327
- if ($io3(input3))
328
- return $io3(input3);
329
- if ($io5(input3))
330
- return $io5(input3);
331
353
  if ($io6(input3))
332
354
  return $io6(input3);
333
- if ($io26(input3))
334
- return $io26(input3);
335
- if ($io40(input3))
336
- return $io40(input3);
337
- if ($io41(input3))
338
- return $io41(input3);
339
- if ($io62(input3))
340
- return $io62(input3);
341
355
  if ($io64(input3))
342
356
  return $io64(input3);
343
- if ($io65(input3))
344
- return $io65(input3);
357
+ if ($io4(input3))
358
+ return $io4(input3);
359
+ if ($io7(input3))
360
+ return $io7(input3);
361
+ if ($io8(input3))
362
+ return $io8(input3);
363
+ if ($io28(input3))
364
+ return $io28(input3);
365
+ if ($io42(input3))
366
+ return $io42(input3);
367
+ if ($io43(input3))
368
+ return $io43(input3);
369
+ if ($io67(input3))
370
+ return $io67(input3);
345
371
  if ($io66(input3))
346
372
  return $io66(input3);
373
+ if ($io68(input3))
374
+ return $io68(input3);
375
+ if ($io69(input3))
376
+ return $io69(input3);
347
377
  return false;
348
378
  })();
349
379
  })();
@@ -354,40 +384,32 @@ var validDescrStatsRequest = (input) => {
354
384
  const $report = import_typia.createValidate.report(errors);
355
385
  ((input2, _path, _exceptionable = true) => {
356
386
  const $join = import_typia.createValidate.join;
357
- const $vo0 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.genome || $report(_exceptionable2, {
358
- path: _path2 + ".genome",
359
- expected: "string",
360
- value: input3.genome
361
- }), "string" === typeof input3.dslabel || $report(_exceptionable2, {
362
- path: _path2 + ".dslabel",
363
- expected: "string",
364
- value: input3.dslabel
365
- }), "string" === typeof input3.embedder || $report(_exceptionable2, {
366
- path: _path2 + ".embedder",
367
- expected: "string",
368
- value: input3.embedder
369
- }), ("object" === typeof input3.tw && null !== input3.tw || $report(_exceptionable2, {
370
- path: _path2 + ".tw",
371
- expected: "(BaseTW & { term: Term; q: Q; } | CategoricalTW | NumericTW | SnpsTW)",
372
- value: input3.tw
373
- })) && $vu6(input3.tw, _path2 + ".tw", _exceptionable2) || $report(_exceptionable2, {
374
- path: _path2 + ".tw",
375
- expected: "(BaseTW & { term: Term; q: Q; } | CategoricalTW | NumericTW | SnpsTW)",
376
- value: input3.tw
377
- }), void 0 === input3.logScale || "boolean" === typeof input3.logScale || $report(_exceptionable2, {
378
- path: _path2 + ".logScale",
379
- expected: "(boolean | undefined)",
380
- value: input3.logScale
381
- }), void 0 === input3.filter || ("object" === typeof input3.filter && null !== input3.filter || $report(_exceptionable2, {
382
- path: _path2 + ".filter",
383
- expected: "(Filter | undefined)",
384
- value: input3.filter
385
- })) && $vo11(input3.filter, _path2 + ".filter", _exceptionable2) || $report(_exceptionable2, {
386
- path: _path2 + ".filter",
387
- expected: "(Filter | undefined)",
388
- value: input3.filter
389
- }), true].every((flag) => flag);
390
- const $vo1 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
387
+ const $vo0 = (input3, _path2, _exceptionable2 = true) => [("object" === typeof input3.terms && null !== input3.terms && false === Array.isArray(input3.terms) || $report(_exceptionable2, {
388
+ path: _path2 + ".terms",
389
+ expected: "__type",
390
+ value: input3.terms
391
+ })) && $vo1(input3.terms, _path2 + ".terms", _exceptionable2) || $report(_exceptionable2, {
392
+ path: _path2 + ".terms",
393
+ expected: "__type",
394
+ value: input3.terms
395
+ })].every((flag) => flag);
396
+ const $vo1 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
397
+ const value = input3[key];
398
+ if (void 0 === value)
399
+ return true;
400
+ if (RegExp(/(.*)/).test(key))
401
+ return ("object" === typeof value && null !== value || $report(_exceptionable2, {
402
+ path: _path2 + $join(key),
403
+ expected: "(BaseTW & { term: Term; q: Q; } | CategoricalTW | NumericTW | SnpsTW)",
404
+ value
405
+ })) && $vu6(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
406
+ path: _path2 + $join(key),
407
+ expected: "(BaseTW & { term: Term; q: Q; } | CategoricalTW | NumericTW | SnpsTW)",
408
+ value
409
+ });
410
+ return true;
411
+ }).every((flag) => flag)].every((flag) => flag);
412
+ const $vo2 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
391
413
  path: _path2 + ".id",
392
414
  expected: "(string | undefined)",
393
415
  value: input3.id
@@ -401,11 +423,11 @@ var validDescrStatsRequest = (input) => {
401
423
  value: input3.isAtomic
402
424
  }), true, void 0 === input3.settings || ("object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) || $report(_exceptionable2, {
403
425
  path: _path2 + ".settings",
404
- expected: "(__type | undefined)",
426
+ expected: "(__type.o1 | undefined)",
405
427
  value: input3.settings
406
- })) && $vo2(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
428
+ })) && $vo3(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
407
429
  path: _path2 + ".settings",
408
- expected: "(__type | undefined)",
430
+ expected: "(__type.o1 | undefined)",
409
431
  value: input3.settings
410
432
  }), true, void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples || $report(_exceptionable2, {
411
433
  path: _path2 + ".minNumSamples",
@@ -415,24 +437,24 @@ var validDescrStatsRequest = (input) => {
415
437
  path: _path2 + ".type",
416
438
  expected: '("CatTWCustomGS" | "CatTWPredefinedGS" | "CatTWValues")',
417
439
  value: input3.type
418
- }), ("object" === typeof input3.q && null !== input3.q || $report(_exceptionable2, {
440
+ }), ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) || $report(_exceptionable2, {
419
441
  path: _path2 + ".q",
420
- expected: "(CustomGroupSettingQ | PredefinedGroupSettingQ | ValuesQ)",
442
+ expected: "(CustomGroupSettingQ | FilterQ | PredefinedGroupSettingQ | ValuesQ)",
421
443
  value: input3.q
422
444
  })) && $vu7(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
423
445
  path: _path2 + ".q",
424
- expected: "(CustomGroupSettingQ | PredefinedGroupSettingQ | ValuesQ)",
446
+ expected: "(CustomGroupSettingQ | FilterQ | PredefinedGroupSettingQ | ValuesQ)",
425
447
  value: input3.q
426
448
  }), ("object" === typeof input3.term && null !== input3.term || $report(_exceptionable2, {
427
449
  path: _path2 + ".term",
428
450
  expected: "CategoricalTerm",
429
451
  value: input3.term
430
- })) && $vo13(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
452
+ })) && $vo15(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
431
453
  path: _path2 + ".term",
432
454
  expected: "CategoricalTerm",
433
455
  value: input3.term
434
456
  })].every((flag) => flag);
435
- const $vo2 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
457
+ const $vo3 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
436
458
  const value = input3[key];
437
459
  if (void 0 === value)
438
460
  return true;
@@ -440,11 +462,11 @@ var validDescrStatsRequest = (input) => {
440
462
  return true;
441
463
  return true;
442
464
  }).every((flag) => flag)].every((flag) => flag);
443
- const $vo3 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
465
+ const $vo4 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
444
466
  path: _path2 + ".hiddenValues",
445
467
  expected: "(HiddenValues | undefined)",
446
468
  value: input3.hiddenValues
447
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
469
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
448
470
  path: _path2 + ".hiddenValues",
449
471
  expected: "(HiddenValues | undefined)",
450
472
  value: input3.hiddenValues
@@ -469,7 +491,7 @@ var validDescrStatsRequest = (input) => {
469
491
  expected: '"values"',
470
492
  value: input3.type
471
493
  })].every((flag) => flag);
472
- const $vo4 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
494
+ const $vo5 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
473
495
  const value = input3[key];
474
496
  if (void 0 === value)
475
497
  return true;
@@ -481,11 +503,40 @@ var validDescrStatsRequest = (input) => {
481
503
  });
482
504
  return true;
483
505
  }).every((flag) => flag)].every((flag) => flag);
484
- const $vo5 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
506
+ const $vo6 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
507
+ path: _path2 + ".hiddenValues",
508
+ expected: "(HiddenValues | undefined)",
509
+ value: input3.hiddenValues
510
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
511
+ path: _path2 + ".hiddenValues",
512
+ expected: "(HiddenValues | undefined)",
513
+ value: input3.hiddenValues
514
+ }), void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic || $report(_exceptionable2, {
515
+ path: _path2 + ".isAtomic",
516
+ expected: "(boolean | undefined)",
517
+ value: input3.isAtomic
518
+ }), void 0 === input3.name || "string" === typeof input3.name || $report(_exceptionable2, {
519
+ path: _path2 + ".name",
520
+ expected: "(string | undefined)",
521
+ value: input3.name
522
+ }), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode || $report(_exceptionable2, {
523
+ path: _path2 + ".mode",
524
+ expected: '("binary" | "continuous" | "cox" | "cuminc" | "discrete" | "spline" | undefined)',
525
+ value: input3.mode
526
+ }), void 0 === input3.reuseId || "string" === typeof input3.reuseId || $report(_exceptionable2, {
527
+ path: _path2 + ".reuseId",
528
+ expected: "(string | undefined)",
529
+ value: input3.reuseId
530
+ }), void 0 === input3.type || "filter" === input3.type || $report(_exceptionable2, {
531
+ path: _path2 + ".type",
532
+ expected: '("filter" | undefined)',
533
+ value: input3.type
534
+ })].every((flag) => flag);
535
+ const $vo7 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
485
536
  path: _path2 + ".hiddenValues",
486
537
  expected: "(HiddenValues | undefined)",
487
538
  value: input3.hiddenValues
488
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
539
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
489
540
  path: _path2 + ".hiddenValues",
490
541
  expected: "(HiddenValues | undefined)",
491
542
  value: input3.hiddenValues
@@ -514,11 +565,11 @@ var validDescrStatsRequest = (input) => {
514
565
  expected: "number",
515
566
  value: input3.predefined_groupset_idx
516
567
  })].every((flag) => flag);
517
- const $vo6 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
568
+ const $vo8 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
518
569
  path: _path2 + ".hiddenValues",
519
570
  expected: "(HiddenValues | undefined)",
520
571
  value: input3.hiddenValues
521
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
572
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
522
573
  path: _path2 + ".hiddenValues",
523
574
  expected: "(HiddenValues | undefined)",
524
575
  value: input3.hiddenValues
@@ -546,12 +597,12 @@ var validDescrStatsRequest = (input) => {
546
597
  path: _path2 + ".customset",
547
598
  expected: "BaseGroupSet",
548
599
  value: input3.customset
549
- })) && $vo7(input3.customset, _path2 + ".customset", _exceptionable2) || $report(_exceptionable2, {
600
+ })) && $vo9(input3.customset, _path2 + ".customset", _exceptionable2) || $report(_exceptionable2, {
550
601
  path: _path2 + ".customset",
551
602
  expected: "BaseGroupSet",
552
603
  value: input3.customset
553
604
  })].every((flag) => flag);
554
- const $vo7 = (input3, _path2, _exceptionable2 = true) => [(Array.isArray(input3.groups) || $report(_exceptionable2, {
605
+ const $vo9 = (input3, _path2, _exceptionable2 = true) => [(Array.isArray(input3.groups) || $report(_exceptionable2, {
555
606
  path: _path2 + ".groups",
556
607
  expected: "Array<GroupEntry>",
557
608
  value: input3.groups
@@ -568,7 +619,7 @@ var validDescrStatsRequest = (input) => {
568
619
  expected: "Array<GroupEntry>",
569
620
  value: input3.groups
570
621
  })].every((flag) => flag);
571
- const $vo8 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
622
+ const $vo10 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
572
623
  path: _path2 + ".name",
573
624
  expected: "string",
574
625
  value: input3.name
@@ -582,11 +633,11 @@ var validDescrStatsRequest = (input) => {
582
633
  value: input3.values
583
634
  })) && input3.values.map((elem, _index2) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
584
635
  path: _path2 + ".values[" + _index2 + "]",
585
- expected: "__type.o1",
636
+ expected: "__type.o2",
586
637
  value: elem
587
- })) && $vo9(elem, _path2 + ".values[" + _index2 + "]", _exceptionable2) || $report(_exceptionable2, {
638
+ })) && $vo11(elem, _path2 + ".values[" + _index2 + "]", _exceptionable2) || $report(_exceptionable2, {
588
639
  path: _path2 + ".values[" + _index2 + "]",
589
- expected: "__type.o1",
640
+ expected: "__type.o2",
590
641
  value: elem
591
642
  })).every((flag) => flag) || $report(_exceptionable2, {
592
643
  path: _path2 + ".values",
@@ -597,7 +648,7 @@ var validDescrStatsRequest = (input) => {
597
648
  expected: "(boolean | undefined)",
598
649
  value: input3.uncomputable
599
650
  })].every((flag) => flag);
600
- const $vo9 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.key || "number" === typeof input3.key || $report(_exceptionable2, {
651
+ const $vo11 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.key || "number" === typeof input3.key || $report(_exceptionable2, {
601
652
  path: _path2 + ".key",
602
653
  expected: "(number | string)",
603
654
  value: input3.key
@@ -606,7 +657,7 @@ var validDescrStatsRequest = (input) => {
606
657
  expected: "string",
607
658
  value: input3.label
608
659
  })].every((flag) => flag);
609
- const $vo10 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
660
+ const $vo12 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
610
661
  path: _path2 + ".name",
611
662
  expected: "string",
612
663
  value: input3.name
@@ -618,12 +669,16 @@ var validDescrStatsRequest = (input) => {
618
669
  path: _path2 + ".filter",
619
670
  expected: "Filter",
620
671
  value: input3.filter
621
- })) && $vo11(input3.filter, _path2 + ".filter", _exceptionable2) || $report(_exceptionable2, {
672
+ })) && $vo13(input3.filter, _path2 + ".filter", _exceptionable2) || $report(_exceptionable2, {
622
673
  path: _path2 + ".filter",
623
674
  expected: "Filter",
624
675
  value: input3.filter
676
+ }), void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable || $report(_exceptionable2, {
677
+ path: _path2 + ".uncomputable",
678
+ expected: "(boolean | undefined)",
679
+ value: input3.uncomputable
625
680
  })].every((flag) => flag);
626
- const $vo11 = (input3, _path2, _exceptionable2 = true) => ["lst" === input3.type || $report(_exceptionable2, {
681
+ const $vo13 = (input3, _path2, _exceptionable2 = true) => ["lst" === input3.type || $report(_exceptionable2, {
627
682
  path: _path2 + ".type",
628
683
  expected: '"lst"',
629
684
  value: input3.type
@@ -656,7 +711,7 @@ var validDescrStatsRequest = (input) => {
656
711
  expected: "Array<Filter | Tvs>",
657
712
  value: input3.lst
658
713
  })].every((flag) => flag);
659
- const $vo12 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
714
+ const $vo14 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
660
715
  path: _path2 + ".join",
661
716
  expected: "(string | undefined)",
662
717
  value: input3.join
@@ -668,7 +723,7 @@ var validDescrStatsRequest = (input) => {
668
723
  path: _path2 + ".term",
669
724
  expected: "CategoricalTerm",
670
725
  value: input3.term
671
- })) && $vo13(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
726
+ })) && $vo15(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
672
727
  path: _path2 + ".term",
673
728
  expected: "CategoricalTerm",
674
729
  value: input3.term
@@ -684,7 +739,7 @@ var validDescrStatsRequest = (input) => {
684
739
  path: _path2 + ".values[" + _index4 + "]",
685
740
  expected: "BaseValue",
686
741
  value: elem
687
- })) && $vo15(elem, _path2 + ".values[" + _index4 + "]", _exceptionable2) || $report(_exceptionable2, {
742
+ })) && $vo17(elem, _path2 + ".values[" + _index4 + "]", _exceptionable2) || $report(_exceptionable2, {
688
743
  path: _path2 + ".values[" + _index4 + "]",
689
744
  expected: "BaseValue",
690
745
  value: elem
@@ -693,7 +748,7 @@ var validDescrStatsRequest = (input) => {
693
748
  expected: "Array<BaseValue>",
694
749
  value: input3.values
695
750
  })].every((flag) => flag);
696
- const $vo13 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
751
+ const $vo15 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
697
752
  path: _path2 + ".id",
698
753
  expected: "string",
699
754
  value: input3.id
@@ -741,20 +796,20 @@ var validDescrStatsRequest = (input) => {
741
796
  path: _path2 + ".values",
742
797
  expected: "(TermValues | undefined)",
743
798
  value: input3.values
744
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
799
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
745
800
  path: _path2 + ".values",
746
801
  expected: "(TermValues | undefined)",
747
802
  value: input3.values
748
- }), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
803
+ }), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
749
804
  path: _path2 + ".groupsetting",
750
- expected: "(EnabledTermGroupSetting | __type.o2)",
805
+ expected: "(EnabledTermGroupSetting | __type.o3)",
751
806
  value: input3.groupsetting
752
807
  })) && $vu8(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
753
808
  path: _path2 + ".groupsetting",
754
- expected: "(EnabledTermGroupSetting | __type.o2)",
809
+ expected: "(EnabledTermGroupSetting | __type.o3)",
755
810
  value: input3.groupsetting
756
811
  })].every((flag) => flag);
757
- const $vo14 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
812
+ const $vo16 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
758
813
  const value = input3[key];
759
814
  if (void 0 === value)
760
815
  return true;
@@ -763,7 +818,7 @@ var validDescrStatsRequest = (input) => {
763
818
  path: _path2 + $join(key),
764
819
  expected: "BaseValue",
765
820
  value
766
- })) && $vo15(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
821
+ })) && $vo17(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
767
822
  path: _path2 + $join(key),
768
823
  expected: "BaseValue",
769
824
  value
@@ -773,14 +828,14 @@ var validDescrStatsRequest = (input) => {
773
828
  path: _path2 + $join(key),
774
829
  expected: "BaseValue",
775
830
  value
776
- })) && $vo15(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
831
+ })) && $vo17(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
777
832
  path: _path2 + $join(key),
778
833
  expected: "BaseValue",
779
834
  value
780
835
  });
781
836
  return true;
782
837
  }).every((flag) => flag)].every((flag) => flag);
783
- const $vo15 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.key || "string" === typeof input3.key || $report(_exceptionable2, {
838
+ const $vo17 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.key || "string" === typeof input3.key || $report(_exceptionable2, {
784
839
  path: _path2 + ".key",
785
840
  expected: "(string | undefined)",
786
841
  value: input3.key
@@ -808,12 +863,12 @@ var validDescrStatsRequest = (input) => {
808
863
  path: _path2 + ".filter",
809
864
  expected: "(Filter | undefined)",
810
865
  value: input3.filter
811
- })) && $vo11(input3.filter, _path2 + ".filter", _exceptionable2) || $report(_exceptionable2, {
866
+ })) && $vo13(input3.filter, _path2 + ".filter", _exceptionable2) || $report(_exceptionable2, {
812
867
  path: _path2 + ".filter",
813
868
  expected: "(Filter | undefined)",
814
869
  value: input3.filter
815
870
  })].every((flag) => flag);
816
- const $vo16 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.disabled || "boolean" === typeof input3.disabled || $report(_exceptionable2, {
871
+ const $vo18 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.disabled || "boolean" === typeof input3.disabled || $report(_exceptionable2, {
817
872
  path: _path2 + ".disabled",
818
873
  expected: "(boolean | undefined)",
819
874
  value: input3.disabled
@@ -825,7 +880,7 @@ var validDescrStatsRequest = (input) => {
825
880
  path: _path2 + ".lst[" + _index7 + "]",
826
881
  expected: "Groupset",
827
882
  value: elem
828
- })) && $vo17(elem, _path2 + ".lst[" + _index7 + "]", _exceptionable2) || $report(_exceptionable2, {
883
+ })) && $vo19(elem, _path2 + ".lst[" + _index7 + "]", _exceptionable2) || $report(_exceptionable2, {
829
884
  path: _path2 + ".lst[" + _index7 + "]",
830
885
  expected: "Groupset",
831
886
  value: elem
@@ -834,7 +889,7 @@ var validDescrStatsRequest = (input) => {
834
889
  expected: "Array<Groupset>",
835
890
  value: input3.lst
836
891
  })].every((flag) => flag);
837
- const $vo17 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
892
+ const $vo19 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
838
893
  path: _path2 + ".name",
839
894
  expected: "string",
840
895
  value: input3.name
@@ -863,7 +918,7 @@ var validDescrStatsRequest = (input) => {
863
918
  expected: "Array<GroupEntry>",
864
919
  value: input3.groups
865
920
  })].every((flag) => flag);
866
- const $vo18 = (input3, _path2, _exceptionable2 = true) => ["boolean" === typeof input3.disabled || $report(_exceptionable2, {
921
+ const $vo20 = (input3, _path2, _exceptionable2 = true) => ["boolean" === typeof input3.disabled || $report(_exceptionable2, {
867
922
  path: _path2 + ".disabled",
868
923
  expected: "boolean",
869
924
  value: input3.disabled
@@ -880,7 +935,7 @@ var validDescrStatsRequest = (input) => {
880
935
  expected: "([] | undefined)",
881
936
  value: input3.lst
882
937
  })].every((flag) => flag);
883
- const $vo19 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
938
+ const $vo21 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
884
939
  path: _path2 + ".join",
885
940
  expected: "(string | undefined)",
886
941
  value: input3.join
@@ -892,7 +947,7 @@ var validDescrStatsRequest = (input) => {
892
947
  path: _path2 + ".term",
893
948
  expected: "NumericTerm",
894
949
  value: input3.term
895
- })) && $vo20(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
950
+ })) && $vo22(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
896
951
  path: _path2 + ".term",
897
952
  expected: "NumericTerm",
898
953
  value: input3.term
@@ -918,18 +973,18 @@ var validDescrStatsRequest = (input) => {
918
973
  value: input3.values
919
974
  })) && input3.values.map((elem, _index10) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
920
975
  path: _path2 + ".values[" + _index10 + "]",
921
- expected: "__type.o4",
976
+ expected: "__type.o5",
922
977
  value: elem
923
- })) && $vo28(elem, _path2 + ".values[" + _index10 + "]", _exceptionable2) || $report(_exceptionable2, {
978
+ })) && $vo30(elem, _path2 + ".values[" + _index10 + "]", _exceptionable2) || $report(_exceptionable2, {
924
979
  path: _path2 + ".values[" + _index10 + "]",
925
- expected: "__type.o4",
980
+ expected: "__type.o5",
926
981
  value: elem
927
982
  })).every((flag) => flag) || $report(_exceptionable2, {
928
983
  path: _path2 + ".values",
929
984
  expected: "Array<__type>.o1",
930
985
  value: input3.values
931
986
  })].every((flag) => flag);
932
- const $vo20 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
987
+ const $vo22 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
933
988
  path: _path2 + ".id",
934
989
  expected: "string",
935
990
  value: input3.id
@@ -977,15 +1032,15 @@ var validDescrStatsRequest = (input) => {
977
1032
  path: _path2 + ".values",
978
1033
  expected: "(TermValues | undefined)",
979
1034
  value: input3.values
980
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
1035
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
981
1036
  path: _path2 + ".values",
982
1037
  expected: "(TermValues | undefined)",
983
1038
  value: input3.values
984
- }), ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
1039
+ }), true, ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
985
1040
  path: _path2 + ".bins",
986
1041
  expected: "PresetNumericBins",
987
1042
  value: input3.bins
988
- })) && $vo21(input3.bins, _path2 + ".bins", _exceptionable2) || $report(_exceptionable2, {
1043
+ })) && $vo23(input3.bins, _path2 + ".bins", _exceptionable2) || $report(_exceptionable2, {
989
1044
  path: _path2 + ".bins",
990
1045
  expected: "PresetNumericBins",
991
1046
  value: input3.bins
@@ -995,14 +1050,14 @@ var validDescrStatsRequest = (input) => {
995
1050
  value: input3.unit
996
1051
  }), void 0 === input3.continuousColorScale || ("object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale || $report(_exceptionable2, {
997
1052
  path: _path2 + ".continuousColorScale",
998
- expected: "(__type.o3 | undefined)",
1053
+ expected: "(__type.o4 | undefined)",
999
1054
  value: input3.continuousColorScale
1000
- })) && $vo27(input3.continuousColorScale, _path2 + ".continuousColorScale", _exceptionable2) || $report(_exceptionable2, {
1055
+ })) && $vo29(input3.continuousColorScale, _path2 + ".continuousColorScale", _exceptionable2) || $report(_exceptionable2, {
1001
1056
  path: _path2 + ".continuousColorScale",
1002
- expected: "(__type.o3 | undefined)",
1057
+ expected: "(__type.o4 | undefined)",
1003
1058
  value: input3.continuousColorScale
1004
1059
  })].every((flag) => flag);
1005
- const $vo21 = (input3, _path2, _exceptionable2 = true) => [("object" === typeof input3["default"] && null !== input3["default"] || $report(_exceptionable2, {
1060
+ const $vo23 = (input3, _path2, _exceptionable2 = true) => [("object" === typeof input3["default"] && null !== input3["default"] || $report(_exceptionable2, {
1006
1061
  path: _path2 + '["default"]',
1007
1062
  expected: "(CustomNumericBinConfig | RegularNumericBinConfig)",
1008
1063
  value: input3["default"]
@@ -1039,11 +1094,11 @@ var validDescrStatsRequest = (input) => {
1039
1094
  expected: "(number | undefined)",
1040
1095
  value: input3.max
1041
1096
  })].every((flag) => flag);
1042
- const $vo22 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1097
+ const $vo24 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1043
1098
  path: _path2 + ".hiddenValues",
1044
1099
  expected: "(HiddenValues | undefined)",
1045
1100
  value: input3.hiddenValues
1046
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1101
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1047
1102
  path: _path2 + ".hiddenValues",
1048
1103
  expected: "(HiddenValues | undefined)",
1049
1104
  value: input3.hiddenValues
@@ -1092,7 +1147,7 @@ var validDescrStatsRequest = (input) => {
1092
1147
  expected: "(number | undefined)",
1093
1148
  value: input3.label_offset
1094
1149
  })].every((flag) => flag);
1095
- const $vo23 = (input3, _path2, _exceptionable2 = true) => [true === input3.startunbounded || $report(_exceptionable2, {
1150
+ const $vo25 = (input3, _path2, _exceptionable2 = true) => [true === input3.startunbounded || $report(_exceptionable2, {
1096
1151
  path: _path2 + ".startunbounded",
1097
1152
  expected: "true",
1098
1153
  value: input3.startunbounded
@@ -1117,7 +1172,7 @@ var validDescrStatsRequest = (input) => {
1117
1172
  expected: "(string | undefined)",
1118
1173
  value: input3.label
1119
1174
  })].every((flag) => flag);
1120
- const $vo24 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.startunbounded || false === input3.startunbounded || $report(_exceptionable2, {
1175
+ const $vo26 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.startunbounded || false === input3.startunbounded || $report(_exceptionable2, {
1121
1176
  path: _path2 + ".startunbounded",
1122
1177
  expected: "(false | undefined)",
1123
1178
  value: input3.startunbounded
@@ -1146,7 +1201,7 @@ var validDescrStatsRequest = (input) => {
1146
1201
  expected: "(string | undefined)",
1147
1202
  value: input3.label
1148
1203
  })].every((flag) => flag);
1149
- const $vo25 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.start || $report(_exceptionable2, {
1204
+ const $vo27 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.start || $report(_exceptionable2, {
1150
1205
  path: _path2 + ".start",
1151
1206
  expected: "number",
1152
1207
  value: input3.start
@@ -1171,11 +1226,11 @@ var validDescrStatsRequest = (input) => {
1171
1226
  expected: "(string | undefined)",
1172
1227
  value: input3.label
1173
1228
  })].every((flag) => flag);
1174
- const $vo26 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1229
+ const $vo28 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1175
1230
  path: _path2 + ".hiddenValues",
1176
1231
  expected: "(HiddenValues | undefined)",
1177
1232
  value: input3.hiddenValues
1178
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1233
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1179
1234
  path: _path2 + ".hiddenValues",
1180
1235
  expected: "(HiddenValues | undefined)",
1181
1236
  value: input3.hiddenValues
@@ -1238,7 +1293,7 @@ var validDescrStatsRequest = (input) => {
1238
1293
  expected: '("median" | undefined)',
1239
1294
  value: input3.preferredBins
1240
1295
  })].every((flag) => flag);
1241
- const $vo27 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.minColor || $report(_exceptionable2, {
1296
+ const $vo29 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.minColor || $report(_exceptionable2, {
1242
1297
  path: _path2 + ".minColor",
1243
1298
  expected: "string",
1244
1299
  value: input3.minColor
@@ -1247,7 +1302,7 @@ var validDescrStatsRequest = (input) => {
1247
1302
  expected: "string",
1248
1303
  value: input3.maxColor
1249
1304
  })].every((flag) => flag);
1250
- const $vo28 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.key || $report(_exceptionable2, {
1305
+ const $vo30 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.key || $report(_exceptionable2, {
1251
1306
  path: _path2 + ".key",
1252
1307
  expected: "string",
1253
1308
  value: input3.key
@@ -1264,7 +1319,7 @@ var validDescrStatsRequest = (input) => {
1264
1319
  expected: "(string | undefined)",
1265
1320
  value: input3.label
1266
1321
  })].every((flag) => flag);
1267
- const $vo29 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
1322
+ const $vo31 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
1268
1323
  path: _path2 + ".join",
1269
1324
  expected: "(string | undefined)",
1270
1325
  value: input3.join
@@ -1276,7 +1331,7 @@ var validDescrStatsRequest = (input) => {
1276
1331
  path: _path2 + ".term",
1277
1332
  expected: "ConditionTerm",
1278
1333
  value: input3.term
1279
- })) && $vo30(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
1334
+ })) && $vo32(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
1280
1335
  path: _path2 + ".term",
1281
1336
  expected: "ConditionTerm",
1282
1337
  value: input3.term
@@ -1300,7 +1355,7 @@ var validDescrStatsRequest = (input) => {
1300
1355
  path: _path2 + ".grade_and_child[" + _index14 + "]",
1301
1356
  expected: "GradeAndChildEntry",
1302
1357
  value: elem
1303
- })) && $vo31(elem, _path2 + ".grade_and_child[" + _index14 + "]", _exceptionable2) || $report(_exceptionable2, {
1358
+ })) && $vo33(elem, _path2 + ".grade_and_child[" + _index14 + "]", _exceptionable2) || $report(_exceptionable2, {
1304
1359
  path: _path2 + ".grade_and_child[" + _index14 + "]",
1305
1360
  expected: "GradeAndChildEntry",
1306
1361
  value: elem
@@ -1309,7 +1364,7 @@ var validDescrStatsRequest = (input) => {
1309
1364
  expected: "(Array<GradeAndChildEntry> | undefined)",
1310
1365
  value: input3.grade_and_child
1311
1366
  })].every((flag) => flag);
1312
- const $vo30 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
1367
+ const $vo32 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
1313
1368
  path: _path2 + ".id",
1314
1369
  expected: "string",
1315
1370
  value: input3.id
@@ -1357,12 +1412,12 @@ var validDescrStatsRequest = (input) => {
1357
1412
  path: _path2 + ".values",
1358
1413
  expected: "(TermValues | undefined)",
1359
1414
  value: input3.values
1360
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
1415
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
1361
1416
  path: _path2 + ".values",
1362
1417
  expected: "(TermValues | undefined)",
1363
1418
  value: input3.values
1364
- })].every((flag) => flag);
1365
- const $vo31 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.grade || $report(_exceptionable2, {
1419
+ }), true].every((flag) => flag);
1420
+ const $vo33 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.grade || $report(_exceptionable2, {
1366
1421
  path: _path2 + ".grade",
1367
1422
  expected: "number",
1368
1423
  value: input3.grade
@@ -1379,7 +1434,7 @@ var validDescrStatsRequest = (input) => {
1379
1434
  expected: "string",
1380
1435
  value: input3.child_label
1381
1436
  })].every((flag) => flag);
1382
- const $vo32 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
1437
+ const $vo34 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
1383
1438
  path: _path2 + ".join",
1384
1439
  expected: "(string | undefined)",
1385
1440
  value: input3.join
@@ -1412,7 +1467,7 @@ var validDescrStatsRequest = (input) => {
1412
1467
  expected: "Array<GeneVariantTvsValue>",
1413
1468
  value: input3.values
1414
1469
  })].every((flag) => flag);
1415
- const $vo33 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
1470
+ const $vo35 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
1416
1471
  path: _path2 + ".id",
1417
1472
  expected: "string",
1418
1473
  value: input3.id
@@ -1460,15 +1515,15 @@ var validDescrStatsRequest = (input) => {
1460
1515
  path: _path2 + ".values",
1461
1516
  expected: "(TermValues | undefined)",
1462
1517
  value: input3.values
1463
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
1518
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
1464
1519
  path: _path2 + ".values",
1465
1520
  expected: "(TermValues | undefined)",
1466
1521
  value: input3.values
1467
- }), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
1522
+ }), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
1468
1523
  path: _path2 + ".groupsetting",
1469
1524
  expected: "EnabledTermGroupSetting",
1470
1525
  value: input3.groupsetting
1471
- })) && $vo16(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
1526
+ })) && $vo18(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
1472
1527
  path: _path2 + ".groupsetting",
1473
1528
  expected: "EnabledTermGroupSetting",
1474
1529
  value: input3.groupsetting
@@ -1493,7 +1548,7 @@ var validDescrStatsRequest = (input) => {
1493
1548
  expected: "(number | undefined)",
1494
1549
  value: input3.stop
1495
1550
  })].every((flag) => flag);
1496
- const $vo34 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
1551
+ const $vo36 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
1497
1552
  path: _path2 + ".id",
1498
1553
  expected: "string",
1499
1554
  value: input3.id
@@ -1541,15 +1596,15 @@ var validDescrStatsRequest = (input) => {
1541
1596
  path: _path2 + ".values",
1542
1597
  expected: "(TermValues | undefined)",
1543
1598
  value: input3.values
1544
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
1599
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
1545
1600
  path: _path2 + ".values",
1546
1601
  expected: "(TermValues | undefined)",
1547
1602
  value: input3.values
1548
- }), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
1603
+ }), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
1549
1604
  path: _path2 + ".groupsetting",
1550
1605
  expected: "EnabledTermGroupSetting",
1551
1606
  value: input3.groupsetting
1552
- })) && $vo16(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
1607
+ })) && $vo18(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
1553
1608
  path: _path2 + ".groupsetting",
1554
1609
  expected: "EnabledTermGroupSetting",
1555
1610
  value: input3.groupsetting
@@ -1570,7 +1625,7 @@ var validDescrStatsRequest = (input) => {
1570
1625
  expected: "number",
1571
1626
  value: input3.stop
1572
1627
  })].every((flag) => flag);
1573
- const $vo35 = (input3, _path2, _exceptionable2 = true) => [1 === input3.dt || $report(_exceptionable2, {
1628
+ const $vo37 = (input3, _path2, _exceptionable2 = true) => [1 === input3.dt || $report(_exceptionable2, {
1574
1629
  path: _path2 + ".dt",
1575
1630
  expected: "1",
1576
1631
  value: input3.dt
@@ -1603,7 +1658,7 @@ var validDescrStatsRequest = (input) => {
1603
1658
  expected: '("germline" | "somatic" | undefined)',
1604
1659
  value: input3.origin
1605
1660
  })].every((flag) => flag);
1606
- const $vo36 = (input3, _path2, _exceptionable2 = true) => [4 === input3.dt || $report(_exceptionable2, {
1661
+ const $vo38 = (input3, _path2, _exceptionable2 = true) => [4 === input3.dt || $report(_exceptionable2, {
1607
1662
  path: _path2 + ".dt",
1608
1663
  expected: "4",
1609
1664
  value: input3.dt
@@ -1636,7 +1691,7 @@ var validDescrStatsRequest = (input) => {
1636
1691
  expected: '("germline" | "somatic" | undefined)',
1637
1692
  value: input3.origin
1638
1693
  })].every((flag) => flag);
1639
- const $vo37 = (input3, _path2, _exceptionable2 = true) => [5 === input3.dt || $report(_exceptionable2, {
1694
+ const $vo39 = (input3, _path2, _exceptionable2 = true) => [5 === input3.dt || $report(_exceptionable2, {
1640
1695
  path: _path2 + ".dt",
1641
1696
  expected: "5",
1642
1697
  value: input3.dt
@@ -1669,7 +1724,7 @@ var validDescrStatsRequest = (input) => {
1669
1724
  expected: '("germline" | "somatic" | undefined)',
1670
1725
  value: input3.origin
1671
1726
  })].every((flag) => flag);
1672
- const $vo38 = (input3, _path2, _exceptionable2 = true) => [2 === input3.dt || $report(_exceptionable2, {
1727
+ const $vo40 = (input3, _path2, _exceptionable2 = true) => [2 === input3.dt || $report(_exceptionable2, {
1673
1728
  path: _path2 + ".dt",
1674
1729
  expected: "2",
1675
1730
  value: input3.dt
@@ -1702,7 +1757,7 @@ var validDescrStatsRequest = (input) => {
1702
1757
  expected: '("germline" | "somatic" | undefined)',
1703
1758
  value: input3.origin
1704
1759
  })].every((flag) => flag);
1705
- const $vo39 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
1760
+ const $vo41 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
1706
1761
  path: _path2 + ".id",
1707
1762
  expected: "(string | undefined)",
1708
1763
  value: input3.id
@@ -1716,11 +1771,11 @@ var validDescrStatsRequest = (input) => {
1716
1771
  value: input3.isAtomic
1717
1772
  }), true, void 0 === input3.settings || ("object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) || $report(_exceptionable2, {
1718
1773
  path: _path2 + ".settings",
1719
- expected: "(__type | undefined)",
1774
+ expected: "(__type.o1 | undefined)",
1720
1775
  value: input3.settings
1721
- })) && $vo2(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
1776
+ })) && $vo3(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
1722
1777
  path: _path2 + ".settings",
1723
- expected: "(__type | undefined)",
1778
+ expected: "(__type.o1 | undefined)",
1724
1779
  value: input3.settings
1725
1780
  }), true, void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples || $report(_exceptionable2, {
1726
1781
  path: _path2 + ".minNumSamples",
@@ -1730,7 +1785,7 @@ var validDescrStatsRequest = (input) => {
1730
1785
  path: _path2 + ".term",
1731
1786
  expected: "NumericTerm",
1732
1787
  value: input3.term
1733
- })) && $vo20(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
1788
+ })) && $vo22(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
1734
1789
  path: _path2 + ".term",
1735
1790
  expected: "NumericTerm",
1736
1791
  value: input3.term
@@ -1743,11 +1798,11 @@ var validDescrStatsRequest = (input) => {
1743
1798
  expected: "(BinaryNumericQ | ContinuousNumericQ | CustomNumericBinConfig | RegularNumericBinConfig | SplineNumericQ)",
1744
1799
  value: input3.q
1745
1800
  })].every((flag) => flag);
1746
- const $vo40 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1801
+ const $vo42 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1747
1802
  path: _path2 + ".hiddenValues",
1748
1803
  expected: "(HiddenValues | undefined)",
1749
1804
  value: input3.hiddenValues
1750
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1805
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1751
1806
  path: _path2 + ".hiddenValues",
1752
1807
  expected: "(HiddenValues | undefined)",
1753
1808
  value: input3.hiddenValues
@@ -1803,11 +1858,11 @@ var validDescrStatsRequest = (input) => {
1803
1858
  expected: "[StartUnboundedBin | FullyBoundedBin, FullyBoundedBin | StopUnboundedBin]",
1804
1859
  value: input3.lst
1805
1860
  })].every((flag) => flag);
1806
- const $vo41 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1861
+ const $vo43 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1807
1862
  path: _path2 + ".hiddenValues",
1808
1863
  expected: "(HiddenValues | undefined)",
1809
1864
  value: input3.hiddenValues
1810
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1865
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1811
1866
  path: _path2 + ".hiddenValues",
1812
1867
  expected: "(HiddenValues | undefined)",
1813
1868
  value: input3.hiddenValues
@@ -1840,11 +1895,11 @@ var validDescrStatsRequest = (input) => {
1840
1895
  expected: "undefined",
1841
1896
  value: input3.type
1842
1897
  }))].every((flag) => flag);
1843
- const $vo42 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1898
+ const $vo44 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1844
1899
  path: _path2 + ".hiddenValues",
1845
1900
  expected: "(HiddenValues | undefined)",
1846
1901
  value: input3.hiddenValues
1847
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1902
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1848
1903
  path: _path2 + ".hiddenValues",
1849
1904
  expected: "(HiddenValues | undefined)",
1850
1905
  value: input3.hiddenValues
@@ -1870,11 +1925,11 @@ var validDescrStatsRequest = (input) => {
1870
1925
  value: input3.knots
1871
1926
  })) && input3.knots.map((elem, _index30) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
1872
1927
  path: _path2 + ".knots[" + _index30 + "]",
1873
- expected: "__type.o5",
1928
+ expected: "__type.o6",
1874
1929
  value: elem
1875
- })) && $vo43(elem, _path2 + ".knots[" + _index30 + "]", _exceptionable2) || $report(_exceptionable2, {
1930
+ })) && $vo45(elem, _path2 + ".knots[" + _index30 + "]", _exceptionable2) || $report(_exceptionable2, {
1876
1931
  path: _path2 + ".knots[" + _index30 + "]",
1877
- expected: "__type.o5",
1932
+ expected: "__type.o6",
1878
1933
  value: elem
1879
1934
  })).every((flag) => flag) || $report(_exceptionable2, {
1880
1935
  path: _path2 + ".knots",
@@ -1889,12 +1944,12 @@ var validDescrStatsRequest = (input) => {
1889
1944
  expected: "undefined",
1890
1945
  value: input3.type
1891
1946
  }))].every((flag) => flag);
1892
- const $vo43 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.value || $report(_exceptionable2, {
1947
+ const $vo45 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.value || $report(_exceptionable2, {
1893
1948
  path: _path2 + ".value",
1894
1949
  expected: "number",
1895
1950
  value: input3.value
1896
1951
  })].every((flag) => flag);
1897
- const $vo44 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
1952
+ const $vo46 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
1898
1953
  path: _path2 + ".id",
1899
1954
  expected: "(string | undefined)",
1900
1955
  value: input3.id
@@ -1908,11 +1963,11 @@ var validDescrStatsRequest = (input) => {
1908
1963
  value: input3.isAtomic
1909
1964
  }), true, void 0 === input3.settings || ("object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) || $report(_exceptionable2, {
1910
1965
  path: _path2 + ".settings",
1911
- expected: "(__type | undefined)",
1966
+ expected: "(__type.o1 | undefined)",
1912
1967
  value: input3.settings
1913
- })) && $vo2(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
1968
+ })) && $vo3(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
1914
1969
  path: _path2 + ".settings",
1915
- expected: "(__type | undefined)",
1970
+ expected: "(__type.o1 | undefined)",
1916
1971
  value: input3.settings
1917
1972
  }), true, void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples || $report(_exceptionable2, {
1918
1973
  path: _path2 + ".minNumSamples",
@@ -1922,7 +1977,7 @@ var validDescrStatsRequest = (input) => {
1922
1977
  path: _path2 + ".q",
1923
1978
  expected: "SnpsQ",
1924
1979
  value: input3.q
1925
- })) && $vo45(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
1980
+ })) && $vo47(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
1926
1981
  path: _path2 + ".q",
1927
1982
  expected: "SnpsQ",
1928
1983
  value: input3.q
@@ -1930,16 +1985,16 @@ var validDescrStatsRequest = (input) => {
1930
1985
  path: _path2 + ".term",
1931
1986
  expected: "SnpsTerm",
1932
1987
  value: input3.term
1933
- })) && $vo47(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
1988
+ })) && $vo49(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
1934
1989
  path: _path2 + ".term",
1935
1990
  expected: "SnpsTerm",
1936
1991
  value: input3.term
1937
1992
  })].every((flag) => flag);
1938
- const $vo45 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1993
+ const $vo47 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
1939
1994
  path: _path2 + ".hiddenValues",
1940
1995
  expected: "(HiddenValues | undefined)",
1941
1996
  value: input3.hiddenValues
1942
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1997
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
1943
1998
  path: _path2 + ".hiddenValues",
1944
1999
  expected: "(HiddenValues | undefined)",
1945
2000
  value: input3.hiddenValues
@@ -1959,9 +2014,9 @@ var validDescrStatsRequest = (input) => {
1959
2014
  path: _path2 + ".reuseId",
1960
2015
  expected: "(string | undefined)",
1961
2016
  value: input3.reuseId
1962
- }), void 0 === input3.type || "values" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "custom-samplelst" === input3.type || $report(_exceptionable2, {
2017
+ }), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
1963
2018
  path: _path2 + ".type",
1964
- expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
2019
+ expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
1965
2020
  value: input3.type
1966
2021
  }), "number" === typeof input3.AFcutoff || $report(_exceptionable2, {
1967
2022
  path: _path2 + ".AFcutoff",
@@ -1991,7 +2046,7 @@ var validDescrStatsRequest = (input) => {
1991
2046
  path: _path2 + ".restrictAncestry",
1992
2047
  expected: "RestrictAncestry",
1993
2048
  value: input3.restrictAncestry
1994
- })) && $vo46(input3.restrictAncestry, _path2 + ".restrictAncestry", _exceptionable2) || $report(_exceptionable2, {
2049
+ })) && $vo48(input3.restrictAncestry, _path2 + ".restrictAncestry", _exceptionable2) || $report(_exceptionable2, {
1995
2050
  path: _path2 + ".restrictAncestry",
1996
2051
  expected: "RestrictAncestry",
1997
2052
  value: input3.restrictAncestry
@@ -1999,7 +2054,7 @@ var validDescrStatsRequest = (input) => {
1999
2054
  path: _path2 + ".variant_filter",
2000
2055
  expected: "Filter",
2001
2056
  value: input3.variant_filter
2002
- })) && $vo11(input3.variant_filter, _path2 + ".variant_filter", _exceptionable2) || $report(_exceptionable2, {
2057
+ })) && $vo13(input3.variant_filter, _path2 + ".variant_filter", _exceptionable2) || $report(_exceptionable2, {
2003
2058
  path: _path2 + ".variant_filter",
2004
2059
  expected: "Filter",
2005
2060
  value: input3.variant_filter
@@ -2016,7 +2071,7 @@ var validDescrStatsRequest = (input) => {
2016
2071
  expected: "number",
2017
2072
  value: input3.stop
2018
2073
  })].every((flag) => flag);
2019
- const $vo46 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
2074
+ const $vo48 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
2020
2075
  path: _path2 + ".name",
2021
2076
  expected: "string",
2022
2077
  value: input3.name
@@ -2029,7 +2084,7 @@ var validDescrStatsRequest = (input) => {
2029
2084
  expected: "(CategoricalTvs | ConditionTvs | GeneVariantTvs | NumericTvs)",
2030
2085
  value: input3.tvs
2031
2086
  })].every((flag) => flag);
2032
- const $vo47 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2087
+ const $vo49 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2033
2088
  path: _path2 + ".id",
2034
2089
  expected: "string",
2035
2090
  value: input3.id
@@ -2077,11 +2132,11 @@ var validDescrStatsRequest = (input) => {
2077
2132
  path: _path2 + ".values",
2078
2133
  expected: "(TermValues | undefined)",
2079
2134
  value: input3.values
2080
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2135
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2081
2136
  path: _path2 + ".values",
2082
2137
  expected: "(TermValues | undefined)",
2083
2138
  value: input3.values
2084
- }), void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
2139
+ }), true, void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
2085
2140
  path: _path2 + ".reachedVariantLimit",
2086
2141
  expected: "(boolean | undefined)",
2087
2142
  value: input3.reachedVariantLimit
@@ -2093,7 +2148,7 @@ var validDescrStatsRequest = (input) => {
2093
2148
  path: _path2 + ".snps[" + _index33 + "]",
2094
2149
  expected: "SnpsEntry",
2095
2150
  value: elem
2096
- })) && $vo48(elem, _path2 + ".snps[" + _index33 + "]", _exceptionable2) || $report(_exceptionable2, {
2151
+ })) && $vo50(elem, _path2 + ".snps[" + _index33 + "]", _exceptionable2) || $report(_exceptionable2, {
2097
2152
  path: _path2 + ".snps[" + _index33 + "]",
2098
2153
  expected: "SnpsEntry",
2099
2154
  value: elem
@@ -2102,7 +2157,7 @@ var validDescrStatsRequest = (input) => {
2102
2157
  expected: "(Array<SnpsEntry> | undefined)",
2103
2158
  value: input3.snps
2104
2159
  })].every((flag) => flag);
2105
- const $vo48 = (input3, _path2, _exceptionable2 = true) => [true, void 0 === input3.altAlleles || (Array.isArray(input3.altAlleles) || $report(_exceptionable2, {
2160
+ const $vo50 = (input3, _path2, _exceptionable2 = true) => [true, void 0 === input3.altAlleles || (Array.isArray(input3.altAlleles) || $report(_exceptionable2, {
2106
2161
  path: _path2 + ".altAlleles",
2107
2162
  expected: "(Array<string> | undefined)",
2108
2163
  value: input3.altAlleles
@@ -2122,7 +2177,7 @@ var validDescrStatsRequest = (input) => {
2122
2177
  path: _path2 + ".alleles[" + _index35 + "]",
2123
2178
  expected: "AllelesEntry",
2124
2179
  value: elem
2125
- })) && $vo49(elem, _path2 + ".alleles[" + _index35 + "]", _exceptionable2) || $report(_exceptionable2, {
2180
+ })) && $vo51(elem, _path2 + ".alleles[" + _index35 + "]", _exceptionable2) || $report(_exceptionable2, {
2126
2181
  path: _path2 + ".alleles[" + _index35 + "]",
2127
2182
  expected: "AllelesEntry",
2128
2183
  value: elem
@@ -2136,11 +2191,11 @@ var validDescrStatsRequest = (input) => {
2136
2191
  value: input3.effectAllele
2137
2192
  }), void 0 === input3.gt2count || ("object" === typeof input3.gt2count && null !== input3.gt2count || $report(_exceptionable2, {
2138
2193
  path: _path2 + ".gt2count",
2139
- expected: "(__type.o6 | undefined)",
2194
+ expected: "(__type.o7 | undefined)",
2140
2195
  value: input3.gt2count
2141
- })) && $vo50(input3.gt2count, _path2 + ".gt2count", _exceptionable2) || $report(_exceptionable2, {
2196
+ })) && $vo52(input3.gt2count, _path2 + ".gt2count", _exceptionable2) || $report(_exceptionable2, {
2142
2197
  path: _path2 + ".gt2count",
2143
- expected: "(__type.o6 | undefined)",
2198
+ expected: "(__type.o7 | undefined)",
2144
2199
  value: input3.gt2count
2145
2200
  }), void 0 === input3.invalid || "boolean" === typeof input3.invalid || $report(_exceptionable2, {
2146
2201
  path: _path2 + ".invalid",
@@ -2167,7 +2222,7 @@ var validDescrStatsRequest = (input) => {
2167
2222
  expected: "(number | undefined)",
2168
2223
  value: input3.pos
2169
2224
  })].every((flag) => flag);
2170
- const $vo49 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.allele || $report(_exceptionable2, {
2225
+ const $vo51 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.allele || $report(_exceptionable2, {
2171
2226
  path: _path2 + ".allele",
2172
2227
  expected: "string",
2173
2228
  value: input3.allele
@@ -2180,7 +2235,7 @@ var validDescrStatsRequest = (input) => {
2180
2235
  expected: "boolean",
2181
2236
  value: input3.isRef
2182
2237
  })].every((flag) => flag);
2183
- const $vo50 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.k || $report(_exceptionable2, {
2238
+ const $vo52 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.k || $report(_exceptionable2, {
2184
2239
  path: _path2 + ".k",
2185
2240
  expected: "string",
2186
2241
  value: input3.k
@@ -2189,7 +2244,7 @@ var validDescrStatsRequest = (input) => {
2189
2244
  expected: "(number | string)",
2190
2245
  value: input3.v
2191
2246
  })].every((flag) => flag);
2192
- const $vo51 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
2247
+ const $vo53 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
2193
2248
  path: _path2 + ".id",
2194
2249
  expected: "(string | undefined)",
2195
2250
  value: input3.id
@@ -2203,11 +2258,11 @@ var validDescrStatsRequest = (input) => {
2203
2258
  value: input3.isAtomic
2204
2259
  }), true, void 0 === input3.settings || ("object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) || $report(_exceptionable2, {
2205
2260
  path: _path2 + ".settings",
2206
- expected: "(__type | undefined)",
2261
+ expected: "(__type.o1 | undefined)",
2207
2262
  value: input3.settings
2208
- })) && $vo2(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
2263
+ })) && $vo3(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
2209
2264
  path: _path2 + ".settings",
2210
- expected: "(__type | undefined)",
2265
+ expected: "(__type.o1 | undefined)",
2211
2266
  value: input3.settings
2212
2267
  }), true, void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples || $report(_exceptionable2, {
2213
2268
  path: _path2 + ".minNumSamples",
@@ -2223,14 +2278,14 @@ var validDescrStatsRequest = (input) => {
2223
2278
  value: input3.term
2224
2279
  }), ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) || $report(_exceptionable2, {
2225
2280
  path: _path2 + ".q",
2226
- expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
2281
+ expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | FilterQ | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & BaseQ & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
2227
2282
  value: input3.q
2228
2283
  })) && $vu14(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
2229
2284
  path: _path2 + ".q",
2230
- expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
2285
+ expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | FilterQ | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & BaseQ & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
2231
2286
  value: input3.q
2232
2287
  })].every((flag) => flag);
2233
- const $vo52 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2288
+ const $vo54 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2234
2289
  path: _path2 + ".id",
2235
2290
  expected: "string",
2236
2291
  value: input3.id
@@ -2278,20 +2333,20 @@ var validDescrStatsRequest = (input) => {
2278
2333
  path: _path2 + ".values",
2279
2334
  expected: "(TermValues | undefined)",
2280
2335
  value: input3.values
2281
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2336
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2282
2337
  path: _path2 + ".values",
2283
2338
  expected: "(TermValues | undefined)",
2284
2339
  value: input3.values
2285
- }), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
2340
+ }), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
2286
2341
  path: _path2 + ".groupsetting",
2287
- expected: "(EnabledTermGroupSetting | __type.o2)",
2342
+ expected: "(EnabledTermGroupSetting | __type.o3)",
2288
2343
  value: input3.groupsetting
2289
2344
  })) && $vu8(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
2290
2345
  path: _path2 + ".groupsetting",
2291
- expected: "(EnabledTermGroupSetting | __type.o2)",
2346
+ expected: "(EnabledTermGroupSetting | __type.o3)",
2292
2347
  value: input3.groupsetting
2293
2348
  })].every((flag) => flag);
2294
- const $vo53 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2349
+ const $vo55 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2295
2350
  path: _path2 + ".id",
2296
2351
  expected: "string",
2297
2352
  value: input3.id
@@ -2339,15 +2394,15 @@ var validDescrStatsRequest = (input) => {
2339
2394
  path: _path2 + ".values",
2340
2395
  expected: "(TermValues | undefined)",
2341
2396
  value: input3.values
2342
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2397
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2343
2398
  path: _path2 + ".values",
2344
2399
  expected: "(TermValues | undefined)",
2345
2400
  value: input3.values
2346
- }), ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
2401
+ }), true, ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
2347
2402
  path: _path2 + ".bins",
2348
2403
  expected: "PresetNumericBins",
2349
2404
  value: input3.bins
2350
- })) && $vo21(input3.bins, _path2 + ".bins", _exceptionable2) || $report(_exceptionable2, {
2405
+ })) && $vo23(input3.bins, _path2 + ".bins", _exceptionable2) || $report(_exceptionable2, {
2351
2406
  path: _path2 + ".bins",
2352
2407
  expected: "PresetNumericBins",
2353
2408
  value: input3.bins
@@ -2357,14 +2412,14 @@ var validDescrStatsRequest = (input) => {
2357
2412
  value: input3.unit
2358
2413
  }), void 0 === input3.continuousColorScale || ("object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale || $report(_exceptionable2, {
2359
2414
  path: _path2 + ".continuousColorScale",
2360
- expected: "(__type.o3 | undefined)",
2415
+ expected: "(__type.o4 | undefined)",
2361
2416
  value: input3.continuousColorScale
2362
- })) && $vo27(input3.continuousColorScale, _path2 + ".continuousColorScale", _exceptionable2) || $report(_exceptionable2, {
2417
+ })) && $vo29(input3.continuousColorScale, _path2 + ".continuousColorScale", _exceptionable2) || $report(_exceptionable2, {
2363
2418
  path: _path2 + ".continuousColorScale",
2364
- expected: "(__type.o3 | undefined)",
2419
+ expected: "(__type.o4 | undefined)",
2365
2420
  value: input3.continuousColorScale
2366
2421
  })].every((flag) => flag);
2367
- const $vo54 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2422
+ const $vo56 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2368
2423
  path: _path2 + ".id",
2369
2424
  expected: "string",
2370
2425
  value: input3.id
@@ -2412,12 +2467,12 @@ var validDescrStatsRequest = (input) => {
2412
2467
  path: _path2 + ".values",
2413
2468
  expected: "(TermValues | undefined)",
2414
2469
  value: input3.values
2415
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2470
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2416
2471
  path: _path2 + ".values",
2417
2472
  expected: "(TermValues | undefined)",
2418
2473
  value: input3.values
2419
- })].every((flag) => flag);
2420
- const $vo55 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2474
+ }), true].every((flag) => flag);
2475
+ const $vo57 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2421
2476
  path: _path2 + ".id",
2422
2477
  expected: "string",
2423
2478
  value: input3.id
@@ -2465,15 +2520,15 @@ var validDescrStatsRequest = (input) => {
2465
2520
  path: _path2 + ".values",
2466
2521
  expected: "(TermValues | undefined)",
2467
2522
  value: input3.values
2468
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2523
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2469
2524
  path: _path2 + ".values",
2470
2525
  expected: "(TermValues | undefined)",
2471
2526
  value: input3.values
2472
- }), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
2527
+ }), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
2473
2528
  path: _path2 + ".groupsetting",
2474
2529
  expected: "EnabledTermGroupSetting",
2475
2530
  value: input3.groupsetting
2476
- })) && $vo16(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
2531
+ })) && $vo18(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
2477
2532
  path: _path2 + ".groupsetting",
2478
2533
  expected: "EnabledTermGroupSetting",
2479
2534
  value: input3.groupsetting
@@ -2498,7 +2553,7 @@ var validDescrStatsRequest = (input) => {
2498
2553
  expected: "(number | undefined)",
2499
2554
  value: input3.stop
2500
2555
  })].every((flag) => flag);
2501
- const $vo56 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2556
+ const $vo58 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2502
2557
  path: _path2 + ".id",
2503
2558
  expected: "string",
2504
2559
  value: input3.id
@@ -2546,15 +2601,15 @@ var validDescrStatsRequest = (input) => {
2546
2601
  path: _path2 + ".values",
2547
2602
  expected: "(TermValues | undefined)",
2548
2603
  value: input3.values
2549
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2604
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2550
2605
  path: _path2 + ".values",
2551
2606
  expected: "(TermValues | undefined)",
2552
2607
  value: input3.values
2553
- }), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
2608
+ }), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
2554
2609
  path: _path2 + ".groupsetting",
2555
2610
  expected: "EnabledTermGroupSetting",
2556
2611
  value: input3.groupsetting
2557
- })) && $vo16(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
2612
+ })) && $vo18(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
2558
2613
  path: _path2 + ".groupsetting",
2559
2614
  expected: "EnabledTermGroupSetting",
2560
2615
  value: input3.groupsetting
@@ -2575,7 +2630,7 @@ var validDescrStatsRequest = (input) => {
2575
2630
  expected: "number",
2576
2631
  value: input3.stop
2577
2632
  })].every((flag) => flag);
2578
- const $vo57 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2633
+ const $vo59 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2579
2634
  path: _path2 + ".id",
2580
2635
  expected: "string",
2581
2636
  value: input3.id
@@ -2623,11 +2678,11 @@ var validDescrStatsRequest = (input) => {
2623
2678
  path: _path2 + ".values",
2624
2679
  expected: "(TermValues | undefined)",
2625
2680
  value: input3.values
2626
- })) && $vo14(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2681
+ })) && $vo16(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2627
2682
  path: _path2 + ".values",
2628
2683
  expected: "(TermValues | undefined)",
2629
2684
  value: input3.values
2630
- }), void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
2685
+ }), true, void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
2631
2686
  path: _path2 + ".reachedVariantLimit",
2632
2687
  expected: "(boolean | undefined)",
2633
2688
  value: input3.reachedVariantLimit
@@ -2639,7 +2694,7 @@ var validDescrStatsRequest = (input) => {
2639
2694
  path: _path2 + ".snps[" + _index48 + "]",
2640
2695
  expected: "SnpsEntry",
2641
2696
  value: elem
2642
- })) && $vo48(elem, _path2 + ".snps[" + _index48 + "]", _exceptionable2) || $report(_exceptionable2, {
2697
+ })) && $vo50(elem, _path2 + ".snps[" + _index48 + "]", _exceptionable2) || $report(_exceptionable2, {
2643
2698
  path: _path2 + ".snps[" + _index48 + "]",
2644
2699
  expected: "SnpsEntry",
2645
2700
  value: elem
@@ -2648,7 +2703,7 @@ var validDescrStatsRequest = (input) => {
2648
2703
  expected: "(Array<SnpsEntry> | undefined)",
2649
2704
  value: input3.snps
2650
2705
  })].every((flag) => flag);
2651
- const $vo58 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2706
+ const $vo60 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
2652
2707
  path: _path2 + ".id",
2653
2708
  expected: "string",
2654
2709
  value: input3.id
@@ -2696,12 +2751,12 @@ var validDescrStatsRequest = (input) => {
2696
2751
  path: _path2 + ".values",
2697
2752
  expected: "(TermValues & SampleLstTermValues | undefined)",
2698
2753
  value: input3.values
2699
- })) && $vo59(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2754
+ })) && $vo61(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
2700
2755
  path: _path2 + ".values",
2701
2756
  expected: "(TermValues & SampleLstTermValues | undefined)",
2702
2757
  value: input3.values
2703
- })].every((flag) => flag);
2704
- const $vo59 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
2758
+ }), true].every((flag) => flag);
2759
+ const $vo61 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
2705
2760
  const value = input3[key];
2706
2761
  if (void 0 === value)
2707
2762
  return true;
@@ -2710,7 +2765,7 @@ var validDescrStatsRequest = (input) => {
2710
2765
  path: _path2 + $join(key),
2711
2766
  expected: "BaseValue & { name: string; inuse: boolean; list: { sampleId: string; sample: string; }[]; values: any; }",
2712
2767
  value
2713
- })) && $vo60(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
2768
+ })) && $vo62(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
2714
2769
  path: _path2 + $join(key),
2715
2770
  expected: "BaseValue & { name: string; inuse: boolean; list: { sampleId: string; sample: string; }[]; values: any; }",
2716
2771
  value
@@ -2720,14 +2775,14 @@ var validDescrStatsRequest = (input) => {
2720
2775
  path: _path2 + $join(key),
2721
2776
  expected: "BaseValue & { name: string; inuse: boolean; list: { sampleId: string; sample: string; }[]; values: any; }",
2722
2777
  value
2723
- })) && $vo60(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
2778
+ })) && $vo62(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
2724
2779
  path: _path2 + $join(key),
2725
2780
  expected: "BaseValue & { name: string; inuse: boolean; list: { sampleId: string; sample: string; }[]; values: any; }",
2726
2781
  value
2727
2782
  });
2728
2783
  return true;
2729
2784
  }).every((flag) => flag)].every((flag) => flag);
2730
- const $vo60 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.key || "string" === typeof input3.key || $report(_exceptionable2, {
2785
+ const $vo62 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.key || "string" === typeof input3.key || $report(_exceptionable2, {
2731
2786
  path: _path2 + ".key",
2732
2787
  expected: "(string | undefined)",
2733
2788
  value: input3.key
@@ -2755,7 +2810,7 @@ var validDescrStatsRequest = (input) => {
2755
2810
  path: _path2 + ".filter",
2756
2811
  expected: "(Filter | undefined)",
2757
2812
  value: input3.filter
2758
- })) && $vo11(input3.filter, _path2 + ".filter", _exceptionable2) || $report(_exceptionable2, {
2813
+ })) && $vo13(input3.filter, _path2 + ".filter", _exceptionable2) || $report(_exceptionable2, {
2759
2814
  path: _path2 + ".filter",
2760
2815
  expected: "(Filter | undefined)",
2761
2816
  value: input3.filter
@@ -2773,18 +2828,18 @@ var validDescrStatsRequest = (input) => {
2773
2828
  value: input3.list
2774
2829
  })) && input3.list.map((elem, _index51) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
2775
2830
  path: _path2 + ".list[" + _index51 + "]",
2776
- expected: "__type.o7",
2831
+ expected: "__type.o8",
2777
2832
  value: elem
2778
- })) && $vo61(elem, _path2 + ".list[" + _index51 + "]", _exceptionable2) || $report(_exceptionable2, {
2833
+ })) && $vo63(elem, _path2 + ".list[" + _index51 + "]", _exceptionable2) || $report(_exceptionable2, {
2779
2834
  path: _path2 + ".list[" + _index51 + "]",
2780
- expected: "__type.o7",
2835
+ expected: "__type.o8",
2781
2836
  value: elem
2782
2837
  })).every((flag) => flag) || $report(_exceptionable2, {
2783
2838
  path: _path2 + ".list",
2784
2839
  expected: "Array<__type>.o3",
2785
2840
  value: input3.list
2786
2841
  }), true].every((flag) => flag);
2787
- const $vo61 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.sampleId || $report(_exceptionable2, {
2842
+ const $vo63 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.sampleId || $report(_exceptionable2, {
2788
2843
  path: _path2 + ".sampleId",
2789
2844
  expected: "string",
2790
2845
  value: input3.sampleId
@@ -2793,11 +2848,11 @@ var validDescrStatsRequest = (input) => {
2793
2848
  expected: "string",
2794
2849
  value: input3.sample
2795
2850
  })].every((flag) => flag);
2796
- const $vo62 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
2851
+ const $vo64 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
2797
2852
  path: _path2 + ".hiddenValues",
2798
2853
  expected: "(HiddenValues | undefined)",
2799
2854
  value: input3.hiddenValues
2800
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
2855
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
2801
2856
  path: _path2 + ".hiddenValues",
2802
2857
  expected: "(HiddenValues | undefined)",
2803
2858
  value: input3.hiddenValues
@@ -2817,16 +2872,16 @@ var validDescrStatsRequest = (input) => {
2817
2872
  path: _path2 + ".reuseId",
2818
2873
  expected: "(string | undefined)",
2819
2874
  value: input3.reuseId
2820
- }), void 0 === input3.type || "values" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "custom-samplelst" === input3.type || $report(_exceptionable2, {
2875
+ }), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
2821
2876
  path: _path2 + ".type",
2822
- expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
2877
+ expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
2823
2878
  value: input3.type
2824
2879
  })].every((flag) => flag);
2825
- const $vo63 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
2880
+ const $vo65 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
2826
2881
  path: _path2 + ".hiddenValues",
2827
2882
  expected: "(HiddenValues | undefined)",
2828
2883
  value: input3.hiddenValues
2829
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
2884
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
2830
2885
  path: _path2 + ".hiddenValues",
2831
2886
  expected: "(HiddenValues | undefined)",
2832
2887
  value: input3.hiddenValues
@@ -2887,11 +2942,11 @@ var validDescrStatsRequest = (input) => {
2887
2942
  expected: "(boolean | undefined)",
2888
2943
  value: input3.value_by_computable_grade
2889
2944
  }), true].every((flag) => flag);
2890
- const $vo64 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
2945
+ const $vo66 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
2891
2946
  path: _path2 + ".hiddenValues",
2892
2947
  expected: "(HiddenValues | undefined)",
2893
2948
  value: input3.hiddenValues
2894
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
2949
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
2895
2950
  path: _path2 + ".hiddenValues",
2896
2951
  expected: "(HiddenValues | undefined)",
2897
2952
  value: input3.hiddenValues
@@ -2952,11 +3007,11 @@ var validDescrStatsRequest = (input) => {
2952
3007
  expected: '"values"',
2953
3008
  value: input3.type
2954
3009
  })].every((flag) => flag);
2955
- const $vo65 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
3010
+ const $vo67 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
2956
3011
  path: _path2 + ".hiddenValues",
2957
3012
  expected: "(HiddenValues | undefined)",
2958
3013
  value: input3.hiddenValues
2959
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
3014
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
2960
3015
  path: _path2 + ".hiddenValues",
2961
3016
  expected: "(HiddenValues | undefined)",
2962
3017
  value: input3.hiddenValues
@@ -3008,6 +3063,71 @@ var validDescrStatsRequest = (input) => {
3008
3063
  path: _path2 + ".origin",
3009
3064
  expected: "(string | undefined)",
3010
3065
  value: input3.origin
3066
+ }), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode || $report(_exceptionable2, {
3067
+ path: _path2 + ".mode",
3068
+ expected: '("binary" | "continuous" | "cox" | "cuminc" | "discrete" | "spline" | undefined)',
3069
+ value: input3.mode
3070
+ }), void 0 === input3.type || "filter" === input3.type || $report(_exceptionable2, {
3071
+ path: _path2 + ".type",
3072
+ expected: '("filter" | undefined)',
3073
+ value: input3.type
3074
+ })].every((flag) => flag);
3075
+ const $vo68 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
3076
+ path: _path2 + ".hiddenValues",
3077
+ expected: "(HiddenValues | undefined)",
3078
+ value: input3.hiddenValues
3079
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
3080
+ path: _path2 + ".hiddenValues",
3081
+ expected: "(HiddenValues | undefined)",
3082
+ value: input3.hiddenValues
3083
+ }), void 0 === input3.isAtomic || true === input3.isAtomic || $report(_exceptionable2, {
3084
+ path: _path2 + ".isAtomic",
3085
+ expected: "(true | undefined)",
3086
+ value: input3.isAtomic
3087
+ }), void 0 === input3.name || "string" === typeof input3.name || $report(_exceptionable2, {
3088
+ path: _path2 + ".name",
3089
+ expected: "(string | undefined)",
3090
+ value: input3.name
3091
+ }), void 0 === input3.reuseId || "string" === typeof input3.reuseId || $report(_exceptionable2, {
3092
+ path: _path2 + ".reuseId",
3093
+ expected: "(string | undefined)",
3094
+ value: input3.reuseId
3095
+ }), void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff || $report(_exceptionable2, {
3096
+ path: _path2 + ".cnvGainCutoff",
3097
+ expected: "(number | undefined)",
3098
+ value: input3.cnvGainCutoff
3099
+ }), void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength || $report(_exceptionable2, {
3100
+ path: _path2 + ".cnvMaxLength",
3101
+ expected: "(number | undefined)",
3102
+ value: input3.cnvMaxLength
3103
+ }), void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue || $report(_exceptionable2, {
3104
+ path: _path2 + ".cnvMinAbsValue",
3105
+ expected: "(number | undefined)",
3106
+ value: input3.cnvMinAbsValue
3107
+ }), void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff || $report(_exceptionable2, {
3108
+ path: _path2 + ".cnvLossCutoff",
3109
+ expected: "(number | undefined)",
3110
+ value: input3.cnvLossCutoff
3111
+ }), (Array.isArray(input3.exclude) || $report(_exceptionable2, {
3112
+ path: _path2 + ".exclude",
3113
+ expected: "Array<string>",
3114
+ value: input3.exclude
3115
+ })) && input3.exclude.map((elem, _index55) => "string" === typeof elem || $report(_exceptionable2, {
3116
+ path: _path2 + ".exclude[" + _index55 + "]",
3117
+ expected: "string",
3118
+ value: elem
3119
+ })).every((flag) => flag) || $report(_exceptionable2, {
3120
+ path: _path2 + ".exclude",
3121
+ expected: "Array<string>",
3122
+ value: input3.exclude
3123
+ }), void 0 === input3.dt || "number" === typeof input3.dt || $report(_exceptionable2, {
3124
+ path: _path2 + ".dt",
3125
+ expected: "(number | undefined)",
3126
+ value: input3.dt
3127
+ }), void 0 === input3.origin || "string" === typeof input3.origin || $report(_exceptionable2, {
3128
+ path: _path2 + ".origin",
3129
+ expected: "(string | undefined)",
3130
+ value: input3.origin
3011
3131
  }), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || $report(_exceptionable2, {
3012
3132
  path: _path2 + ".mode",
3013
3133
  expected: '("binary" | "discrete" | undefined)',
@@ -3021,11 +3141,11 @@ var validDescrStatsRequest = (input) => {
3021
3141
  expected: "number",
3022
3142
  value: input3.predefined_groupset_idx
3023
3143
  })].every((flag) => flag);
3024
- const $vo66 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
3144
+ const $vo69 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
3025
3145
  path: _path2 + ".hiddenValues",
3026
3146
  expected: "(HiddenValues | undefined)",
3027
3147
  value: input3.hiddenValues
3028
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
3148
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
3029
3149
  path: _path2 + ".hiddenValues",
3030
3150
  expected: "(HiddenValues | undefined)",
3031
3151
  value: input3.hiddenValues
@@ -3061,8 +3181,8 @@ var validDescrStatsRequest = (input) => {
3061
3181
  path: _path2 + ".exclude",
3062
3182
  expected: "Array<string>",
3063
3183
  value: input3.exclude
3064
- })) && input3.exclude.map((elem, _index55) => "string" === typeof elem || $report(_exceptionable2, {
3065
- path: _path2 + ".exclude[" + _index55 + "]",
3184
+ })) && input3.exclude.map((elem, _index56) => "string" === typeof elem || $report(_exceptionable2, {
3185
+ path: _path2 + ".exclude[" + _index56 + "]",
3066
3186
  expected: "string",
3067
3187
  value: elem
3068
3188
  })).every((flag) => flag) || $report(_exceptionable2, {
@@ -3089,16 +3209,16 @@ var validDescrStatsRequest = (input) => {
3089
3209
  path: _path2 + ".customset",
3090
3210
  expected: "BaseGroupSet",
3091
3211
  value: input3.customset
3092
- })) && $vo7(input3.customset, _path2 + ".customset", _exceptionable2) || $report(_exceptionable2, {
3212
+ })) && $vo9(input3.customset, _path2 + ".customset", _exceptionable2) || $report(_exceptionable2, {
3093
3213
  path: _path2 + ".customset",
3094
3214
  expected: "BaseGroupSet",
3095
3215
  value: input3.customset
3096
3216
  })].every((flag) => flag);
3097
- const $vo67 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
3217
+ const $vo70 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
3098
3218
  path: _path2 + ".hiddenValues",
3099
3219
  expected: "(HiddenValues | undefined)",
3100
3220
  value: input3.hiddenValues
3101
- })) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
3221
+ })) && $vo5(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
3102
3222
  path: _path2 + ".hiddenValues",
3103
3223
  expected: "(HiddenValues | undefined)",
3104
3224
  value: input3.hiddenValues
@@ -3118,46 +3238,46 @@ var validDescrStatsRequest = (input) => {
3118
3238
  path: _path2 + ".reuseId",
3119
3239
  expected: "(string | undefined)",
3120
3240
  value: input3.reuseId
3121
- }), void 0 === input3.type || "values" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "custom-samplelst" === input3.type || $report(_exceptionable2, {
3241
+ }), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
3122
3242
  path: _path2 + ".type",
3123
- expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
3243
+ expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
3124
3244
  value: input3.type
3125
3245
  }), ("object" === typeof input3.groups && null !== input3.groups && false === Array.isArray(input3.groups) || $report(_exceptionable2, {
3126
3246
  path: _path2 + ".groups",
3127
3247
  expected: "SampleLstTermValues",
3128
3248
  value: input3.groups
3129
- })) && $vo68(input3.groups, _path2 + ".groups", _exceptionable2) || $report(_exceptionable2, {
3249
+ })) && $vo71(input3.groups, _path2 + ".groups", _exceptionable2) || $report(_exceptionable2, {
3130
3250
  path: _path2 + ".groups",
3131
3251
  expected: "SampleLstTermValues",
3132
3252
  value: input3.groups
3133
3253
  })].every((flag) => flag);
3134
- const $vo68 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
3254
+ const $vo71 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
3135
3255
  const value = input3[key];
3136
3256
  if (void 0 === value)
3137
3257
  return true;
3138
3258
  if (RegExp(/(.*)/).test(key))
3139
3259
  return ("object" === typeof value && null !== value || $report(_exceptionable2, {
3140
3260
  path: _path2 + $join(key),
3141
- expected: "__type.o8",
3261
+ expected: "__type.o9",
3142
3262
  value
3143
- })) && $vo69(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
3263
+ })) && $vo72(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
3144
3264
  path: _path2 + $join(key),
3145
- expected: "__type.o8",
3265
+ expected: "__type.o9",
3146
3266
  value
3147
3267
  });
3148
3268
  if (RegExp(/^[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(key))
3149
3269
  return ("object" === typeof value && null !== value || $report(_exceptionable2, {
3150
3270
  path: _path2 + $join(key),
3151
- expected: "__type.o8",
3271
+ expected: "__type.o9",
3152
3272
  value
3153
- })) && $vo69(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
3273
+ })) && $vo72(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
3154
3274
  path: _path2 + $join(key),
3155
- expected: "__type.o8",
3275
+ expected: "__type.o9",
3156
3276
  value
3157
3277
  });
3158
3278
  return true;
3159
3279
  }).every((flag) => flag)].every((flag) => flag);
3160
- const $vo69 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
3280
+ const $vo72 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
3161
3281
  path: _path2 + ".name",
3162
3282
  expected: "string",
3163
3283
  value: input3.name
@@ -3169,13 +3289,13 @@ var validDescrStatsRequest = (input) => {
3169
3289
  path: _path2 + ".list",
3170
3290
  expected: "Array<__type>.o3",
3171
3291
  value: input3.list
3172
- })) && input3.list.map((elem, _index56) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
3173
- path: _path2 + ".list[" + _index56 + "]",
3174
- expected: "__type.o7",
3292
+ })) && input3.list.map((elem, _index57) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
3293
+ path: _path2 + ".list[" + _index57 + "]",
3294
+ expected: "__type.o8",
3175
3295
  value: elem
3176
- })) && $vo61(elem, _path2 + ".list[" + _index56 + "]", _exceptionable2) || $report(_exceptionable2, {
3177
- path: _path2 + ".list[" + _index56 + "]",
3178
- expected: "__type.o7",
3296
+ })) && $vo63(elem, _path2 + ".list[" + _index57 + "]", _exceptionable2) || $report(_exceptionable2, {
3297
+ path: _path2 + ".list[" + _index57 + "]",
3298
+ expected: "__type.o8",
3179
3299
  value: elem
3180
3300
  })).every((flag) => flag) || $report(_exceptionable2, {
3181
3301
  path: _path2 + ".list",
@@ -3184,9 +3304,9 @@ var validDescrStatsRequest = (input) => {
3184
3304
  }), true].every((flag) => flag);
3185
3305
  const $vu0 = (input3, _path2, _exceptionable2 = true) => (() => {
3186
3306
  if ("string" === typeof input3.type)
3187
- return $vo8(input3, _path2, _exceptionable2);
3188
- if ("filter" === input3.type)
3189
3307
  return $vo10(input3, _path2, _exceptionable2);
3308
+ if ("filter" === input3.type)
3309
+ return $vo12(input3, _path2, _exceptionable2);
3190
3310
  return $report(_exceptionable2, {
3191
3311
  path: _path2,
3192
3312
  expected: "(ValuesGroup | FilterGroup)",
@@ -3195,27 +3315,27 @@ var validDescrStatsRequest = (input) => {
3195
3315
  })();
3196
3316
  const $vu1 = (input3, _path2, _exceptionable2 = true) => (() => {
3197
3317
  if (void 0 !== input3.type)
3198
- return $vo11(input3, _path2, _exceptionable2);
3318
+ return $vo13(input3, _path2, _exceptionable2);
3199
3319
  if (void 0 !== input3.ranges)
3200
- return $vo19(input3, _path2, _exceptionable2);
3201
- return $vo12(input3, _path2, false) || $vo29(input3, _path2, false) || $vo32(input3, _path2, false);
3320
+ return $vo21(input3, _path2, _exceptionable2);
3321
+ return $vo14(input3, _path2, false) || $vo31(input3, _path2, false) || $vo34(input3, _path2, false);
3202
3322
  })();
3203
3323
  const $vu2 = (input3, _path2, _exceptionable2 = true) => (() => {
3204
3324
  if (true === input3.startunbounded)
3205
- return $vo23(input3, _path2, _exceptionable2);
3206
- if (true === input3.stopunbounded)
3207
3325
  return $vo25(input3, _path2, _exceptionable2);
3208
- return $vo24(input3, _path2, _exceptionable2);
3326
+ if (true === input3.stopunbounded)
3327
+ return $vo27(input3, _path2, _exceptionable2);
3328
+ return $vo26(input3, _path2, _exceptionable2);
3209
3329
  })();
3210
3330
  const $vu3 = (input3, _path2, _exceptionable2 = true) => (() => {
3211
3331
  if (2 === input3.dt)
3212
- return $vo38(input3, _path2, _exceptionable2);
3332
+ return $vo40(input3, _path2, _exceptionable2);
3213
3333
  if (5 === input3.dt)
3214
- return $vo37(input3, _path2, _exceptionable2);
3334
+ return $vo39(input3, _path2, _exceptionable2);
3215
3335
  if (4 === input3.dt)
3216
- return $vo36(input3, _path2, _exceptionable2);
3336
+ return $vo38(input3, _path2, _exceptionable2);
3217
3337
  if (1 === input3.dt)
3218
- return $vo35(input3, _path2, _exceptionable2);
3338
+ return $vo37(input3, _path2, _exceptionable2);
3219
3339
  return $report(_exceptionable2, {
3220
3340
  path: _path2,
3221
3341
  expected: "(FusionTvsValue | SVTvsValue | CNVTvsValue | SNVIndelTvsValue)",
@@ -3224,9 +3344,9 @@ var validDescrStatsRequest = (input) => {
3224
3344
  })();
3225
3345
  const $vu4 = (input3, _path2, _exceptionable2 = true) => (() => {
3226
3346
  if (true === input3.startunbounded)
3227
- return $vo23(input3, _path2, _exceptionable2);
3347
+ return $vo25(input3, _path2, _exceptionable2);
3228
3348
  if (void 0 !== input3.start)
3229
- return $vo24(input3, _path2, _exceptionable2);
3349
+ return $vo26(input3, _path2, _exceptionable2);
3230
3350
  return $report(_exceptionable2, {
3231
3351
  path: _path2,
3232
3352
  expected: "(StartUnboundedBin | FullyBoundedBin)",
@@ -3235,9 +3355,9 @@ var validDescrStatsRequest = (input) => {
3235
3355
  })();
3236
3356
  const $vu5 = (input3, _path2, _exceptionable2 = true) => (() => {
3237
3357
  if (void 0 !== input3.stop)
3238
- return $vo24(input3, _path2, _exceptionable2);
3358
+ return $vo26(input3, _path2, _exceptionable2);
3239
3359
  if (true === input3.stopunbounded)
3240
- return $vo25(input3, _path2, _exceptionable2);
3360
+ return $vo27(input3, _path2, _exceptionable2);
3241
3361
  return $report(_exceptionable2, {
3242
3362
  path: _path2,
3243
3363
  expected: "(FullyBoundedBin | StopUnboundedBin)",
@@ -3246,32 +3366,28 @@ var validDescrStatsRequest = (input) => {
3246
3366
  })();
3247
3367
  const $vu6 = (input3, _path2, _exceptionable2 = true) => (() => {
3248
3368
  if (void 0 !== input3.type)
3249
- return $vo1(input3, _path2, _exceptionable2);
3250
- return $vo51(input3, _path2, false) || $vo44(input3, _path2, false) || $vo39(input3, _path2, false);
3369
+ return $vo2(input3, _path2, _exceptionable2);
3370
+ return $vo53(input3, _path2, false) || $vo46(input3, _path2, false) || $vo41(input3, _path2, false);
3251
3371
  })();
3252
3372
  const $vu7 = (input3, _path2, _exceptionable2 = true) => (() => {
3253
3373
  if ("values" === input3.type)
3254
- return $vo3(input3, _path2, _exceptionable2);
3374
+ return $vo4(input3, _path2, _exceptionable2);
3255
3375
  if ("predefined-groupset" === input3.type)
3256
- return $vo5(input3, _path2, _exceptionable2);
3376
+ return $vo7(input3, _path2, _exceptionable2);
3257
3377
  if ("custom-groupset" === input3.type)
3258
- return $vo6(input3, _path2, _exceptionable2);
3259
- return $report(_exceptionable2, {
3260
- path: _path2,
3261
- expected: "(ValuesQ | PredefinedGroupSettingQ | CustomGroupSettingQ)",
3262
- value: input3
3263
- });
3378
+ return $vo8(input3, _path2, _exceptionable2);
3379
+ return $vo6(input3, _path2, _exceptionable2);
3264
3380
  })();
3265
3381
  const $vu8 = (input3, _path2, _exceptionable2 = true) => (() => {
3266
- if (Array.isArray(input3.lst) && input3.lst.map((elem, _index57) => "object" === typeof elem && null !== elem && $vo17(elem, _path2 + ".lst[" + _index57 + "]", false)).every((flag) => flag))
3267
- return $vo16(input3, _path2, _exceptionable2);
3268
- return $vo18(input3, _path2, _exceptionable2);
3382
+ if (Array.isArray(input3.lst) && input3.lst.map((elem, _index58) => "object" === typeof elem && null !== elem && $vo19(elem, _path2 + ".lst[" + _index58 + "]", false)).every((flag) => flag))
3383
+ return $vo18(input3, _path2, _exceptionable2);
3384
+ return $vo20(input3, _path2, _exceptionable2);
3269
3385
  })();
3270
3386
  const $vu9 = (input3, _path2, _exceptionable2 = true) => (() => {
3271
3387
  if ("regular-bin" === input3.type)
3272
- return $vo22(input3, _path2, _exceptionable2);
3388
+ return $vo24(input3, _path2, _exceptionable2);
3273
3389
  if ("custom-bin" === input3.type)
3274
- return $vo26(input3, _path2, _exceptionable2);
3390
+ return $vo28(input3, _path2, _exceptionable2);
3275
3391
  return $report(_exceptionable2, {
3276
3392
  path: _path2,
3277
3393
  expected: "(RegularNumericBinConfig | CustomNumericBinConfig)",
@@ -3280,9 +3396,9 @@ var validDescrStatsRequest = (input) => {
3280
3396
  })();
3281
3397
  const $vu10 = (input3, _path2, _exceptionable2 = true) => (() => {
3282
3398
  if ("gene" === input3.kind)
3283
- return $vo33(input3, _path2, _exceptionable2);
3399
+ return $vo35(input3, _path2, _exceptionable2);
3284
3400
  if ("coord" === input3.kind)
3285
- return $vo34(input3, _path2, _exceptionable2);
3401
+ return $vo36(input3, _path2, _exceptionable2);
3286
3402
  return $report(_exceptionable2, {
3287
3403
  path: _path2,
3288
3404
  expected: "(GeneVariantGeneTerm | GeneVariantCoordTerm)",
@@ -3291,139 +3407,53 @@ var validDescrStatsRequest = (input) => {
3291
3407
  })();
3292
3408
  const $vu11 = (input3, _path2, _exceptionable2 = true) => (() => {
3293
3409
  if ("regular-bin" === input3.type)
3294
- return $vo22(input3, _path2, _exceptionable2);
3410
+ return $vo24(input3, _path2, _exceptionable2);
3295
3411
  if ("continuous" === input3.mode)
3296
- return $vo41(input3, _path2, _exceptionable2);
3412
+ return $vo43(input3, _path2, _exceptionable2);
3297
3413
  if ("spline" === input3.mode)
3298
- return $vo42(input3, _path2, _exceptionable2);
3299
- return $vo26(input3, _path2, false) || $vo40(input3, _path2, false);
3414
+ return $vo44(input3, _path2, _exceptionable2);
3415
+ return $vo28(input3, _path2, false) || $vo42(input3, _path2, false);
3300
3416
  })();
3301
3417
  const $vu12 = (input3, _path2, _exceptionable2 = true) => (() => {
3302
3418
  if (void 0 !== input3.ranges)
3303
- return $vo19(input3, _path2, _exceptionable2);
3304
- return $vo12(input3, _path2, false) || $vo29(input3, _path2, false) || $vo32(input3, _path2, false);
3419
+ return $vo21(input3, _path2, _exceptionable2);
3420
+ return $vo14(input3, _path2, false) || $vo31(input3, _path2, false) || $vo34(input3, _path2, false);
3305
3421
  })();
3306
3422
  const $vu13 = (input3, _path2, _exceptionable2 = true) => (() => {
3307
3423
  if ("categorical" === input3.type)
3308
- return $vo52(input3, _path2, _exceptionable2);
3424
+ return $vo54(input3, _path2, _exceptionable2);
3309
3425
  if ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type)
3310
- return $vo53(input3, _path2, _exceptionable2);
3426
+ return $vo55(input3, _path2, _exceptionable2);
3311
3427
  if ("condition" === input3.type)
3312
- return $vo54(input3, _path2, _exceptionable2);
3428
+ return $vo56(input3, _path2, _exceptionable2);
3313
3429
  if ("gene" === input3.kind)
3314
- return $vo55(input3, _path2, _exceptionable2);
3430
+ return $vo57(input3, _path2, _exceptionable2);
3315
3431
  if ("coord" === input3.kind)
3316
- return $vo56(input3, _path2, _exceptionable2);
3317
- return $vo57(input3, _path2, false) || $vo58(input3, _path2, false);
3432
+ return $vo58(input3, _path2, _exceptionable2);
3433
+ return $vo59(input3, _path2, false) || $vo60(input3, _path2, false);
3318
3434
  })();
3319
3435
  const $vu14 = (input3, _path2, _exceptionable2 = true) => (() => {
3320
3436
  if (void 0 !== input3.bin_size)
3321
- return $vo22(input3, _path2, _exceptionable2);
3437
+ return $vo24(input3, _path2, _exceptionable2);
3322
3438
  if (void 0 !== input3.knots)
3323
- return $vo42(input3, _path2, _exceptionable2);
3439
+ return $vo44(input3, _path2, _exceptionable2);
3324
3440
  if (void 0 !== input3.AFcutoff)
3325
- return $vo45(input3, _path2, _exceptionable2);
3441
+ return $vo47(input3, _path2, _exceptionable2);
3326
3442
  if (void 0 !== input3.timeScale)
3327
- return $vo63(input3, _path2, _exceptionable2);
3443
+ return $vo65(input3, _path2, _exceptionable2);
3328
3444
  return (() => {
3329
3445
  if (void 0 !== input3.groups)
3330
- return $vo67(input3, _path2, _exceptionable2);
3331
- return $vo3(input3, _path2, false) || $vo5(input3, _path2, false) || $vo6(input3, _path2, false) || $vo26(input3, _path2, false) || $vo40(input3, _path2, false) || $vo41(input3, _path2, false) || $vo62(input3, _path2, false) || $vo64(input3, _path2, false) || $vo65(input3, _path2, false) || $vo66(input3, _path2, false);
3446
+ return $vo70(input3, _path2, _exceptionable2);
3447
+ return $vo6(input3, _path2, false) || $vo64(input3, _path2, false) || $vo4(input3, _path2, false) || $vo7(input3, _path2, false) || $vo8(input3, _path2, false) || $vo28(input3, _path2, false) || $vo42(input3, _path2, false) || $vo43(input3, _path2, false) || $vo67(input3, _path2, false) || $vo66(input3, _path2, false) || $vo68(input3, _path2, false) || $vo69(input3, _path2, false);
3332
3448
  })();
3333
3449
  })();
3334
3450
  return ("object" === typeof input2 && null !== input2 || $report(true, {
3335
3451
  path: _path + "",
3336
- expected: "DescrStatsRequest",
3452
+ expected: "TermsByIdsResponse",
3337
3453
  value: input2
3338
3454
  })) && $vo0(input2, _path + "", true) || $report(true, {
3339
3455
  path: _path + "",
3340
- expected: "DescrStatsRequest",
3341
- value: input2
3342
- });
3343
- })(input, "$input", true);
3344
- }
3345
- const success = 0 === errors.length;
3346
- return {
3347
- success,
3348
- errors,
3349
- data: success ? input : void 0
3350
- };
3351
- };
3352
- var validDescrStatsResponse = (input) => {
3353
- const errors = [];
3354
- const __is = (input2) => {
3355
- const $io0 = (input3) => "number" === typeof input3.status && "string" === typeof input3.error;
3356
- const $io1 = (input3) => Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io2(elem));
3357
- const $io2 = (input3) => "string" === typeof input3.id && "string" === typeof input3.label && "number" === typeof input3.value;
3358
- const $iu0 = (input3) => (() => {
3359
- if (void 0 !== input3.status)
3360
- return $io0(input3);
3361
- if (void 0 !== input3.values)
3362
- return $io1(input3);
3363
- return false;
3364
- })();
3365
- return "object" === typeof input2 && null !== input2 && $iu0(input2);
3366
- };
3367
- if (false === __is(input)) {
3368
- const $report = import_typia.createValidate.report(errors);
3369
- ((input2, _path, _exceptionable = true) => {
3370
- const $vo0 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.status || $report(_exceptionable2, {
3371
- path: _path2 + ".status",
3372
- expected: "number",
3373
- value: input3.status
3374
- }), "string" === typeof input3.error || $report(_exceptionable2, {
3375
- path: _path2 + ".error",
3376
- expected: "string",
3377
- value: input3.error
3378
- })].every((flag) => flag);
3379
- const $vo1 = (input3, _path2, _exceptionable2 = true) => [(Array.isArray(input3.values) || $report(_exceptionable2, {
3380
- path: _path2 + ".values",
3381
- expected: "Array<entries>",
3382
- value: input3.values
3383
- })) && input3.values.map((elem, _index1) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
3384
- path: _path2 + ".values[" + _index1 + "]",
3385
- expected: "entries",
3386
- value: elem
3387
- })) && $vo2(elem, _path2 + ".values[" + _index1 + "]", _exceptionable2) || $report(_exceptionable2, {
3388
- path: _path2 + ".values[" + _index1 + "]",
3389
- expected: "entries",
3390
- value: elem
3391
- })).every((flag) => flag) || $report(_exceptionable2, {
3392
- path: _path2 + ".values",
3393
- expected: "Array<entries>",
3394
- value: input3.values
3395
- })].every((flag) => flag);
3396
- const $vo2 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
3397
- path: _path2 + ".id",
3398
- expected: "string",
3399
- value: input3.id
3400
- }), "string" === typeof input3.label || $report(_exceptionable2, {
3401
- path: _path2 + ".label",
3402
- expected: "string",
3403
- value: input3.label
3404
- }), "number" === typeof input3.value || $report(_exceptionable2, {
3405
- path: _path2 + ".value",
3406
- expected: "number",
3407
- value: input3.value
3408
- })].every((flag) => flag);
3409
- const $vu0 = (input3, _path2, _exceptionable2 = true) => (() => {
3410
- if (void 0 !== input3.status)
3411
- return $vo0(input3, _path2, _exceptionable2);
3412
- if (void 0 !== input3.values)
3413
- return $vo1(input3, _path2, _exceptionable2);
3414
- return $report(_exceptionable2, {
3415
- path: _path2,
3416
- expected: "(ErrorResponse | ValidResponse)",
3417
- value: input3
3418
- });
3419
- })();
3420
- return ("object" === typeof input2 && null !== input2 || $report(true, {
3421
- path: _path + "",
3422
- expected: "(ErrorResponse | ValidResponse)",
3423
- value: input2
3424
- })) && $vu0(input2, _path + "", true) || $report(true, {
3425
- path: _path + "",
3426
- expected: "(ErrorResponse | ValidResponse)",
3456
+ expected: "TermsByIdsResponse",
3427
3457
  value: input2
3428
3458
  });
3429
3459
  })(input, "$input", true);
@@ -3437,7 +3467,7 @@ var validDescrStatsResponse = (input) => {
3437
3467
  };
3438
3468
 
3439
3469
  export {
3440
- descrStatsPayload,
3441
- validDescrStatsRequest,
3442
- validDescrStatsResponse
3470
+ termsByIdsPayload,
3471
+ validTermsByIdsRequest,
3472
+ validTermsByIdsResponse
3443
3473
  };