@sjcrh/proteinpaint-types 2.178.0 → 2.179.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/brainImaging.js +1 -1
- package/dist/{chunk-GAYJUXNZ.js → chunk-4J5BPYYR.js} +429 -201
- package/dist/{chunk-WXCXZRKP.js → chunk-6DWX22RA.js} +707 -479
- package/dist/{chunk-UWAVSKMD.js → chunk-7V7USAKJ.js} +705 -477
- package/dist/{chunk-2XQJCZEO.js → chunk-A2FMYVMI.js} +520 -292
- package/dist/{chunk-FQYNRDHB.js → chunk-CC4IBTKW.js} +429 -201
- package/dist/{chunk-2Y7WE3JU.js → chunk-CSK3ZCDF.js} +705 -477
- package/dist/{chunk-UFYKXOY2.js → chunk-DUFHC6EI.js} +1073 -625
- package/dist/{chunk-NRV6MPRM.js → chunk-E2O4N7OC.js} +1346 -898
- package/dist/{chunk-CYQDO4FX.js → chunk-FQLGK65A.js} +742 -456
- package/dist/{chunk-HZEV7D5E.js → chunk-JTZQYNIT.js} +705 -477
- package/dist/{chunk-CX2Y673E.js → chunk-MKM4A5NU.js} +429 -201
- package/dist/{chunk-26UKKPK2.js → chunk-QQNDJ6BY.js} +713 -485
- package/dist/{chunk-PHRILOVX.js → chunk-RANWGPF7.js} +429 -201
- package/dist/{chunk-VBNF7BRI.js → chunk-XAHE4RNZ.js} +452 -224
- package/dist/{chunk-YHKFJCXG.js → chunk-YI63CW7Y.js} +646 -426
- package/dist/correlationVolcano.js +1 -1
- package/dist/grin2.js +1 -1
- package/dist/index.js +15 -15
- package/dist/termdb.boxplot.js +1 -1
- package/dist/termdb.categories.js +1 -1
- package/dist/termdb.chat.js +429 -201
- package/dist/termdb.chat2.js +1 -1
- package/dist/termdb.cluster.js +1 -1
- package/dist/termdb.descrstats.js +1 -1
- package/dist/termdb.dmr.js +1 -1
- package/dist/termdb.numericcategories.js +1 -1
- package/dist/termdb.percentile.js +1 -1
- package/dist/termdb.termsbyids.js +1 -1
- package/dist/termdb.topTermsByType.js +1 -1
- package/dist/termdb.topVariablyExpressedGenes.js +1 -1
- package/dist/termdb.violin.js +1 -1
- package/package.json +1 -1
- package/src/dataset.ts +28 -8
- package/src/filter.ts +33 -4
- package/src/routes/termdb.chat2.ts +13 -2
- package/src/routes/termdb.dmr.ts +17 -2
- package/src/terms/termCollection.ts +0 -3
|
@@ -73,8 +73,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
73
73
|
const errors = [];
|
|
74
74
|
const __is = (input2) => {
|
|
75
75
|
const $join = import_typia.createValidate.join;
|
|
76
|
-
const $io0 = (input3) => "object" === typeof input3.tw && null !== input3.tw && $
|
|
77
|
-
const $io1 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && $
|
|
76
|
+
const $io0 = (input3) => "object" === typeof input3.tw && null !== input3.tw && $iu7(input3.tw) && "string" === typeof input3.genome && "string" === typeof input3.dslabel && "boolean" === typeof input3.isLogScale && "boolean" === typeof input3.orderByMedian && (void 0 === input3.removeOutliers || "boolean" === typeof input3.removeOutliers) && (void 0 === input3.showAssocTests || "boolean" === typeof input3.showAssocTests) && (void 0 === input3.overlayTw || "object" === typeof input3.overlayTw && null !== input3.overlayTw && $iu7(input3.overlayTw)) && (void 0 === input3.divideTw || "object" === typeof input3.divideTw && null !== input3.divideTw && $iu7(input3.divideTw)) && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io6(input3.filter)) && true;
|
|
77
|
+
const $io1 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && $iu8(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io57(input3.q)) && "QualTWValues" === input3.type;
|
|
78
78
|
const $io2 = (input3) => Object.keys(input3).every((key) => {
|
|
79
79
|
const value = input3[key];
|
|
80
80
|
if (void 0 === value)
|
|
@@ -83,7 +83,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
83
83
|
return true;
|
|
84
84
|
return true;
|
|
85
85
|
});
|
|
86
|
-
const $io3 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $
|
|
86
|
+
const $io3 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io40(input3.groupsetting));
|
|
87
87
|
const $io4 = (input3) => Object.keys(input3).every((key) => {
|
|
88
88
|
const value = input3[key];
|
|
89
89
|
if (void 0 === value)
|
|
@@ -95,15 +95,15 @@ var validBoxPlotRequest = (input) => {
|
|
|
95
95
|
return true;
|
|
96
96
|
});
|
|
97
97
|
const $io5 = (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 && $io6(input3.filter));
|
|
98
|
-
const $io6 = (input3) => "tvslst" === input3.type && "boolean" === typeof input3["in"] && "string" === typeof input3.join && (void 0 === input3.tag || "string" === typeof input3.tag) && (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem)));
|
|
99
|
-
const $io7 = (input3) => "tvs" === input3.type && ("object" === typeof input3.tvs && null !== input3.tvs && $
|
|
100
|
-
const $io8 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io3(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) && $io5(elem)));
|
|
101
|
-
const $io9 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $
|
|
98
|
+
const $io6 = (input3) => "tvslst" === input3.type && "boolean" === typeof input3["in"] && "string" === typeof input3.join && (void 0 === input3.tag || "string" === typeof input3.tag) && (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem))) && (void 0 === input3.$id || "string" === typeof input3.$id);
|
|
99
|
+
const $io7 = (input3) => "tvs" === input3.type && ("object" === typeof input3.tvs && null !== input3.tvs && $iu9(input3.tvs));
|
|
100
|
+
const $io8 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (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) && ("object" === typeof input3.term && null !== input3.term && $io3(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) && $io5(elem))) && (void 0 === input3.valueset || input3.valueset instanceof Set);
|
|
101
|
+
const $io9 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (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) && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && (Array.isArray(input3.ranges) && input3.ranges.every((elem) => "object" === typeof elem && null !== elem && $iu1(elem))) && (void 0 === input3.values || Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io30(elem)));
|
|
102
102
|
const $io10 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io12(input3.continuousColorScale)) && (void 0 === input3.unit || "string" === typeof input3.unit) && ("object" === typeof input3.bins && null !== input3.bins && $io13(input3.bins));
|
|
103
103
|
const $io11 = (input3) => "string" === typeof input3.fromUnit && "string" === typeof input3.toUnit && "string" === typeof input3.scaleFactor;
|
|
104
104
|
const $io12 = (input3) => "string" === typeof input3.minColor && "string" === typeof input3.maxColor;
|
|
105
|
-
const $io13 = (input3) => "object" === typeof input3["default"] && null !== input3["default"] && $
|
|
106
|
-
const $io14 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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 && $
|
|
105
|
+
const $io13 = (input3) => "object" === typeof input3["default"] && null !== input3["default"] && $iu11(input3["default"]) && ("object" === typeof input3.less && null !== input3.less && $iu11(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 $io14 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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 && $iu5(input3.first_bin)) && (void 0 === input3.last_bin || "object" === typeof input3.last_bin && null !== input3.last_bin && $iu6(input3.last_bin)) && (void 0 === input3.label_offset || "number" === typeof input3.label_offset) && (void 0 === input3.startinclusive || "boolean" === typeof input3.startinclusive) && (void 0 === input3.stopinclusive || "boolean" === typeof input3.stopinclusive) && (void 0 === input3.rounding || "string" === typeof input3.rounding) && (void 0 === input3.isDummyPreset || "boolean" === typeof input3.isDummyPreset);
|
|
107
107
|
const $io15 = (input3) => Object.keys(input3).every((key) => {
|
|
108
108
|
const value = input3[key];
|
|
109
109
|
if (void 0 === value)
|
|
@@ -115,7 +115,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
115
115
|
const $io16 = (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) && (void 0 === input3.range || "string" === typeof input3.range);
|
|
116
116
|
const $io17 = (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) && (void 0 === input3.range || "string" === typeof input3.range);
|
|
117
117
|
const $io18 = (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) && (void 0 === input3.range || "string" === typeof input3.range);
|
|
118
|
-
const $io19 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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] && $
|
|
118
|
+
const $io19 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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] && $iu4(input3.lst[0]) && (Array.isArray(input3.lst.slice(1)) && input3.lst.slice(1).every((elem) => "object" === typeof elem && null !== elem && $iu4(elem))))) && (void 0 === input3.preferredBins || "median" === input3.preferredBins) && (void 0 === input3.isDummyPreset || "boolean" === typeof input3.isDummyPreset);
|
|
119
119
|
const $io20 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneExpression" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io12(input3.continuousColorScale)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.bins || "object" === typeof input3.bins && null !== input3.bins && $io13(input3.bins)) && (void 0 === input3.kind || "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);
|
|
120
120
|
const $io21 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneExpression" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io12(input3.continuousColorScale)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.bins || "object" === typeof input3.bins && null !== input3.bins && $io13(input3.bins)) && (void 0 === input3.kind || "coord" === input3.kind) && (void 0 === input3.gene || "string" === typeof input3.gene) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
121
121
|
const $io22 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io12(input3.continuousColorScale)) && (void 0 === input3.unit || "string" === typeof input3.unit) && "string" === typeof input3.metabolite && (void 0 === input3.bins || "object" === typeof input3.bins && null !== input3.bins && $io13(input3.bins));
|
|
@@ -125,34 +125,45 @@ var validBoxPlotRequest = (input) => {
|
|
|
125
125
|
const $io26 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "dnaMethylation" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io12(input3.continuousColorScale)) && (void 0 === input3.unit || "string" === typeof input3.unit) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop && (void 0 === input3.bins || "object" === typeof input3.bins && null !== input3.bins && $io13(input3.bins));
|
|
126
126
|
const $io27 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "singleCellGeneExpression" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io12(input3.continuousColorScale)) && (void 0 === input3.unit || "string" === typeof input3.unit) && "string" === typeof input3.gene && "string" === typeof input3.sample && (void 0 === input3.bins || "object" === typeof input3.bins && null !== input3.bins && $io13(input3.bins)) && (void 0 === input3.kind || "gene" === input3.kind) && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
|
|
127
127
|
const $io28 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "singleCellGeneExpression" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io12(input3.continuousColorScale)) && (void 0 === input3.unit || "string" === typeof input3.unit) && "string" === typeof input3.gene && "string" === typeof input3.sample && (void 0 === input3.bins || "object" === typeof input3.bins && null !== input3.bins && $io13(input3.bins)) && (void 0 === input3.kind || "coord" === input3.kind) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
128
|
-
const $io29 = (input3) => "
|
|
129
|
-
const $io30 = (input3) =>
|
|
130
|
-
const $io31 = (input3) =>
|
|
131
|
-
const $io32 = (input3) => "
|
|
132
|
-
const $io33 = (input3) =>
|
|
133
|
-
const $io34 = (input3) => "string" === typeof input3.
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
const $io37 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
137
|
-
const $io38 = (input3) => "boolean" === typeof input3.disabled && (void 0 === input3.lst || Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $io39(elem)));
|
|
138
|
-
const $io39 = (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) && (void 0 === input3.dt || "number" === typeof input3.dt) && (Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu3(elem)));
|
|
139
|
-
const $io40 = (input3) => "string" === typeof input3.name && "string" === typeof input3.type && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io41(elem))) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
|
|
140
|
-
const $io41 = (input3) => ("string" === typeof input3.key || "number" === typeof input3.key) && "string" === typeof input3.label;
|
|
141
|
-
const $io42 = (input3) => "string" === typeof input3.name && "filter" === input3.type && ("object" === typeof input3.filter && null !== input3.filter && $io6(input3.filter)) && "string" === typeof input3.color;
|
|
142
|
-
const $io43 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop && (Array.isArray(input3.genes) && input3.genes.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && (void 0 === input3.groupsetting || "object" === typeof input3.groupsetting && null !== input3.groupsetting && $io38(input3.groupsetting)) && (void 0 === input3.childTerms || Array.isArray(input3.childTerms) && input3.childTerms.every((elem) => "object" === typeof elem && null !== elem && $io34(elem)));
|
|
143
|
-
const $io44 = (input3) => "string" === typeof input3.key && "string" === typeof input3.label && "string" === typeof input3.value;
|
|
144
|
-
const $io45 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $iu12(input3.term)) && "number" === typeof input3.ratio;
|
|
145
|
-
const $io46 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "termCollection" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.collectionId || "string" === typeof input3.collectionId) && (void 0 === input3.termIds || Array.isArray(input3.termIds) && input3.termIds.every((elem) => "string" === typeof elem)) && (Array.isArray(input3.termlst) && input3.termlst.every((elem) => "object" === typeof elem && null !== elem && $io47(elem))) && (void 0 === input3.newTvs || "boolean" === typeof input3.newTvs) && ("object" === typeof input3.propsByTermId && null !== input3.propsByTermId && false === Array.isArray(input3.propsByTermId) && $io48(input3.propsByTermId)) && "numeric" === input3.memberType && (void 0 === input3.numerators || Array.isArray(input3.numerators) && input3.numerators.every((elem) => "string" === typeof elem));
|
|
146
|
-
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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion));
|
|
147
|
-
const $io48 = (input3) => Object.keys(input3).every((key) => {
|
|
128
|
+
const $io29 = (input3) => "number" === typeof input3.value && (void 0 === input3.label || "string" === typeof input3.label) && (void 0 === input3.name || "string" === typeof input3.name);
|
|
129
|
+
const $io30 = (input3) => "string" === typeof input3.key && "number" === typeof input3.value && true === input3.uncomputable && (void 0 === input3.label || "string" === typeof input3.label);
|
|
130
|
+
const $io31 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (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) && ("object" === typeof input3.term && null !== input3.term && $io32(input3.term)) && (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))) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io34(elem)));
|
|
131
|
+
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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion));
|
|
132
|
+
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;
|
|
133
|
+
const $io34 = (input3) => ("string" === typeof input3.key || "number" === typeof input3.key) && (void 0 === input3.label || "string" === typeof input3.label) && Object.keys(input3).every((key) => {
|
|
134
|
+
if (["key", "label"].some((prop) => key === prop))
|
|
135
|
+
return true;
|
|
148
136
|
const value = input3[key];
|
|
149
137
|
if (void 0 === value)
|
|
150
138
|
return true;
|
|
151
139
|
if (RegExp(/(.*)/).test(key))
|
|
152
|
-
return
|
|
140
|
+
return true;
|
|
153
141
|
return true;
|
|
154
142
|
});
|
|
155
|
-
const $
|
|
143
|
+
const $io35 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (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) && ("object" === typeof input3.term && null !== input3.term && $io36(input3.term)) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && $io46(elem))) && (void 0 === input3.includeNotTested || "boolean" === typeof input3.includeNotTested) && (void 0 === input3.excludeGeneName || "boolean" === typeof input3.excludeGeneName) && (void 0 === input3.genotype || "variant" === input3.genotype || "nt" === input3.genotype || "wt" === input3.genotype) && (void 0 === input3.mcount || "any" === input3.mcount || "single" === input3.mcount || "multiple" === input3.mcount || "all" === input3.mcount) && (void 0 === input3.continuousCnv || "boolean" === typeof input3.continuousCnv) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvWT || "boolean" === typeof input3.cnvWT) && (void 0 === input3.fractionOverlap || "number" === typeof input3.fractionOverlap);
|
|
144
|
+
const $io36 = (input3) => "string" === typeof input3.id && "string" === typeof input3.query && "string" === typeof input3.name && "string" === typeof input3.name_noOrigin && (void 0 === input3.parentTerm || "object" === typeof input3.parentTerm && null !== input3.parentTerm && $iu12(input3.parentTerm)) && true && "boolean" === typeof input3.isleaf && "string" === typeof input3.type && "number" === typeof input3.dt && (void 0 === input3.origin || "string" === typeof input3.origin) && ("object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io4(input3.values));
|
|
145
|
+
const $io37 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "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) && (Array.isArray(input3.genes) && input3.genes.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && (void 0 === input3.groupsetting || "object" === typeof input3.groupsetting && null !== input3.groupsetting && $io40(input3.groupsetting)) && (void 0 === input3.childTerms || Array.isArray(input3.childTerms) && input3.childTerms.every((elem) => "object" === typeof elem && null !== elem && $io36(elem)));
|
|
146
|
+
const $io38 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "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);
|
|
147
|
+
const $io39 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
148
|
+
const $io40 = (input3) => "boolean" === typeof input3.disabled && (void 0 === input3.lst || Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $io41(elem)));
|
|
149
|
+
const $io41 = (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) && (void 0 === input3.dt || "number" === typeof input3.dt) && (Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu3(elem)));
|
|
150
|
+
const $io42 = (input3) => "string" === typeof input3.name && "string" === typeof input3.type && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io43(elem))) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
|
|
151
|
+
const $io43 = (input3) => ("string" === typeof input3.key || "number" === typeof input3.key) && "string" === typeof input3.label;
|
|
152
|
+
const $io44 = (input3) => "string" === typeof input3.name && "filter" === input3.type && ("object" === typeof input3.filter && null !== input3.filter && $io6(input3.filter)) && "string" === typeof input3.color;
|
|
153
|
+
const $io45 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop && (Array.isArray(input3.genes) && input3.genes.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && (void 0 === input3.groupsetting || "object" === typeof input3.groupsetting && null !== input3.groupsetting && $io40(input3.groupsetting)) && (void 0 === input3.childTerms || Array.isArray(input3.childTerms) && input3.childTerms.every((elem) => "object" === typeof elem && null !== elem && $io36(elem)));
|
|
154
|
+
const $io46 = (input3) => (void 0 === input3.key || "string" === typeof input3.key) && (void 0 === input3.label || "string" === typeof input3.label || "number" === typeof input3.label) && (void 0 === input3.value || "string" === typeof input3.value) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.mclasslst || Array.isArray(input3.mclasslst) && input3.mclasslst.every((elem) => "string" === typeof elem)) && (void 0 === input3.mclassExcludeLst || Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "string" === typeof elem)) && (void 0 === input3.origin || "string" === typeof input3.origin);
|
|
155
|
+
const $io47 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (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) && ("object" === typeof input3.term && null !== input3.term && $iu13(input3.term)) && "number" === typeof input3.ratio;
|
|
156
|
+
const $io48 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "termCollection" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.termIds || Array.isArray(input3.termIds) && input3.termIds.every((elem) => "string" === typeof elem)) && (Array.isArray(input3.termlst) && input3.termlst.every((elem) => "object" === typeof elem && null !== elem && $io49(elem))) && (void 0 === input3.newTvs || "boolean" === typeof input3.newTvs) && ("object" === typeof input3.propsByTermId && null !== input3.propsByTermId && false === Array.isArray(input3.propsByTermId) && $io50(input3.propsByTermId)) && "numeric" === input3.memberType && (void 0 === input3.numerators || Array.isArray(input3.numerators) && input3.numerators.every((elem) => "string" === typeof elem));
|
|
157
|
+
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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion));
|
|
158
|
+
const $io50 = (input3) => Object.keys(input3).every((key) => {
|
|
159
|
+
const value = input3[key];
|
|
160
|
+
if (void 0 === value)
|
|
161
|
+
return true;
|
|
162
|
+
if (RegExp(/(.*)/).test(key))
|
|
163
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io51(value);
|
|
164
|
+
return true;
|
|
165
|
+
});
|
|
166
|
+
const $io51 = (input3) => Object.keys(input3).every((key) => {
|
|
156
167
|
const value = input3[key];
|
|
157
168
|
if (void 0 === value)
|
|
158
169
|
return true;
|
|
@@ -160,47 +171,47 @@ var validBoxPlotRequest = (input) => {
|
|
|
160
171
|
return true;
|
|
161
172
|
return true;
|
|
162
173
|
});
|
|
163
|
-
const $
|
|
164
|
-
const $
|
|
165
|
-
const $
|
|
166
|
-
const $
|
|
167
|
-
const $
|
|
168
|
-
const $
|
|
169
|
-
const $
|
|
170
|
-
const $
|
|
171
|
-
const $
|
|
172
|
-
const $
|
|
173
|
-
const $
|
|
174
|
-
const $
|
|
175
|
-
const $
|
|
176
|
-
const $
|
|
177
|
-
const $
|
|
178
|
-
const $
|
|
179
|
-
const $
|
|
180
|
-
const $
|
|
181
|
-
const $
|
|
182
|
-
const $
|
|
183
|
-
const $
|
|
184
|
-
const $
|
|
185
|
-
const $
|
|
186
|
-
const $
|
|
187
|
-
const $
|
|
188
|
-
const $
|
|
189
|
-
const $
|
|
190
|
-
const $
|
|
191
|
-
const $
|
|
192
|
-
const $
|
|
193
|
-
const $
|
|
194
|
-
const $
|
|
195
|
-
const $
|
|
196
|
-
const $
|
|
197
|
-
const $
|
|
198
|
-
const $
|
|
199
|
-
const $
|
|
200
|
-
const $
|
|
201
|
-
const $
|
|
202
|
-
const $
|
|
203
|
-
const $
|
|
174
|
+
const $io52 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "termCollection" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (void 0 === input3.termIds || Array.isArray(input3.termIds) && input3.termIds.every((elem) => "string" === typeof elem)) && (Array.isArray(input3.termlst) && input3.termlst.every((elem) => "object" === typeof elem && null !== elem && $io49(elem))) && (void 0 === input3.newTvs || "boolean" === typeof input3.newTvs) && ("object" === typeof input3.propsByTermId && null !== input3.propsByTermId && false === Array.isArray(input3.propsByTermId) && $io50(input3.propsByTermId)) && "categorical" === input3.memberType && (Array.isArray(input3.categoryKeys) && input3.categoryKeys.every((elem) => "object" === typeof elem && null !== elem && $io53(elem)));
|
|
175
|
+
const $io53 = (input3) => "string" === typeof input3.key && "boolean" === typeof input3.shown;
|
|
176
|
+
const $io54 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "snp" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop && "string" === typeof input3.ref && (Array.isArray(input3.alt) && input3.alt.every((elem) => "string" === typeof elem)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io40(input3.groupsetting));
|
|
177
|
+
const $io55 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "singleCellCellType" === 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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && ("object" === typeof input3.sample && null !== input3.sample && true) && "string" === typeof input3.plot && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io40(input3.groupsetting));
|
|
178
|
+
const $io57 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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;
|
|
179
|
+
const $io58 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && $iu8(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io59(input3.q)) && "QualTWPredefinedGS" === input3.type;
|
|
180
|
+
const $io59 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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;
|
|
181
|
+
const $io60 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && $iu8(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io61(input3.q)) && "QualTWCustomGS" === input3.type;
|
|
182
|
+
const $io61 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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 && $io62(input3.customset));
|
|
183
|
+
const $io62 = (input3) => Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu3(elem));
|
|
184
|
+
const $io63 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "NumTWRegularBin" === input3.type && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io14(input3.q));
|
|
185
|
+
const $io64 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "NumTWCustomBin" === input3.type && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io19(input3.q));
|
|
186
|
+
const $io65 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "NumTWBinary" === input3.type && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io66(input3.q));
|
|
187
|
+
const $io66 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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] && $iu5(input3.lst[0])) && ("object" === typeof input3.lst[1] && null !== input3.lst[1] && $iu6(input3.lst[1])))) && (void 0 === input3.cutoffType || "normal" === input3.cutoffType || "percentile" === input3.cutoffType) && (void 0 === input3.cutoffPercentile || "number" === typeof input3.cutoffPercentile);
|
|
188
|
+
const $io67 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "NumTWCont" === input3.type && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) && $io68(input3.q));
|
|
189
|
+
const $io68 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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 || "continuous" === input3.mode) && (void 0 === input3.convert2ZScore || "boolean" === typeof input3.convert2ZScore) && (null !== input3.type && void 0 === input3.type) && (void 0 === input3.scale || "number" === typeof input3.scale);
|
|
190
|
+
const $io69 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "NumTWSpline" === input3.type && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io70(input3.q));
|
|
191
|
+
const $io70 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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 && $io71(elem))) && (null !== input3.type && void 0 === input3.type);
|
|
192
|
+
const $io71 = (input3) => "number" === typeof input3.value;
|
|
193
|
+
const $io72 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "GvValuesTW" === input3.type && ("object" === typeof input3.term && null !== input3.term && $iu14(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io75(input3.q));
|
|
194
|
+
const $io73 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "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) && (Array.isArray(input3.genes) && input3.genes.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io40(input3.groupsetting)) && (Array.isArray(input3.childTerms) && input3.childTerms.every((elem) => "object" === typeof elem && null !== elem && $io36(elem)));
|
|
195
|
+
const $io74 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop && (Array.isArray(input3.genes) && input3.genes.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io40(input3.groupsetting)) && (Array.isArray(input3.childTerms) && input3.childTerms.every((elem) => "object" === typeof elem && null !== elem && $io36(elem)));
|
|
196
|
+
const $io75 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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) && "values" === input3.type;
|
|
197
|
+
const $io76 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "GvPredefinedGsTW" === input3.type && ("object" === typeof input3.term && null !== input3.term && $iu14(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io77(input3.q));
|
|
198
|
+
const $io77 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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) && "predefined-groupset" === input3.type && "number" === typeof input3.predefined_groupset_idx && Array.isArray(input3.dtLst);
|
|
199
|
+
const $io78 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "GvCustomGsTW" === input3.type && ("object" === typeof input3.term && null !== input3.term && $iu14(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io79(input3.q));
|
|
200
|
+
const $io79 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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) && "custom-groupset" === input3.type && ("object" === typeof input3.customset && null !== input3.customset && $io62(input3.customset)) && Array.isArray(input3.dtLst);
|
|
201
|
+
const $io80 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "ConditionTW" === input3.type && ("object" === typeof input3.term && null !== input3.term && $io32(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $iu15(input3.q));
|
|
202
|
+
const $io81 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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) && ("discrete" === input3.mode || "binary" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && "grade" === input3.valueFor && true === input3.bar_by_grade && ("age" === input3.timeScale || "time" === input3.timeScale) && (void 0 === input3.breaks || Array.isArray(input3.breaks) && input3.breaks.every((elem) => "number" === typeof elem)) && (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;
|
|
203
|
+
const $io82 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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) && "discrete" === input3.mode && "children" === input3.valueFor && true === input3.bar_by_children && true;
|
|
204
|
+
const $io83 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "SnpsTW" === input3.type && ("object" === typeof input3.q && null !== input3.q && $io84(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io86(input3.term));
|
|
205
|
+
const $io84 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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) && "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 && $io85(input3.restrictAncestry)) && true && true && ("object" === typeof input3.variant_filter && null !== input3.variant_filter && $io6(input3.variant_filter)) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
206
|
+
const $io85 = (input3) => "string" === typeof input3.name && ("object" === typeof input3.tvs && null !== input3.tvs && $iu9(input3.tvs));
|
|
207
|
+
const $io86 = (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) && $io4(input3.values)) && (void 0 === input3.skipValuesBuild || "boolean" === typeof input3.skipValuesBuild) && (void 0 === input3.valueConversion || "object" === typeof input3.valueConversion && null !== input3.valueConversion && $io11(input3.valueConversion)) && (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 && $io87(elem)));
|
|
208
|
+
const $io87 = (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 && $io88(elem))) && "boolean" === typeof input3.effectAllele && (void 0 === input3.gt2count || "object" === typeof input3.gt2count && null !== input3.gt2count && $io89(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);
|
|
209
|
+
const $io88 = (input3) => "string" === typeof input3.allele && "number" === typeof input3.count && "boolean" === typeof input3.isRef;
|
|
210
|
+
const $io89 = (input3) => "string" === typeof input3.k && ("string" === typeof input3.v || "number" === typeof input3.v);
|
|
211
|
+
const $io90 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "TermCollectionTWCont" === input3.type && ("object" === typeof input3.term && null !== input3.term && $io48(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io91(input3.q));
|
|
212
|
+
const $io91 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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 && "values" === input3.type && (Array.isArray(input3.lst) && input3.lst.every((elem) => "string" === typeof elem)) && (void 0 === input3.numerators || Array.isArray(input3.numerators) && input3.numerators.every((elem) => "string" === typeof elem));
|
|
213
|
+
const $io92 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && (void 0 === 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 && "TermCollectionTWQual" === input3.type && ("object" === typeof input3.term && null !== input3.term && $io52(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $io93(input3.q));
|
|
214
|
+
const $io93 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io15(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) && "discrete" === input3.mode && "values" === input3.type && (Array.isArray(input3.lst) && input3.lst.every((elem) => "string" === typeof elem)) && (void 0 === input3.categoryKeys || Array.isArray(input3.categoryKeys) && input3.categoryKeys.every((elem) => "object" === typeof elem && null !== elem && $io53(elem)));
|
|
204
215
|
const $iu0 = (input3) => (() => {
|
|
205
216
|
if ("tvslst" === input3.type)
|
|
206
217
|
return $io6(input3);
|
|
@@ -213,94 +224,103 @@ var validBoxPlotRequest = (input) => {
|
|
|
213
224
|
return $io16(input3);
|
|
214
225
|
if (true === input3.stopunbounded)
|
|
215
226
|
return $io18(input3);
|
|
227
|
+
if (void 0 !== input3.value)
|
|
228
|
+
return $io29(input3);
|
|
216
229
|
return $io17(input3);
|
|
217
230
|
})();
|
|
218
231
|
const $iu2 = (input3) => (() => {
|
|
219
232
|
if ("gene" === input3.kind)
|
|
220
|
-
return $
|
|
233
|
+
return $io38(input3);
|
|
221
234
|
if ("coord" === input3.kind)
|
|
222
|
-
return $
|
|
235
|
+
return $io39(input3);
|
|
223
236
|
return false;
|
|
224
237
|
})();
|
|
225
238
|
const $iu3 = (input3) => (() => {
|
|
226
239
|
if ("string" === typeof input3.type)
|
|
227
|
-
return $io40(input3);
|
|
228
|
-
if ("filter" === input3.type)
|
|
229
240
|
return $io42(input3);
|
|
241
|
+
if ("filter" === input3.type)
|
|
242
|
+
return $io44(input3);
|
|
230
243
|
return false;
|
|
231
244
|
})();
|
|
232
245
|
const $iu4 = (input3) => (() => {
|
|
246
|
+
if (true === input3.startunbounded)
|
|
247
|
+
return $io16(input3);
|
|
248
|
+
if (true === input3.stopunbounded)
|
|
249
|
+
return $io18(input3);
|
|
250
|
+
return $io17(input3);
|
|
251
|
+
})();
|
|
252
|
+
const $iu5 = (input3) => (() => {
|
|
233
253
|
if (true === input3.startunbounded)
|
|
234
254
|
return $io16(input3);
|
|
235
255
|
if (void 0 !== input3.start)
|
|
236
256
|
return $io17(input3);
|
|
237
257
|
return false;
|
|
238
258
|
})();
|
|
239
|
-
const $
|
|
259
|
+
const $iu6 = (input3) => (() => {
|
|
240
260
|
if (void 0 !== input3.stop)
|
|
241
261
|
return $io17(input3);
|
|
242
262
|
if (true === input3.stopunbounded)
|
|
243
263
|
return $io18(input3);
|
|
244
264
|
return false;
|
|
245
265
|
})();
|
|
246
|
-
const $
|
|
266
|
+
const $iu7 = (input3) => (() => {
|
|
247
267
|
if ("TermCollectionTWQual" === input3.type)
|
|
248
|
-
return $
|
|
268
|
+
return $io92(input3);
|
|
249
269
|
if ("TermCollectionTWCont" === input3.type)
|
|
250
|
-
return $
|
|
270
|
+
return $io90(input3);
|
|
251
271
|
if ("SnpsTW" === input3.type)
|
|
252
|
-
return $
|
|
272
|
+
return $io83(input3);
|
|
253
273
|
if ("ConditionTW" === input3.type)
|
|
254
|
-
return $
|
|
274
|
+
return $io80(input3);
|
|
255
275
|
if ("GvCustomGsTW" === input3.type)
|
|
256
|
-
return $
|
|
276
|
+
return $io78(input3);
|
|
257
277
|
if ("GvPredefinedGsTW" === input3.type)
|
|
258
|
-
return $
|
|
278
|
+
return $io76(input3);
|
|
259
279
|
if ("GvValuesTW" === input3.type)
|
|
260
|
-
return $
|
|
280
|
+
return $io72(input3);
|
|
261
281
|
if ("NumTWSpline" === input3.type)
|
|
262
|
-
return $
|
|
282
|
+
return $io69(input3);
|
|
263
283
|
if ("NumTWCont" === input3.type)
|
|
264
|
-
return $
|
|
284
|
+
return $io67(input3);
|
|
265
285
|
if ("NumTWBinary" === input3.type)
|
|
266
|
-
return $
|
|
286
|
+
return $io65(input3);
|
|
267
287
|
if ("NumTWCustomBin" === input3.type)
|
|
268
|
-
return $
|
|
288
|
+
return $io64(input3);
|
|
269
289
|
if ("NumTWRegularBin" === input3.type)
|
|
270
|
-
return $
|
|
290
|
+
return $io63(input3);
|
|
271
291
|
if ("QualTWCustomGS" === input3.type)
|
|
272
|
-
return $
|
|
292
|
+
return $io60(input3);
|
|
273
293
|
if ("QualTWPredefinedGS" === input3.type)
|
|
274
|
-
return $
|
|
294
|
+
return $io58(input3);
|
|
275
295
|
if ("QualTWValues" === input3.type)
|
|
276
296
|
return $io1(input3);
|
|
277
297
|
return false;
|
|
278
298
|
})();
|
|
279
|
-
const $
|
|
299
|
+
const $iu8 = (input3) => (() => {
|
|
280
300
|
if ("categorical" === input3.type)
|
|
281
301
|
return $io3(input3);
|
|
282
302
|
if ("snp" === input3.type)
|
|
283
|
-
return $
|
|
303
|
+
return $io54(input3);
|
|
284
304
|
if ("singleCellCellType" === input3.type)
|
|
285
|
-
return $
|
|
305
|
+
return $io55(input3);
|
|
286
306
|
return false;
|
|
287
307
|
})();
|
|
288
|
-
const $
|
|
308
|
+
const $iu9 = (input3) => (() => {
|
|
289
309
|
if (void 0 !== input3.ranges)
|
|
290
310
|
return $io9(input3);
|
|
291
311
|
if (void 0 !== input3.ratio)
|
|
292
|
-
return $
|
|
312
|
+
return $io47(input3);
|
|
293
313
|
return (() => {
|
|
294
314
|
if ($io8(input3))
|
|
295
315
|
return $io8(input3);
|
|
296
|
-
if ($
|
|
297
|
-
return $
|
|
298
|
-
if ($
|
|
299
|
-
return $
|
|
316
|
+
if ($io31(input3))
|
|
317
|
+
return $io31(input3);
|
|
318
|
+
if ($io35(input3))
|
|
319
|
+
return $io35(input3);
|
|
300
320
|
return false;
|
|
301
321
|
})();
|
|
302
322
|
})();
|
|
303
|
-
const $
|
|
323
|
+
const $iu10 = (input3) => (() => {
|
|
304
324
|
if ("integer" === input3.type || "float" === input3.type)
|
|
305
325
|
return $io10(input3);
|
|
306
326
|
if ("metaboliteIntensity" === input3.type)
|
|
@@ -325,39 +345,39 @@ var validBoxPlotRequest = (input) => {
|
|
|
325
345
|
return false;
|
|
326
346
|
})();
|
|
327
347
|
})();
|
|
328
|
-
const $
|
|
348
|
+
const $iu11 = (input3) => (() => {
|
|
329
349
|
if ("regular-bin" === input3.type)
|
|
330
350
|
return $io14(input3);
|
|
331
351
|
if ("custom-bin" === input3.type)
|
|
332
352
|
return $io19(input3);
|
|
333
353
|
return false;
|
|
334
354
|
})();
|
|
335
|
-
const $
|
|
355
|
+
const $iu12 = (input3) => (() => {
|
|
336
356
|
if ("gene" === input3.kind)
|
|
337
|
-
return $
|
|
357
|
+
return $io37(input3);
|
|
338
358
|
if ("coord" === input3.kind)
|
|
339
|
-
return $
|
|
359
|
+
return $io45(input3);
|
|
340
360
|
return false;
|
|
341
361
|
})();
|
|
342
|
-
const $
|
|
362
|
+
const $iu13 = (input3) => (() => {
|
|
343
363
|
if ("numeric" === input3.memberType)
|
|
344
|
-
return $
|
|
364
|
+
return $io48(input3);
|
|
345
365
|
if ("categorical" === input3.memberType)
|
|
346
|
-
return $
|
|
366
|
+
return $io52(input3);
|
|
347
367
|
return false;
|
|
348
368
|
})();
|
|
349
|
-
const $
|
|
369
|
+
const $iu14 = (input3) => (() => {
|
|
350
370
|
if ("gene" === input3.kind)
|
|
351
|
-
return $
|
|
371
|
+
return $io73(input3);
|
|
352
372
|
if ("coord" === input3.kind)
|
|
353
|
-
return $
|
|
373
|
+
return $io74(input3);
|
|
354
374
|
return false;
|
|
355
375
|
})();
|
|
356
|
-
const $
|
|
376
|
+
const $iu15 = (input3) => (() => {
|
|
357
377
|
if ("grade" === input3.valueFor)
|
|
358
|
-
return $
|
|
378
|
+
return $io81(input3);
|
|
359
379
|
if ("children" === input3.valueFor)
|
|
360
|
-
return $
|
|
380
|
+
return $io82(input3);
|
|
361
381
|
return false;
|
|
362
382
|
})();
|
|
363
383
|
return "object" === typeof input2 && null !== input2 && $io0(input2);
|
|
@@ -370,7 +390,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
370
390
|
path: _path2 + ".tw",
|
|
371
391
|
expected: "(ConditionTW | GvCustomGsTW | GvPredefinedGsTW | GvValuesTW | NumTWBinary | NumTWCont | NumTWCustomBin | NumTWRegularBin | NumTWSpline | QualTWCustomGS | QualTWPredefinedGS | QualTWValues | SnpsTW | TermCollectionTWCont | TermCollectionTWQual)",
|
|
372
392
|
value: input3.tw
|
|
373
|
-
})) && $
|
|
393
|
+
})) && $vu7(input3.tw, _path2 + ".tw", _exceptionable2) || $report(_exceptionable2, {
|
|
374
394
|
path: _path2 + ".tw",
|
|
375
395
|
expected: "(ConditionTW | GvCustomGsTW | GvPredefinedGsTW | GvValuesTW | NumTWBinary | NumTWCont | NumTWCustomBin | NumTWRegularBin | NumTWSpline | QualTWCustomGS | QualTWPredefinedGS | QualTWValues | SnpsTW | TermCollectionTWCont | TermCollectionTWQual)",
|
|
376
396
|
value: input3.tw
|
|
@@ -402,7 +422,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
402
422
|
path: _path2 + ".overlayTw",
|
|
403
423
|
expected: "(ConditionTW | GvCustomGsTW | GvPredefinedGsTW | GvValuesTW | NumTWBinary | NumTWCont | NumTWCustomBin | NumTWRegularBin | NumTWSpline | QualTWCustomGS | QualTWPredefinedGS | QualTWValues | SnpsTW | TermCollectionTWCont | TermCollectionTWQual | undefined)",
|
|
404
424
|
value: input3.overlayTw
|
|
405
|
-
})) && $
|
|
425
|
+
})) && $vu7(input3.overlayTw, _path2 + ".overlayTw", _exceptionable2) || $report(_exceptionable2, {
|
|
406
426
|
path: _path2 + ".overlayTw",
|
|
407
427
|
expected: "(ConditionTW | GvCustomGsTW | GvPredefinedGsTW | GvValuesTW | NumTWBinary | NumTWCont | NumTWCustomBin | NumTWRegularBin | NumTWSpline | QualTWCustomGS | QualTWPredefinedGS | QualTWValues | SnpsTW | TermCollectionTWCont | TermCollectionTWQual | undefined)",
|
|
408
428
|
value: input3.overlayTw
|
|
@@ -410,7 +430,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
410
430
|
path: _path2 + ".divideTw",
|
|
411
431
|
expected: "(ConditionTW | GvCustomGsTW | GvPredefinedGsTW | GvValuesTW | NumTWBinary | NumTWCont | NumTWCustomBin | NumTWRegularBin | NumTWSpline | QualTWCustomGS | QualTWPredefinedGS | QualTWValues | SnpsTW | TermCollectionTWCont | TermCollectionTWQual | undefined)",
|
|
412
432
|
value: input3.divideTw
|
|
413
|
-
})) && $
|
|
433
|
+
})) && $vu7(input3.divideTw, _path2 + ".divideTw", _exceptionable2) || $report(_exceptionable2, {
|
|
414
434
|
path: _path2 + ".divideTw",
|
|
415
435
|
expected: "(ConditionTW | GvCustomGsTW | GvPredefinedGsTW | GvValuesTW | NumTWBinary | NumTWCont | NumTWCustomBin | NumTWRegularBin | NumTWSpline | QualTWCustomGS | QualTWPredefinedGS | QualTWValues | SnpsTW | TermCollectionTWCont | TermCollectionTWQual | undefined)",
|
|
416
436
|
value: input3.divideTw
|
|
@@ -451,7 +471,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
451
471
|
path: _path2 + ".term",
|
|
452
472
|
expected: "(CategoricalTerm | SingleCellCellTypeTerm | SnpTerm)",
|
|
453
473
|
value: input3.term
|
|
454
|
-
})) && $
|
|
474
|
+
})) && $vu8(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
455
475
|
path: _path2 + ".term",
|
|
456
476
|
expected: "(CategoricalTerm | SingleCellCellTypeTerm | SnpTerm)",
|
|
457
477
|
value: input3.term
|
|
@@ -459,7 +479,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
459
479
|
path: _path2 + ".q",
|
|
460
480
|
expected: "ValuesQ",
|
|
461
481
|
value: input3.q
|
|
462
|
-
})) && $
|
|
482
|
+
})) && $vo57(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
463
483
|
path: _path2 + ".q",
|
|
464
484
|
expected: "ValuesQ",
|
|
465
485
|
value: input3.q
|
|
@@ -544,7 +564,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
544
564
|
path: _path2 + ".groupsetting",
|
|
545
565
|
expected: "TermGroupSetting",
|
|
546
566
|
value: input3.groupsetting
|
|
547
|
-
})) && $
|
|
567
|
+
})) && $vo40(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
548
568
|
path: _path2 + ".groupsetting",
|
|
549
569
|
expected: "TermGroupSetting",
|
|
550
570
|
value: input3.groupsetting
|
|
@@ -640,6 +660,10 @@ var validBoxPlotRequest = (input) => {
|
|
|
640
660
|
path: _path2 + ".lst",
|
|
641
661
|
expected: 'Array<Filter | { type: "tvs"; tvs: Tvs; }>',
|
|
642
662
|
value: input3.lst
|
|
663
|
+
}), void 0 === input3.$id || "string" === typeof input3.$id || $report(_exceptionable2, {
|
|
664
|
+
path: _path2 + ".$id",
|
|
665
|
+
expected: "(string | undefined)",
|
|
666
|
+
value: input3.$id
|
|
643
667
|
})].every((flag) => flag);
|
|
644
668
|
const $vo7 = (input3, _path2, _exceptionable2 = true) => ["tvs" === input3.type || $report(_exceptionable2, {
|
|
645
669
|
path: _path2 + ".type",
|
|
@@ -649,7 +673,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
649
673
|
path: _path2 + ".tvs",
|
|
650
674
|
expected: "(CategoricalTvs | ConditionTvs | GeneVariantTvs | NumericTvs | TermCollectionTvs)",
|
|
651
675
|
value: input3.tvs
|
|
652
|
-
})) && $
|
|
676
|
+
})) && $vu9(input3.tvs, _path2 + ".tvs", _exceptionable2) || $report(_exceptionable2, {
|
|
653
677
|
path: _path2 + ".tvs",
|
|
654
678
|
expected: "(CategoricalTvs | ConditionTvs | GeneVariantTvs | NumericTvs | TermCollectionTvs)",
|
|
655
679
|
value: input3.tvs
|
|
@@ -662,6 +686,26 @@ var validBoxPlotRequest = (input) => {
|
|
|
662
686
|
path: _path2 + ".isnot",
|
|
663
687
|
expected: "(boolean | undefined)",
|
|
664
688
|
value: input3.isnot
|
|
689
|
+
}), void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade || $report(_exceptionable2, {
|
|
690
|
+
path: _path2 + ".bar_by_grade",
|
|
691
|
+
expected: "(boolean | undefined)",
|
|
692
|
+
value: input3.bar_by_grade
|
|
693
|
+
}), void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children || $report(_exceptionable2, {
|
|
694
|
+
path: _path2 + ".bar_by_children",
|
|
695
|
+
expected: "(boolean | undefined)",
|
|
696
|
+
value: input3.bar_by_children
|
|
697
|
+
}), void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade || $report(_exceptionable2, {
|
|
698
|
+
path: _path2 + ".value_by_max_grade",
|
|
699
|
+
expected: "(boolean | undefined)",
|
|
700
|
+
value: input3.value_by_max_grade
|
|
701
|
+
}), void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent || $report(_exceptionable2, {
|
|
702
|
+
path: _path2 + ".value_by_most_recent",
|
|
703
|
+
expected: "(boolean | undefined)",
|
|
704
|
+
value: input3.value_by_most_recent
|
|
705
|
+
}), void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade || $report(_exceptionable2, {
|
|
706
|
+
path: _path2 + ".value_by_computable_grade",
|
|
707
|
+
expected: "(boolean | undefined)",
|
|
708
|
+
value: input3.value_by_computable_grade
|
|
665
709
|
}), ("object" === typeof input3.term && null !== input3.term || $report(_exceptionable2, {
|
|
666
710
|
path: _path2 + ".term",
|
|
667
711
|
expected: "CategoricalTerm",
|
|
@@ -690,6 +734,10 @@ var validBoxPlotRequest = (input) => {
|
|
|
690
734
|
path: _path2 + ".values",
|
|
691
735
|
expected: "Array<BaseValue>",
|
|
692
736
|
value: input3.values
|
|
737
|
+
}), void 0 === input3.valueset || input3.valueset instanceof Set || $report(_exceptionable2, {
|
|
738
|
+
path: _path2 + ".valueset",
|
|
739
|
+
expected: "(Set<any> | undefined)",
|
|
740
|
+
value: input3.valueset
|
|
693
741
|
})].every((flag) => flag);
|
|
694
742
|
const $vo9 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
|
|
695
743
|
path: _path2 + ".join",
|
|
@@ -699,45 +747,65 @@ var validBoxPlotRequest = (input) => {
|
|
|
699
747
|
path: _path2 + ".isnot",
|
|
700
748
|
expected: "(boolean | undefined)",
|
|
701
749
|
value: input3.isnot
|
|
750
|
+
}), void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade || $report(_exceptionable2, {
|
|
751
|
+
path: _path2 + ".bar_by_grade",
|
|
752
|
+
expected: "(boolean | undefined)",
|
|
753
|
+
value: input3.bar_by_grade
|
|
754
|
+
}), void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children || $report(_exceptionable2, {
|
|
755
|
+
path: _path2 + ".bar_by_children",
|
|
756
|
+
expected: "(boolean | undefined)",
|
|
757
|
+
value: input3.bar_by_children
|
|
758
|
+
}), void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade || $report(_exceptionable2, {
|
|
759
|
+
path: _path2 + ".value_by_max_grade",
|
|
760
|
+
expected: "(boolean | undefined)",
|
|
761
|
+
value: input3.value_by_max_grade
|
|
762
|
+
}), void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent || $report(_exceptionable2, {
|
|
763
|
+
path: _path2 + ".value_by_most_recent",
|
|
764
|
+
expected: "(boolean | undefined)",
|
|
765
|
+
value: input3.value_by_most_recent
|
|
766
|
+
}), void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade || $report(_exceptionable2, {
|
|
767
|
+
path: _path2 + ".value_by_computable_grade",
|
|
768
|
+
expected: "(boolean | undefined)",
|
|
769
|
+
value: input3.value_by_computable_grade
|
|
702
770
|
}), ("object" === typeof input3.term && null !== input3.term || $report(_exceptionable2, {
|
|
703
771
|
path: _path2 + ".term",
|
|
704
772
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
705
773
|
value: input3.term
|
|
706
|
-
})) && $
|
|
774
|
+
})) && $vu10(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
707
775
|
path: _path2 + ".term",
|
|
708
776
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
709
777
|
value: input3.term
|
|
710
778
|
}), (Array.isArray(input3.ranges) || $report(_exceptionable2, {
|
|
711
779
|
path: _path2 + ".ranges",
|
|
712
|
-
expected: "Array<NumericBin>",
|
|
780
|
+
expected: "Array<NumericBin | { value: number; label?: string | undefined; name?: string | undefined; }>",
|
|
713
781
|
value: input3.ranges
|
|
714
782
|
})) && input3.ranges.map((elem, _index5) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
715
783
|
path: _path2 + ".ranges[" + _index5 + "]",
|
|
716
|
-
expected: "(FullyBoundedBin | StartUnboundedBin | StopUnboundedBin)",
|
|
784
|
+
expected: "(FullyBoundedBin | StartUnboundedBin | StopUnboundedBin | __type.o4)",
|
|
717
785
|
value: elem
|
|
718
786
|
})) && $vu1(elem, _path2 + ".ranges[" + _index5 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
719
787
|
path: _path2 + ".ranges[" + _index5 + "]",
|
|
720
|
-
expected: "(FullyBoundedBin | StartUnboundedBin | StopUnboundedBin)",
|
|
788
|
+
expected: "(FullyBoundedBin | StartUnboundedBin | StopUnboundedBin | __type.o4)",
|
|
721
789
|
value: elem
|
|
722
790
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
723
791
|
path: _path2 + ".ranges",
|
|
724
|
-
expected: "Array<NumericBin>",
|
|
792
|
+
expected: "Array<NumericBin | { value: number; label?: string | undefined; name?: string | undefined; }>",
|
|
725
793
|
value: input3.ranges
|
|
726
|
-
}), (Array.isArray(input3.values) || $report(_exceptionable2, {
|
|
794
|
+
}), void 0 === input3.values || (Array.isArray(input3.values) || $report(_exceptionable2, {
|
|
727
795
|
path: _path2 + ".values",
|
|
728
|
-
expected: "Array<__type>",
|
|
796
|
+
expected: "(Array<__type> | undefined)",
|
|
729
797
|
value: input3.values
|
|
730
798
|
})) && input3.values.map((elem, _index6) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
731
799
|
path: _path2 + ".values[" + _index6 + "]",
|
|
732
|
-
expected: "__type.
|
|
800
|
+
expected: "__type.o5",
|
|
733
801
|
value: elem
|
|
734
|
-
})) && $
|
|
802
|
+
})) && $vo30(elem, _path2 + ".values[" + _index6 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
735
803
|
path: _path2 + ".values[" + _index6 + "]",
|
|
736
|
-
expected: "__type.
|
|
804
|
+
expected: "__type.o5",
|
|
737
805
|
value: elem
|
|
738
806
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
739
807
|
path: _path2 + ".values",
|
|
740
|
-
expected: "Array<__type>",
|
|
808
|
+
expected: "(Array<__type> | undefined)",
|
|
741
809
|
value: input3.values
|
|
742
810
|
})].every((flag) => flag);
|
|
743
811
|
const $vo10 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
@@ -851,7 +919,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
851
919
|
path: _path2 + '["default"]',
|
|
852
920
|
expected: "(CustomNumericBinConfig | RegularNumericBinConfig)",
|
|
853
921
|
value: input3["default"]
|
|
854
|
-
})) && $
|
|
922
|
+
})) && $vu11(input3["default"], _path2 + '["default"]', _exceptionable2) || $report(_exceptionable2, {
|
|
855
923
|
path: _path2 + '["default"]',
|
|
856
924
|
expected: "(CustomNumericBinConfig | RegularNumericBinConfig)",
|
|
857
925
|
value: input3["default"]
|
|
@@ -859,7 +927,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
859
927
|
path: _path2 + ".less",
|
|
860
928
|
expected: "(CustomNumericBinConfig | RegularNumericBinConfig)",
|
|
861
929
|
value: input3.less
|
|
862
|
-
})) && $
|
|
930
|
+
})) && $vu11(input3.less, _path2 + ".less", _exceptionable2) || $report(_exceptionable2, {
|
|
863
931
|
path: _path2 + ".less",
|
|
864
932
|
expected: "(CustomNumericBinConfig | RegularNumericBinConfig)",
|
|
865
933
|
value: input3.less
|
|
@@ -920,7 +988,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
920
988
|
path: _path2 + ".first_bin",
|
|
921
989
|
expected: "(FullyBoundedBin | StartUnboundedBin)",
|
|
922
990
|
value: input3.first_bin
|
|
923
|
-
})) && $
|
|
991
|
+
})) && $vu5(input3.first_bin, _path2 + ".first_bin", _exceptionable2) || $report(_exceptionable2, {
|
|
924
992
|
path: _path2 + ".first_bin",
|
|
925
993
|
expected: "(FullyBoundedBin | StartUnboundedBin)",
|
|
926
994
|
value: input3.first_bin
|
|
@@ -928,7 +996,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
928
996
|
path: _path2 + ".last_bin",
|
|
929
997
|
expected: "(FullyBoundedBin | StopUnboundedBin | undefined)",
|
|
930
998
|
value: input3.last_bin
|
|
931
|
-
})) && $
|
|
999
|
+
})) && $vu6(input3.last_bin, _path2 + ".last_bin", _exceptionable2) || $report(_exceptionable2, {
|
|
932
1000
|
path: _path2 + ".last_bin",
|
|
933
1001
|
expected: "(FullyBoundedBin | StopUnboundedBin | undefined)",
|
|
934
1002
|
value: input3.last_bin
|
|
@@ -1093,7 +1161,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
1093
1161
|
path: _path2 + ".lst[0]",
|
|
1094
1162
|
expected: "(FullyBoundedBin | StartUnboundedBin | StopUnboundedBin)",
|
|
1095
1163
|
value: input3.lst[0]
|
|
1096
|
-
})) && $
|
|
1164
|
+
})) && $vu4(input3.lst[0], _path2 + ".lst[0]", _exceptionable2) || $report(_exceptionable2, {
|
|
1097
1165
|
path: _path2 + ".lst[0]",
|
|
1098
1166
|
expected: "(FullyBoundedBin | StartUnboundedBin | StopUnboundedBin)",
|
|
1099
1167
|
value: input3.lst[0]
|
|
@@ -1106,7 +1174,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
1106
1174
|
path: _path2 + ".lst[" + (1 + _index9) + "]",
|
|
1107
1175
|
expected: "(FullyBoundedBin | StartUnboundedBin | StopUnboundedBin)",
|
|
1108
1176
|
value: elem
|
|
1109
|
-
})) && $
|
|
1177
|
+
})) && $vu4(elem, _path2 + ".lst[" + (1 + _index9) + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
1110
1178
|
path: _path2 + ".lst[" + (1 + _index9) + "]",
|
|
1111
1179
|
expected: "(FullyBoundedBin | StartUnboundedBin | StopUnboundedBin)",
|
|
1112
1180
|
value: elem
|
|
@@ -2012,7 +2080,20 @@ var validBoxPlotRequest = (input) => {
|
|
|
2012
2080
|
expected: "number",
|
|
2013
2081
|
value: input3.stop
|
|
2014
2082
|
})].every((flag) => flag);
|
|
2015
|
-
const $vo29 = (input3, _path2, _exceptionable2 = true) => ["
|
|
2083
|
+
const $vo29 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.value || $report(_exceptionable2, {
|
|
2084
|
+
path: _path2 + ".value",
|
|
2085
|
+
expected: "number",
|
|
2086
|
+
value: input3.value
|
|
2087
|
+
}), void 0 === input3.label || "string" === typeof input3.label || $report(_exceptionable2, {
|
|
2088
|
+
path: _path2 + ".label",
|
|
2089
|
+
expected: "(string | undefined)",
|
|
2090
|
+
value: input3.label
|
|
2091
|
+
}), void 0 === input3.name || "string" === typeof input3.name || $report(_exceptionable2, {
|
|
2092
|
+
path: _path2 + ".name",
|
|
2093
|
+
expected: "(string | undefined)",
|
|
2094
|
+
value: input3.name
|
|
2095
|
+
})].every((flag) => flag);
|
|
2096
|
+
const $vo30 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.key || $report(_exceptionable2, {
|
|
2016
2097
|
path: _path2 + ".key",
|
|
2017
2098
|
expected: "string",
|
|
2018
2099
|
value: input3.key
|
|
@@ -2029,7 +2110,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2029
2110
|
expected: "(string | undefined)",
|
|
2030
2111
|
value: input3.label
|
|
2031
2112
|
})].every((flag) => flag);
|
|
2032
|
-
const $
|
|
2113
|
+
const $vo31 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
|
|
2033
2114
|
path: _path2 + ".join",
|
|
2034
2115
|
expected: "(string | undefined)",
|
|
2035
2116
|
value: input3.join
|
|
@@ -2037,14 +2118,14 @@ var validBoxPlotRequest = (input) => {
|
|
|
2037
2118
|
path: _path2 + ".isnot",
|
|
2038
2119
|
expected: "(boolean | undefined)",
|
|
2039
2120
|
value: input3.isnot
|
|
2040
|
-
}),
|
|
2041
|
-
path: _path2 + ".
|
|
2042
|
-
expected: "
|
|
2043
|
-
value: input3.
|
|
2044
|
-
})
|
|
2045
|
-
path: _path2 + ".
|
|
2046
|
-
expected: "
|
|
2047
|
-
value: input3.
|
|
2121
|
+
}), void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade || $report(_exceptionable2, {
|
|
2122
|
+
path: _path2 + ".bar_by_grade",
|
|
2123
|
+
expected: "(boolean | undefined)",
|
|
2124
|
+
value: input3.bar_by_grade
|
|
2125
|
+
}), void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children || $report(_exceptionable2, {
|
|
2126
|
+
path: _path2 + ".bar_by_children",
|
|
2127
|
+
expected: "(boolean | undefined)",
|
|
2128
|
+
value: input3.bar_by_children
|
|
2048
2129
|
}), void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade || $report(_exceptionable2, {
|
|
2049
2130
|
path: _path2 + ".value_by_max_grade",
|
|
2050
2131
|
expected: "(boolean | undefined)",
|
|
@@ -2057,6 +2138,14 @@ var validBoxPlotRequest = (input) => {
|
|
|
2057
2138
|
path: _path2 + ".value_by_computable_grade",
|
|
2058
2139
|
expected: "(boolean | undefined)",
|
|
2059
2140
|
value: input3.value_by_computable_grade
|
|
2141
|
+
}), ("object" === typeof input3.term && null !== input3.term || $report(_exceptionable2, {
|
|
2142
|
+
path: _path2 + ".term",
|
|
2143
|
+
expected: "ConditionTerm",
|
|
2144
|
+
value: input3.term
|
|
2145
|
+
})) && $vo32(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
2146
|
+
path: _path2 + ".term",
|
|
2147
|
+
expected: "ConditionTerm",
|
|
2148
|
+
value: input3.term
|
|
2060
2149
|
}), void 0 === input3.grade_and_child || (Array.isArray(input3.grade_and_child) || $report(_exceptionable2, {
|
|
2061
2150
|
path: _path2 + ".grade_and_child",
|
|
2062
2151
|
expected: "(Array<GradeAndChildEntry> | undefined)",
|
|
@@ -2065,7 +2154,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2065
2154
|
path: _path2 + ".grade_and_child[" + _index29 + "]",
|
|
2066
2155
|
expected: "GradeAndChildEntry",
|
|
2067
2156
|
value: elem
|
|
2068
|
-
})) && $
|
|
2157
|
+
})) && $vo33(elem, _path2 + ".grade_and_child[" + _index29 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2069
2158
|
path: _path2 + ".grade_and_child[" + _index29 + "]",
|
|
2070
2159
|
expected: "GradeAndChildEntry",
|
|
2071
2160
|
value: elem
|
|
@@ -2073,8 +2162,24 @@ var validBoxPlotRequest = (input) => {
|
|
|
2073
2162
|
path: _path2 + ".grade_and_child",
|
|
2074
2163
|
expected: "(Array<GradeAndChildEntry> | undefined)",
|
|
2075
2164
|
value: input3.grade_and_child
|
|
2165
|
+
}), (Array.isArray(input3.values) || $report(_exceptionable2, {
|
|
2166
|
+
path: _path2 + ".values",
|
|
2167
|
+
expected: "Array<__type>.o1",
|
|
2168
|
+
value: input3.values
|
|
2169
|
+
})) && input3.values.map((elem, _index30) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2170
|
+
path: _path2 + ".values[" + _index30 + "]",
|
|
2171
|
+
expected: "__type.o6",
|
|
2172
|
+
value: elem
|
|
2173
|
+
})) && $vo34(elem, _path2 + ".values[" + _index30 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2174
|
+
path: _path2 + ".values[" + _index30 + "]",
|
|
2175
|
+
expected: "__type.o6",
|
|
2176
|
+
value: elem
|
|
2177
|
+
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
2178
|
+
path: _path2 + ".values",
|
|
2179
|
+
expected: "Array<__type>.o1",
|
|
2180
|
+
value: input3.values
|
|
2076
2181
|
})].every((flag) => flag);
|
|
2077
|
-
const $
|
|
2182
|
+
const $vo32 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2078
2183
|
path: _path2 + ".id",
|
|
2079
2184
|
expected: "string",
|
|
2080
2185
|
value: input3.id
|
|
@@ -2090,8 +2195,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2090
2195
|
path: _path2 + ".child_types",
|
|
2091
2196
|
expected: "(Array<string> | undefined)",
|
|
2092
2197
|
value: input3.child_types
|
|
2093
|
-
})) && input3.child_types.map((elem,
|
|
2094
|
-
path: _path2 + ".child_types[" +
|
|
2198
|
+
})) && input3.child_types.map((elem, _index31) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2199
|
+
path: _path2 + ".child_types[" + _index31 + "]",
|
|
2095
2200
|
expected: "string",
|
|
2096
2201
|
value: elem
|
|
2097
2202
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2106,8 +2211,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2106
2211
|
path: _path2 + ".included_types",
|
|
2107
2212
|
expected: "(Array<string> | undefined)",
|
|
2108
2213
|
value: input3.included_types
|
|
2109
|
-
})) && input3.included_types.map((elem,
|
|
2110
|
-
path: _path2 + ".included_types[" +
|
|
2214
|
+
})) && input3.included_types.map((elem, _index32) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2215
|
+
path: _path2 + ".included_types[" + _index32 + "]",
|
|
2111
2216
|
expected: "string",
|
|
2112
2217
|
value: elem
|
|
2113
2218
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2139,7 +2244,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2139
2244
|
expected: "(__type.o2 | undefined)",
|
|
2140
2245
|
value: input3.valueConversion
|
|
2141
2246
|
})].every((flag) => flag);
|
|
2142
|
-
const $
|
|
2247
|
+
const $vo33 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.grade || $report(_exceptionable2, {
|
|
2143
2248
|
path: _path2 + ".grade",
|
|
2144
2249
|
expected: "number",
|
|
2145
2250
|
value: input3.grade
|
|
@@ -2156,7 +2261,25 @@ var validBoxPlotRequest = (input) => {
|
|
|
2156
2261
|
expected: "string",
|
|
2157
2262
|
value: input3.child_label
|
|
2158
2263
|
})].every((flag) => flag);
|
|
2159
|
-
const $
|
|
2264
|
+
const $vo34 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.key || "number" === typeof input3.key || $report(_exceptionable2, {
|
|
2265
|
+
path: _path2 + ".key",
|
|
2266
|
+
expected: "(number | string)",
|
|
2267
|
+
value: input3.key
|
|
2268
|
+
}), void 0 === input3.label || "string" === typeof input3.label || $report(_exceptionable2, {
|
|
2269
|
+
path: _path2 + ".label",
|
|
2270
|
+
expected: "(string | undefined)",
|
|
2271
|
+
value: input3.label
|
|
2272
|
+
}), false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
2273
|
+
if (["key", "label"].some((prop) => key === prop))
|
|
2274
|
+
return true;
|
|
2275
|
+
const value = input3[key];
|
|
2276
|
+
if (void 0 === value)
|
|
2277
|
+
return true;
|
|
2278
|
+
if (RegExp(/(.*)/).test(key))
|
|
2279
|
+
return true;
|
|
2280
|
+
return true;
|
|
2281
|
+
}).every((flag) => flag)].every((flag) => flag);
|
|
2282
|
+
const $vo35 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
|
|
2160
2283
|
path: _path2 + ".join",
|
|
2161
2284
|
expected: "(string | undefined)",
|
|
2162
2285
|
value: input3.join
|
|
@@ -2164,29 +2287,49 @@ var validBoxPlotRequest = (input) => {
|
|
|
2164
2287
|
path: _path2 + ".isnot",
|
|
2165
2288
|
expected: "(boolean | undefined)",
|
|
2166
2289
|
value: input3.isnot
|
|
2290
|
+
}), void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade || $report(_exceptionable2, {
|
|
2291
|
+
path: _path2 + ".bar_by_grade",
|
|
2292
|
+
expected: "(boolean | undefined)",
|
|
2293
|
+
value: input3.bar_by_grade
|
|
2294
|
+
}), void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children || $report(_exceptionable2, {
|
|
2295
|
+
path: _path2 + ".bar_by_children",
|
|
2296
|
+
expected: "(boolean | undefined)",
|
|
2297
|
+
value: input3.bar_by_children
|
|
2298
|
+
}), void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade || $report(_exceptionable2, {
|
|
2299
|
+
path: _path2 + ".value_by_max_grade",
|
|
2300
|
+
expected: "(boolean | undefined)",
|
|
2301
|
+
value: input3.value_by_max_grade
|
|
2302
|
+
}), void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent || $report(_exceptionable2, {
|
|
2303
|
+
path: _path2 + ".value_by_most_recent",
|
|
2304
|
+
expected: "(boolean | undefined)",
|
|
2305
|
+
value: input3.value_by_most_recent
|
|
2306
|
+
}), void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade || $report(_exceptionable2, {
|
|
2307
|
+
path: _path2 + ".value_by_computable_grade",
|
|
2308
|
+
expected: "(boolean | undefined)",
|
|
2309
|
+
value: input3.value_by_computable_grade
|
|
2167
2310
|
}), ("object" === typeof input3.term && null !== input3.term || $report(_exceptionable2, {
|
|
2168
2311
|
path: _path2 + ".term",
|
|
2169
2312
|
expected: "DtTerm",
|
|
2170
2313
|
value: input3.term
|
|
2171
|
-
})) && $
|
|
2314
|
+
})) && $vo36(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
2172
2315
|
path: _path2 + ".term",
|
|
2173
2316
|
expected: "DtTerm",
|
|
2174
2317
|
value: input3.term
|
|
2175
2318
|
}), (Array.isArray(input3.values) || $report(_exceptionable2, {
|
|
2176
2319
|
path: _path2 + ".values",
|
|
2177
|
-
expected: "Array<
|
|
2320
|
+
expected: "Array<GeneVariantValue>",
|
|
2178
2321
|
value: input3.values
|
|
2179
|
-
})) && input3.values.map((elem,
|
|
2180
|
-
path: _path2 + ".values[" +
|
|
2181
|
-
expected: "
|
|
2322
|
+
})) && input3.values.map((elem, _index33) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || $report(_exceptionable2, {
|
|
2323
|
+
path: _path2 + ".values[" + _index33 + "]",
|
|
2324
|
+
expected: "GeneVariantValue",
|
|
2182
2325
|
value: elem
|
|
2183
|
-
})) && $
|
|
2184
|
-
path: _path2 + ".values[" +
|
|
2185
|
-
expected: "
|
|
2326
|
+
})) && $vo46(elem, _path2 + ".values[" + _index33 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2327
|
+
path: _path2 + ".values[" + _index33 + "]",
|
|
2328
|
+
expected: "GeneVariantValue",
|
|
2186
2329
|
value: elem
|
|
2187
2330
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
2188
2331
|
path: _path2 + ".values",
|
|
2189
|
-
expected: "Array<
|
|
2332
|
+
expected: "Array<GeneVariantValue>",
|
|
2190
2333
|
value: input3.values
|
|
2191
2334
|
}), void 0 === input3.includeNotTested || "boolean" === typeof input3.includeNotTested || $report(_exceptionable2, {
|
|
2192
2335
|
path: _path2 + ".includeNotTested",
|
|
@@ -2196,8 +2339,40 @@ var validBoxPlotRequest = (input) => {
|
|
|
2196
2339
|
path: _path2 + ".excludeGeneName",
|
|
2197
2340
|
expected: "(boolean | undefined)",
|
|
2198
2341
|
value: input3.excludeGeneName
|
|
2342
|
+
}), void 0 === input3.genotype || "variant" === input3.genotype || "nt" === input3.genotype || "wt" === input3.genotype || $report(_exceptionable2, {
|
|
2343
|
+
path: _path2 + ".genotype",
|
|
2344
|
+
expected: '("nt" | "variant" | "wt" | undefined)',
|
|
2345
|
+
value: input3.genotype
|
|
2346
|
+
}), void 0 === input3.mcount || "any" === input3.mcount || "single" === input3.mcount || "multiple" === input3.mcount || "all" === input3.mcount || $report(_exceptionable2, {
|
|
2347
|
+
path: _path2 + ".mcount",
|
|
2348
|
+
expected: '("all" | "any" | "multiple" | "single" | undefined)',
|
|
2349
|
+
value: input3.mcount
|
|
2350
|
+
}), void 0 === input3.continuousCnv || "boolean" === typeof input3.continuousCnv || $report(_exceptionable2, {
|
|
2351
|
+
path: _path2 + ".continuousCnv",
|
|
2352
|
+
expected: "(boolean | undefined)",
|
|
2353
|
+
value: input3.continuousCnv
|
|
2354
|
+
}), void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff || $report(_exceptionable2, {
|
|
2355
|
+
path: _path2 + ".cnvLossCutoff",
|
|
2356
|
+
expected: "(number | undefined)",
|
|
2357
|
+
value: input3.cnvLossCutoff
|
|
2358
|
+
}), void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff || $report(_exceptionable2, {
|
|
2359
|
+
path: _path2 + ".cnvGainCutoff",
|
|
2360
|
+
expected: "(number | undefined)",
|
|
2361
|
+
value: input3.cnvGainCutoff
|
|
2362
|
+
}), void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength || $report(_exceptionable2, {
|
|
2363
|
+
path: _path2 + ".cnvMaxLength",
|
|
2364
|
+
expected: "(number | undefined)",
|
|
2365
|
+
value: input3.cnvMaxLength
|
|
2366
|
+
}), void 0 === input3.cnvWT || "boolean" === typeof input3.cnvWT || $report(_exceptionable2, {
|
|
2367
|
+
path: _path2 + ".cnvWT",
|
|
2368
|
+
expected: "(boolean | undefined)",
|
|
2369
|
+
value: input3.cnvWT
|
|
2370
|
+
}), void 0 === input3.fractionOverlap || "number" === typeof input3.fractionOverlap || $report(_exceptionable2, {
|
|
2371
|
+
path: _path2 + ".fractionOverlap",
|
|
2372
|
+
expected: "(number | undefined)",
|
|
2373
|
+
value: input3.fractionOverlap
|
|
2199
2374
|
})].every((flag) => flag);
|
|
2200
|
-
const $
|
|
2375
|
+
const $vo36 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2201
2376
|
path: _path2 + ".id",
|
|
2202
2377
|
expected: "string",
|
|
2203
2378
|
value: input3.id
|
|
@@ -2217,7 +2392,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2217
2392
|
path: _path2 + ".parentTerm",
|
|
2218
2393
|
expected: '(BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting?: TermGroupSetting | undefined; childTerms?: DtTerm[] | undefined; } | BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting?: TermGroupSetting | undefined; childTerms?: DtTerm[] | undefined; } | undefined)',
|
|
2219
2394
|
value: input3.parentTerm
|
|
2220
|
-
})) && $
|
|
2395
|
+
})) && $vu12(input3.parentTerm, _path2 + ".parentTerm", _exceptionable2) || $report(_exceptionable2, {
|
|
2221
2396
|
path: _path2 + ".parentTerm",
|
|
2222
2397
|
expected: '(BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting?: TermGroupSetting | undefined; childTerms?: DtTerm[] | undefined; } | BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting?: TermGroupSetting | undefined; childTerms?: DtTerm[] | undefined; } | undefined)',
|
|
2223
2398
|
value: input3.parentTerm
|
|
@@ -2246,7 +2421,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2246
2421
|
expected: "TermValues",
|
|
2247
2422
|
value: input3.values
|
|
2248
2423
|
})].every((flag) => flag);
|
|
2249
|
-
const $
|
|
2424
|
+
const $vo37 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2250
2425
|
path: _path2 + ".id",
|
|
2251
2426
|
expected: "string",
|
|
2252
2427
|
value: input3.id
|
|
@@ -2262,8 +2437,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2262
2437
|
path: _path2 + ".child_types",
|
|
2263
2438
|
expected: "(Array<string> | undefined)",
|
|
2264
2439
|
value: input3.child_types
|
|
2265
|
-
})) && input3.child_types.map((elem,
|
|
2266
|
-
path: _path2 + ".child_types[" +
|
|
2440
|
+
})) && input3.child_types.map((elem, _index34) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2441
|
+
path: _path2 + ".child_types[" + _index34 + "]",
|
|
2267
2442
|
expected: "string",
|
|
2268
2443
|
value: elem
|
|
2269
2444
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2278,8 +2453,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2278
2453
|
path: _path2 + ".included_types",
|
|
2279
2454
|
expected: "(Array<string> | undefined)",
|
|
2280
2455
|
value: input3.included_types
|
|
2281
|
-
})) && input3.included_types.map((elem,
|
|
2282
|
-
path: _path2 + ".included_types[" +
|
|
2456
|
+
})) && input3.included_types.map((elem, _index35) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2457
|
+
path: _path2 + ".included_types[" + _index35 + "]",
|
|
2283
2458
|
expected: "string",
|
|
2284
2459
|
value: elem
|
|
2285
2460
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2334,12 +2509,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
2334
2509
|
path: _path2 + ".genes",
|
|
2335
2510
|
expected: "Array<GvGeneTerm>",
|
|
2336
2511
|
value: input3.genes
|
|
2337
|
-
})) && input3.genes.map((elem,
|
|
2338
|
-
path: _path2 + ".genes[" +
|
|
2512
|
+
})) && input3.genes.map((elem, _index36) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2513
|
+
path: _path2 + ".genes[" + _index36 + "]",
|
|
2339
2514
|
expected: "(BaseTerm & Coord | BaseTerm & Gene)",
|
|
2340
2515
|
value: elem
|
|
2341
|
-
})) && $vu2(elem, _path2 + ".genes[" +
|
|
2342
|
-
path: _path2 + ".genes[" +
|
|
2516
|
+
})) && $vu2(elem, _path2 + ".genes[" + _index36 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2517
|
+
path: _path2 + ".genes[" + _index36 + "]",
|
|
2343
2518
|
expected: "(BaseTerm & Coord | BaseTerm & Gene)",
|
|
2344
2519
|
value: elem
|
|
2345
2520
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2350,7 +2525,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2350
2525
|
path: _path2 + ".groupsetting",
|
|
2351
2526
|
expected: "(TermGroupSetting | undefined)",
|
|
2352
2527
|
value: input3.groupsetting
|
|
2353
|
-
})) && $
|
|
2528
|
+
})) && $vo40(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
2354
2529
|
path: _path2 + ".groupsetting",
|
|
2355
2530
|
expected: "(TermGroupSetting | undefined)",
|
|
2356
2531
|
value: input3.groupsetting
|
|
@@ -2358,12 +2533,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
2358
2533
|
path: _path2 + ".childTerms",
|
|
2359
2534
|
expected: "(Array<DtTerm> | undefined)",
|
|
2360
2535
|
value: input3.childTerms
|
|
2361
|
-
})) && input3.childTerms.map((elem,
|
|
2362
|
-
path: _path2 + ".childTerms[" +
|
|
2536
|
+
})) && input3.childTerms.map((elem, _index37) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2537
|
+
path: _path2 + ".childTerms[" + _index37 + "]",
|
|
2363
2538
|
expected: "DtTerm",
|
|
2364
2539
|
value: elem
|
|
2365
|
-
})) && $
|
|
2366
|
-
path: _path2 + ".childTerms[" +
|
|
2540
|
+
})) && $vo36(elem, _path2 + ".childTerms[" + _index37 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2541
|
+
path: _path2 + ".childTerms[" + _index37 + "]",
|
|
2367
2542
|
expected: "DtTerm",
|
|
2368
2543
|
value: elem
|
|
2369
2544
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2371,7 +2546,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2371
2546
|
expected: "(Array<DtTerm> | undefined)",
|
|
2372
2547
|
value: input3.childTerms
|
|
2373
2548
|
})].every((flag) => flag);
|
|
2374
|
-
const $
|
|
2549
|
+
const $vo38 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2375
2550
|
path: _path2 + ".id",
|
|
2376
2551
|
expected: "string",
|
|
2377
2552
|
value: input3.id
|
|
@@ -2387,8 +2562,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2387
2562
|
path: _path2 + ".child_types",
|
|
2388
2563
|
expected: "(Array<string> | undefined)",
|
|
2389
2564
|
value: input3.child_types
|
|
2390
|
-
})) && input3.child_types.map((elem,
|
|
2391
|
-
path: _path2 + ".child_types[" +
|
|
2565
|
+
})) && input3.child_types.map((elem, _index38) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2566
|
+
path: _path2 + ".child_types[" + _index38 + "]",
|
|
2392
2567
|
expected: "string",
|
|
2393
2568
|
value: elem
|
|
2394
2569
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2403,8 +2578,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2403
2578
|
path: _path2 + ".included_types",
|
|
2404
2579
|
expected: "(Array<string> | undefined)",
|
|
2405
2580
|
value: input3.included_types
|
|
2406
|
-
})) && input3.included_types.map((elem,
|
|
2407
|
-
path: _path2 + ".included_types[" +
|
|
2581
|
+
})) && input3.included_types.map((elem, _index39) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2582
|
+
path: _path2 + ".included_types[" + _index39 + "]",
|
|
2408
2583
|
expected: "string",
|
|
2409
2584
|
value: elem
|
|
2410
2585
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2456,7 +2631,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2456
2631
|
expected: "(number | undefined)",
|
|
2457
2632
|
value: input3.stop
|
|
2458
2633
|
})].every((flag) => flag);
|
|
2459
|
-
const $
|
|
2634
|
+
const $vo39 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2460
2635
|
path: _path2 + ".id",
|
|
2461
2636
|
expected: "string",
|
|
2462
2637
|
value: input3.id
|
|
@@ -2472,8 +2647,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2472
2647
|
path: _path2 + ".child_types",
|
|
2473
2648
|
expected: "(Array<string> | undefined)",
|
|
2474
2649
|
value: input3.child_types
|
|
2475
|
-
})) && input3.child_types.map((elem,
|
|
2476
|
-
path: _path2 + ".child_types[" +
|
|
2650
|
+
})) && input3.child_types.map((elem, _index40) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2651
|
+
path: _path2 + ".child_types[" + _index40 + "]",
|
|
2477
2652
|
expected: "string",
|
|
2478
2653
|
value: elem
|
|
2479
2654
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2488,8 +2663,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2488
2663
|
path: _path2 + ".included_types",
|
|
2489
2664
|
expected: "(Array<string> | undefined)",
|
|
2490
2665
|
value: input3.included_types
|
|
2491
|
-
})) && input3.included_types.map((elem,
|
|
2492
|
-
path: _path2 + ".included_types[" +
|
|
2666
|
+
})) && input3.included_types.map((elem, _index41) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2667
|
+
path: _path2 + ".included_types[" + _index41 + "]",
|
|
2493
2668
|
expected: "string",
|
|
2494
2669
|
value: elem
|
|
2495
2670
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2537,7 +2712,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2537
2712
|
expected: "number",
|
|
2538
2713
|
value: input3.stop
|
|
2539
2714
|
})].every((flag) => flag);
|
|
2540
|
-
const $
|
|
2715
|
+
const $vo40 = (input3, _path2, _exceptionable2 = true) => ["boolean" === typeof input3.disabled || $report(_exceptionable2, {
|
|
2541
2716
|
path: _path2 + ".disabled",
|
|
2542
2717
|
expected: "boolean",
|
|
2543
2718
|
value: input3.disabled
|
|
@@ -2545,12 +2720,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
2545
2720
|
path: _path2 + ".lst",
|
|
2546
2721
|
expected: "(Array<Groupset> | undefined)",
|
|
2547
2722
|
value: input3.lst
|
|
2548
|
-
})) && input3.lst.map((elem,
|
|
2549
|
-
path: _path2 + ".lst[" +
|
|
2723
|
+
})) && input3.lst.map((elem, _index42) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2724
|
+
path: _path2 + ".lst[" + _index42 + "]",
|
|
2550
2725
|
expected: "Groupset",
|
|
2551
2726
|
value: elem
|
|
2552
|
-
})) && $
|
|
2553
|
-
path: _path2 + ".lst[" +
|
|
2727
|
+
})) && $vo41(elem, _path2 + ".lst[" + _index42 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2728
|
+
path: _path2 + ".lst[" + _index42 + "]",
|
|
2554
2729
|
expected: "Groupset",
|
|
2555
2730
|
value: elem
|
|
2556
2731
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2558,7 +2733,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2558
2733
|
expected: "(Array<Groupset> | undefined)",
|
|
2559
2734
|
value: input3.lst
|
|
2560
2735
|
})].every((flag) => flag);
|
|
2561
|
-
const $
|
|
2736
|
+
const $vo41 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
|
|
2562
2737
|
path: _path2 + ".name",
|
|
2563
2738
|
expected: "string",
|
|
2564
2739
|
value: input3.name
|
|
@@ -2578,12 +2753,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
2578
2753
|
path: _path2 + ".groups",
|
|
2579
2754
|
expected: "Array<GroupEntry>",
|
|
2580
2755
|
value: input3.groups
|
|
2581
|
-
})) && input3.groups.map((elem,
|
|
2582
|
-
path: _path2 + ".groups[" +
|
|
2756
|
+
})) && input3.groups.map((elem, _index43) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2757
|
+
path: _path2 + ".groups[" + _index43 + "]",
|
|
2583
2758
|
expected: "(FilterGroup | ValuesGroup)",
|
|
2584
2759
|
value: elem
|
|
2585
|
-
})) && $vu3(elem, _path2 + ".groups[" +
|
|
2586
|
-
path: _path2 + ".groups[" +
|
|
2760
|
+
})) && $vu3(elem, _path2 + ".groups[" + _index43 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2761
|
+
path: _path2 + ".groups[" + _index43 + "]",
|
|
2587
2762
|
expected: "(FilterGroup | ValuesGroup)",
|
|
2588
2763
|
value: elem
|
|
2589
2764
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2591,7 +2766,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2591
2766
|
expected: "Array<GroupEntry>",
|
|
2592
2767
|
value: input3.groups
|
|
2593
2768
|
})].every((flag) => flag);
|
|
2594
|
-
const $
|
|
2769
|
+
const $vo42 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
|
|
2595
2770
|
path: _path2 + ".name",
|
|
2596
2771
|
expected: "string",
|
|
2597
2772
|
value: input3.name
|
|
@@ -2601,26 +2776,26 @@ var validBoxPlotRequest = (input) => {
|
|
|
2601
2776
|
value: input3.type
|
|
2602
2777
|
}), (Array.isArray(input3.values) || $report(_exceptionable2, {
|
|
2603
2778
|
path: _path2 + ".values",
|
|
2604
|
-
expected: "Array<__type>.
|
|
2779
|
+
expected: "Array<__type>.o2",
|
|
2605
2780
|
value: input3.values
|
|
2606
|
-
})) && input3.values.map((elem,
|
|
2607
|
-
path: _path2 + ".values[" +
|
|
2608
|
-
expected: "__type.
|
|
2781
|
+
})) && input3.values.map((elem, _index44) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2782
|
+
path: _path2 + ".values[" + _index44 + "]",
|
|
2783
|
+
expected: "__type.o7",
|
|
2609
2784
|
value: elem
|
|
2610
|
-
})) && $
|
|
2611
|
-
path: _path2 + ".values[" +
|
|
2612
|
-
expected: "__type.
|
|
2785
|
+
})) && $vo43(elem, _path2 + ".values[" + _index44 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2786
|
+
path: _path2 + ".values[" + _index44 + "]",
|
|
2787
|
+
expected: "__type.o7",
|
|
2613
2788
|
value: elem
|
|
2614
2789
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
2615
2790
|
path: _path2 + ".values",
|
|
2616
|
-
expected: "Array<__type>.
|
|
2791
|
+
expected: "Array<__type>.o2",
|
|
2617
2792
|
value: input3.values
|
|
2618
2793
|
}), void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable || $report(_exceptionable2, {
|
|
2619
2794
|
path: _path2 + ".uncomputable",
|
|
2620
2795
|
expected: "(boolean | undefined)",
|
|
2621
2796
|
value: input3.uncomputable
|
|
2622
2797
|
})].every((flag) => flag);
|
|
2623
|
-
const $
|
|
2798
|
+
const $vo43 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.key || "number" === typeof input3.key || $report(_exceptionable2, {
|
|
2624
2799
|
path: _path2 + ".key",
|
|
2625
2800
|
expected: "(number | string)",
|
|
2626
2801
|
value: input3.key
|
|
@@ -2629,7 +2804,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2629
2804
|
expected: "string",
|
|
2630
2805
|
value: input3.label
|
|
2631
2806
|
})].every((flag) => flag);
|
|
2632
|
-
const $
|
|
2807
|
+
const $vo44 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
|
|
2633
2808
|
path: _path2 + ".name",
|
|
2634
2809
|
expected: "string",
|
|
2635
2810
|
value: input3.name
|
|
@@ -2650,7 +2825,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2650
2825
|
expected: "string",
|
|
2651
2826
|
value: input3.color
|
|
2652
2827
|
})].every((flag) => flag);
|
|
2653
|
-
const $
|
|
2828
|
+
const $vo45 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2654
2829
|
path: _path2 + ".id",
|
|
2655
2830
|
expected: "string",
|
|
2656
2831
|
value: input3.id
|
|
@@ -2666,8 +2841,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2666
2841
|
path: _path2 + ".child_types",
|
|
2667
2842
|
expected: "(Array<string> | undefined)",
|
|
2668
2843
|
value: input3.child_types
|
|
2669
|
-
})) && input3.child_types.map((elem,
|
|
2670
|
-
path: _path2 + ".child_types[" +
|
|
2844
|
+
})) && input3.child_types.map((elem, _index45) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2845
|
+
path: _path2 + ".child_types[" + _index45 + "]",
|
|
2671
2846
|
expected: "string",
|
|
2672
2847
|
value: elem
|
|
2673
2848
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2682,8 +2857,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2682
2857
|
path: _path2 + ".included_types",
|
|
2683
2858
|
expected: "(Array<string> | undefined)",
|
|
2684
2859
|
value: input3.included_types
|
|
2685
|
-
})) && input3.included_types.map((elem,
|
|
2686
|
-
path: _path2 + ".included_types[" +
|
|
2860
|
+
})) && input3.included_types.map((elem, _index46) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2861
|
+
path: _path2 + ".included_types[" + _index46 + "]",
|
|
2687
2862
|
expected: "string",
|
|
2688
2863
|
value: elem
|
|
2689
2864
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2734,12 +2909,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
2734
2909
|
path: _path2 + ".genes",
|
|
2735
2910
|
expected: "Array<GvGeneTerm>",
|
|
2736
2911
|
value: input3.genes
|
|
2737
|
-
})) && input3.genes.map((elem,
|
|
2738
|
-
path: _path2 + ".genes[" +
|
|
2912
|
+
})) && input3.genes.map((elem, _index47) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2913
|
+
path: _path2 + ".genes[" + _index47 + "]",
|
|
2739
2914
|
expected: "(BaseTerm & Coord | BaseTerm & Gene)",
|
|
2740
2915
|
value: elem
|
|
2741
|
-
})) && $vu2(elem, _path2 + ".genes[" +
|
|
2742
|
-
path: _path2 + ".genes[" +
|
|
2916
|
+
})) && $vu2(elem, _path2 + ".genes[" + _index47 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2917
|
+
path: _path2 + ".genes[" + _index47 + "]",
|
|
2743
2918
|
expected: "(BaseTerm & Coord | BaseTerm & Gene)",
|
|
2744
2919
|
value: elem
|
|
2745
2920
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2750,7 +2925,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2750
2925
|
path: _path2 + ".groupsetting",
|
|
2751
2926
|
expected: "(TermGroupSetting | undefined)",
|
|
2752
2927
|
value: input3.groupsetting
|
|
2753
|
-
})) && $
|
|
2928
|
+
})) && $vo40(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
2754
2929
|
path: _path2 + ".groupsetting",
|
|
2755
2930
|
expected: "(TermGroupSetting | undefined)",
|
|
2756
2931
|
value: input3.groupsetting
|
|
@@ -2758,12 +2933,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
2758
2933
|
path: _path2 + ".childTerms",
|
|
2759
2934
|
expected: "(Array<DtTerm> | undefined)",
|
|
2760
2935
|
value: input3.childTerms
|
|
2761
|
-
})) && input3.childTerms.map((elem,
|
|
2762
|
-
path: _path2 + ".childTerms[" +
|
|
2936
|
+
})) && input3.childTerms.map((elem, _index48) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2937
|
+
path: _path2 + ".childTerms[" + _index48 + "]",
|
|
2763
2938
|
expected: "DtTerm",
|
|
2764
2939
|
value: elem
|
|
2765
|
-
})) && $
|
|
2766
|
-
path: _path2 + ".childTerms[" +
|
|
2940
|
+
})) && $vo36(elem, _path2 + ".childTerms[" + _index48 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2941
|
+
path: _path2 + ".childTerms[" + _index48 + "]",
|
|
2767
2942
|
expected: "DtTerm",
|
|
2768
2943
|
value: elem
|
|
2769
2944
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2771,20 +2946,52 @@ var validBoxPlotRequest = (input) => {
|
|
|
2771
2946
|
expected: "(Array<DtTerm> | undefined)",
|
|
2772
2947
|
value: input3.childTerms
|
|
2773
2948
|
})].every((flag) => flag);
|
|
2774
|
-
const $
|
|
2949
|
+
const $vo46 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.key || "string" === typeof input3.key || $report(_exceptionable2, {
|
|
2775
2950
|
path: _path2 + ".key",
|
|
2776
|
-
expected: "string",
|
|
2951
|
+
expected: "(string | undefined)",
|
|
2777
2952
|
value: input3.key
|
|
2778
|
-
}), "string" === typeof input3.label || $report(_exceptionable2, {
|
|
2953
|
+
}), void 0 === input3.label || "string" === typeof input3.label || "number" === typeof input3.label || $report(_exceptionable2, {
|
|
2779
2954
|
path: _path2 + ".label",
|
|
2780
|
-
expected: "string",
|
|
2955
|
+
expected: "(number | string | undefined)",
|
|
2781
2956
|
value: input3.label
|
|
2782
|
-
}), "string" === typeof input3.value || $report(_exceptionable2, {
|
|
2957
|
+
}), void 0 === input3.value || "string" === typeof input3.value || $report(_exceptionable2, {
|
|
2783
2958
|
path: _path2 + ".value",
|
|
2784
|
-
expected: "string",
|
|
2959
|
+
expected: "(string | undefined)",
|
|
2785
2960
|
value: input3.value
|
|
2961
|
+
}), void 0 === input3.dt || "number" === typeof input3.dt || $report(_exceptionable2, {
|
|
2962
|
+
path: _path2 + ".dt",
|
|
2963
|
+
expected: "(number | undefined)",
|
|
2964
|
+
value: input3.dt
|
|
2965
|
+
}), void 0 === input3.mclasslst || (Array.isArray(input3.mclasslst) || $report(_exceptionable2, {
|
|
2966
|
+
path: _path2 + ".mclasslst",
|
|
2967
|
+
expected: "(Array<string> | undefined)",
|
|
2968
|
+
value: input3.mclasslst
|
|
2969
|
+
})) && input3.mclasslst.map((elem, _index49) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2970
|
+
path: _path2 + ".mclasslst[" + _index49 + "]",
|
|
2971
|
+
expected: "string",
|
|
2972
|
+
value: elem
|
|
2973
|
+
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
2974
|
+
path: _path2 + ".mclasslst",
|
|
2975
|
+
expected: "(Array<string> | undefined)",
|
|
2976
|
+
value: input3.mclasslst
|
|
2977
|
+
}), void 0 === input3.mclassExcludeLst || (Array.isArray(input3.mclassExcludeLst) || $report(_exceptionable2, {
|
|
2978
|
+
path: _path2 + ".mclassExcludeLst",
|
|
2979
|
+
expected: "(Array<string> | undefined)",
|
|
2980
|
+
value: input3.mclassExcludeLst
|
|
2981
|
+
})) && input3.mclassExcludeLst.map((elem, _index50) => "string" === typeof elem || $report(_exceptionable2, {
|
|
2982
|
+
path: _path2 + ".mclassExcludeLst[" + _index50 + "]",
|
|
2983
|
+
expected: "string",
|
|
2984
|
+
value: elem
|
|
2985
|
+
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
2986
|
+
path: _path2 + ".mclassExcludeLst",
|
|
2987
|
+
expected: "(Array<string> | undefined)",
|
|
2988
|
+
value: input3.mclassExcludeLst
|
|
2989
|
+
}), void 0 === input3.origin || "string" === typeof input3.origin || $report(_exceptionable2, {
|
|
2990
|
+
path: _path2 + ".origin",
|
|
2991
|
+
expected: "(string | undefined)",
|
|
2992
|
+
value: input3.origin
|
|
2786
2993
|
})].every((flag) => flag);
|
|
2787
|
-
const $
|
|
2994
|
+
const $vo47 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.join || "string" === typeof input3.join || $report(_exceptionable2, {
|
|
2788
2995
|
path: _path2 + ".join",
|
|
2789
2996
|
expected: "(string | undefined)",
|
|
2790
2997
|
value: input3.join
|
|
@@ -2792,11 +2999,31 @@ var validBoxPlotRequest = (input) => {
|
|
|
2792
2999
|
path: _path2 + ".isnot",
|
|
2793
3000
|
expected: "(boolean | undefined)",
|
|
2794
3001
|
value: input3.isnot
|
|
3002
|
+
}), void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade || $report(_exceptionable2, {
|
|
3003
|
+
path: _path2 + ".bar_by_grade",
|
|
3004
|
+
expected: "(boolean | undefined)",
|
|
3005
|
+
value: input3.bar_by_grade
|
|
3006
|
+
}), void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children || $report(_exceptionable2, {
|
|
3007
|
+
path: _path2 + ".bar_by_children",
|
|
3008
|
+
expected: "(boolean | undefined)",
|
|
3009
|
+
value: input3.bar_by_children
|
|
3010
|
+
}), void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade || $report(_exceptionable2, {
|
|
3011
|
+
path: _path2 + ".value_by_max_grade",
|
|
3012
|
+
expected: "(boolean | undefined)",
|
|
3013
|
+
value: input3.value_by_max_grade
|
|
3014
|
+
}), void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent || $report(_exceptionable2, {
|
|
3015
|
+
path: _path2 + ".value_by_most_recent",
|
|
3016
|
+
expected: "(boolean | undefined)",
|
|
3017
|
+
value: input3.value_by_most_recent
|
|
3018
|
+
}), void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade || $report(_exceptionable2, {
|
|
3019
|
+
path: _path2 + ".value_by_computable_grade",
|
|
3020
|
+
expected: "(boolean | undefined)",
|
|
3021
|
+
value: input3.value_by_computable_grade
|
|
2795
3022
|
}), ("object" === typeof input3.term && null !== input3.term || $report(_exceptionable2, {
|
|
2796
3023
|
path: _path2 + ".term",
|
|
2797
3024
|
expected: "(CategoricalTermCollection | NumericTermCollection)",
|
|
2798
3025
|
value: input3.term
|
|
2799
|
-
})) && $
|
|
3026
|
+
})) && $vu13(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
2800
3027
|
path: _path2 + ".term",
|
|
2801
3028
|
expected: "(CategoricalTermCollection | NumericTermCollection)",
|
|
2802
3029
|
value: input3.term
|
|
@@ -2805,7 +3032,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2805
3032
|
expected: "number",
|
|
2806
3033
|
value: input3.ratio
|
|
2807
3034
|
})].every((flag) => flag);
|
|
2808
|
-
const $
|
|
3035
|
+
const $vo48 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2809
3036
|
path: _path2 + ".id",
|
|
2810
3037
|
expected: "string",
|
|
2811
3038
|
value: input3.id
|
|
@@ -2821,8 +3048,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2821
3048
|
path: _path2 + ".child_types",
|
|
2822
3049
|
expected: "(Array<string> | undefined)",
|
|
2823
3050
|
value: input3.child_types
|
|
2824
|
-
})) && input3.child_types.map((elem,
|
|
2825
|
-
path: _path2 + ".child_types[" +
|
|
3051
|
+
})) && input3.child_types.map((elem, _index51) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3052
|
+
path: _path2 + ".child_types[" + _index51 + "]",
|
|
2826
3053
|
expected: "string",
|
|
2827
3054
|
value: elem
|
|
2828
3055
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2837,8 +3064,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2837
3064
|
path: _path2 + ".included_types",
|
|
2838
3065
|
expected: "(Array<string> | undefined)",
|
|
2839
3066
|
value: input3.included_types
|
|
2840
|
-
})) && input3.included_types.map((elem,
|
|
2841
|
-
path: _path2 + ".included_types[" +
|
|
3067
|
+
})) && input3.included_types.map((elem, _index52) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3068
|
+
path: _path2 + ".included_types[" + _index52 + "]",
|
|
2842
3069
|
expected: "string",
|
|
2843
3070
|
value: elem
|
|
2844
3071
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2869,16 +3096,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
2869
3096
|
path: _path2 + ".valueConversion",
|
|
2870
3097
|
expected: "(__type.o2 | undefined)",
|
|
2871
3098
|
value: input3.valueConversion
|
|
2872
|
-
}), void 0 === input3.collectionId || "string" === typeof input3.collectionId || $report(_exceptionable2, {
|
|
2873
|
-
path: _path2 + ".collectionId",
|
|
2874
|
-
expected: "(string | undefined)",
|
|
2875
|
-
value: input3.collectionId
|
|
2876
3099
|
}), void 0 === input3.termIds || (Array.isArray(input3.termIds) || $report(_exceptionable2, {
|
|
2877
3100
|
path: _path2 + ".termIds",
|
|
2878
3101
|
expected: "(Array<string> | undefined)",
|
|
2879
3102
|
value: input3.termIds
|
|
2880
|
-
})) && input3.termIds.map((elem,
|
|
2881
|
-
path: _path2 + ".termIds[" +
|
|
3103
|
+
})) && input3.termIds.map((elem, _index53) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3104
|
+
path: _path2 + ".termIds[" + _index53 + "]",
|
|
2882
3105
|
expected: "string",
|
|
2883
3106
|
value: elem
|
|
2884
3107
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2889,12 +3112,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
2889
3112
|
path: _path2 + ".termlst",
|
|
2890
3113
|
expected: "Array<BaseTerm>",
|
|
2891
3114
|
value: input3.termlst
|
|
2892
|
-
})) && input3.termlst.map((elem,
|
|
2893
|
-
path: _path2 + ".termlst[" +
|
|
3115
|
+
})) && input3.termlst.map((elem, _index54) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
3116
|
+
path: _path2 + ".termlst[" + _index54 + "]",
|
|
2894
3117
|
expected: "BaseTerm",
|
|
2895
3118
|
value: elem
|
|
2896
|
-
})) && $
|
|
2897
|
-
path: _path2 + ".termlst[" +
|
|
3119
|
+
})) && $vo49(elem, _path2 + ".termlst[" + _index54 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
3120
|
+
path: _path2 + ".termlst[" + _index54 + "]",
|
|
2898
3121
|
expected: "BaseTerm",
|
|
2899
3122
|
value: elem
|
|
2900
3123
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2907,11 +3130,11 @@ var validBoxPlotRequest = (input) => {
|
|
|
2907
3130
|
value: input3.newTvs
|
|
2908
3131
|
}), ("object" === typeof input3.propsByTermId && null !== input3.propsByTermId && false === Array.isArray(input3.propsByTermId) || $report(_exceptionable2, {
|
|
2909
3132
|
path: _path2 + ".propsByTermId",
|
|
2910
|
-
expected: "__type.
|
|
3133
|
+
expected: "__type.o8",
|
|
2911
3134
|
value: input3.propsByTermId
|
|
2912
|
-
})) && $
|
|
3135
|
+
})) && $vo50(input3.propsByTermId, _path2 + ".propsByTermId", _exceptionable2) || $report(_exceptionable2, {
|
|
2913
3136
|
path: _path2 + ".propsByTermId",
|
|
2914
|
-
expected: "__type.
|
|
3137
|
+
expected: "__type.o8",
|
|
2915
3138
|
value: input3.propsByTermId
|
|
2916
3139
|
}), "numeric" === input3.memberType || $report(_exceptionable2, {
|
|
2917
3140
|
path: _path2 + ".memberType",
|
|
@@ -2921,8 +3144,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2921
3144
|
path: _path2 + ".numerators",
|
|
2922
3145
|
expected: "(Array<string> | undefined)",
|
|
2923
3146
|
value: input3.numerators
|
|
2924
|
-
})) && input3.numerators.map((elem,
|
|
2925
|
-
path: _path2 + ".numerators[" +
|
|
3147
|
+
})) && input3.numerators.map((elem, _index55) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3148
|
+
path: _path2 + ".numerators[" + _index55 + "]",
|
|
2926
3149
|
expected: "string",
|
|
2927
3150
|
value: elem
|
|
2928
3151
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2930,7 +3153,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
2930
3153
|
expected: "(Array<string> | undefined)",
|
|
2931
3154
|
value: input3.numerators
|
|
2932
3155
|
})].every((flag) => flag);
|
|
2933
|
-
const $
|
|
3156
|
+
const $vo49 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2934
3157
|
path: _path2 + ".id",
|
|
2935
3158
|
expected: "string",
|
|
2936
3159
|
value: input3.id
|
|
@@ -2946,8 +3169,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2946
3169
|
path: _path2 + ".child_types",
|
|
2947
3170
|
expected: "(Array<string> | undefined)",
|
|
2948
3171
|
value: input3.child_types
|
|
2949
|
-
})) && input3.child_types.map((elem,
|
|
2950
|
-
path: _path2 + ".child_types[" +
|
|
3172
|
+
})) && input3.child_types.map((elem, _index56) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3173
|
+
path: _path2 + ".child_types[" + _index56 + "]",
|
|
2951
3174
|
expected: "string",
|
|
2952
3175
|
value: elem
|
|
2953
3176
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2962,8 +3185,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
2962
3185
|
path: _path2 + ".included_types",
|
|
2963
3186
|
expected: "(Array<string> | undefined)",
|
|
2964
3187
|
value: input3.included_types
|
|
2965
|
-
})) && input3.included_types.map((elem,
|
|
2966
|
-
path: _path2 + ".included_types[" +
|
|
3188
|
+
})) && input3.included_types.map((elem, _index57) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3189
|
+
path: _path2 + ".included_types[" + _index57 + "]",
|
|
2967
3190
|
expected: "string",
|
|
2968
3191
|
value: elem
|
|
2969
3192
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -2995,23 +3218,23 @@ var validBoxPlotRequest = (input) => {
|
|
|
2995
3218
|
expected: "(__type.o2 | undefined)",
|
|
2996
3219
|
value: input3.valueConversion
|
|
2997
3220
|
})].every((flag) => flag);
|
|
2998
|
-
const $
|
|
3221
|
+
const $vo50 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
2999
3222
|
const value = input3[key];
|
|
3000
3223
|
if (void 0 === value)
|
|
3001
3224
|
return true;
|
|
3002
3225
|
if (RegExp(/(.*)/).test(key))
|
|
3003
3226
|
return ("object" === typeof value && null !== value && false === Array.isArray(value) || $report(_exceptionable2, {
|
|
3004
3227
|
path: _path2 + $join(key),
|
|
3005
|
-
expected: "__type.
|
|
3228
|
+
expected: "__type.o9",
|
|
3006
3229
|
value
|
|
3007
|
-
})) && $
|
|
3230
|
+
})) && $vo51(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
|
|
3008
3231
|
path: _path2 + $join(key),
|
|
3009
|
-
expected: "__type.
|
|
3232
|
+
expected: "__type.o9",
|
|
3010
3233
|
value
|
|
3011
3234
|
});
|
|
3012
3235
|
return true;
|
|
3013
3236
|
}).every((flag) => flag)].every((flag) => flag);
|
|
3014
|
-
const $
|
|
3237
|
+
const $vo51 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
3015
3238
|
const value = input3[key];
|
|
3016
3239
|
if (void 0 === value)
|
|
3017
3240
|
return true;
|
|
@@ -3019,7 +3242,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3019
3242
|
return true;
|
|
3020
3243
|
return true;
|
|
3021
3244
|
}).every((flag) => flag)].every((flag) => flag);
|
|
3022
|
-
const $
|
|
3245
|
+
const $vo52 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
3023
3246
|
path: _path2 + ".id",
|
|
3024
3247
|
expected: "string",
|
|
3025
3248
|
value: input3.id
|
|
@@ -3035,8 +3258,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
3035
3258
|
path: _path2 + ".child_types",
|
|
3036
3259
|
expected: "(Array<string> | undefined)",
|
|
3037
3260
|
value: input3.child_types
|
|
3038
|
-
})) && input3.child_types.map((elem,
|
|
3039
|
-
path: _path2 + ".child_types[" +
|
|
3261
|
+
})) && input3.child_types.map((elem, _index58) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3262
|
+
path: _path2 + ".child_types[" + _index58 + "]",
|
|
3040
3263
|
expected: "string",
|
|
3041
3264
|
value: elem
|
|
3042
3265
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3051,8 +3274,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
3051
3274
|
path: _path2 + ".included_types",
|
|
3052
3275
|
expected: "(Array<string> | undefined)",
|
|
3053
3276
|
value: input3.included_types
|
|
3054
|
-
})) && input3.included_types.map((elem,
|
|
3055
|
-
path: _path2 + ".included_types[" +
|
|
3277
|
+
})) && input3.included_types.map((elem, _index59) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3278
|
+
path: _path2 + ".included_types[" + _index59 + "]",
|
|
3056
3279
|
expected: "string",
|
|
3057
3280
|
value: elem
|
|
3058
3281
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3083,16 +3306,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3083
3306
|
path: _path2 + ".valueConversion",
|
|
3084
3307
|
expected: "(__type.o2 | undefined)",
|
|
3085
3308
|
value: input3.valueConversion
|
|
3086
|
-
}), void 0 === input3.collectionId || "string" === typeof input3.collectionId || $report(_exceptionable2, {
|
|
3087
|
-
path: _path2 + ".collectionId",
|
|
3088
|
-
expected: "(string | undefined)",
|
|
3089
|
-
value: input3.collectionId
|
|
3090
3309
|
}), void 0 === input3.termIds || (Array.isArray(input3.termIds) || $report(_exceptionable2, {
|
|
3091
3310
|
path: _path2 + ".termIds",
|
|
3092
3311
|
expected: "(Array<string> | undefined)",
|
|
3093
3312
|
value: input3.termIds
|
|
3094
|
-
})) && input3.termIds.map((elem,
|
|
3095
|
-
path: _path2 + ".termIds[" +
|
|
3313
|
+
})) && input3.termIds.map((elem, _index60) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3314
|
+
path: _path2 + ".termIds[" + _index60 + "]",
|
|
3096
3315
|
expected: "string",
|
|
3097
3316
|
value: elem
|
|
3098
3317
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3103,12 +3322,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3103
3322
|
path: _path2 + ".termlst",
|
|
3104
3323
|
expected: "Array<BaseTerm>",
|
|
3105
3324
|
value: input3.termlst
|
|
3106
|
-
})) && input3.termlst.map((elem,
|
|
3107
|
-
path: _path2 + ".termlst[" +
|
|
3325
|
+
})) && input3.termlst.map((elem, _index61) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
3326
|
+
path: _path2 + ".termlst[" + _index61 + "]",
|
|
3108
3327
|
expected: "BaseTerm",
|
|
3109
3328
|
value: elem
|
|
3110
|
-
})) && $
|
|
3111
|
-
path: _path2 + ".termlst[" +
|
|
3329
|
+
})) && $vo49(elem, _path2 + ".termlst[" + _index61 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
3330
|
+
path: _path2 + ".termlst[" + _index61 + "]",
|
|
3112
3331
|
expected: "BaseTerm",
|
|
3113
3332
|
value: elem
|
|
3114
3333
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3121,11 +3340,11 @@ var validBoxPlotRequest = (input) => {
|
|
|
3121
3340
|
value: input3.newTvs
|
|
3122
3341
|
}), ("object" === typeof input3.propsByTermId && null !== input3.propsByTermId && false === Array.isArray(input3.propsByTermId) || $report(_exceptionable2, {
|
|
3123
3342
|
path: _path2 + ".propsByTermId",
|
|
3124
|
-
expected: "__type.
|
|
3343
|
+
expected: "__type.o8",
|
|
3125
3344
|
value: input3.propsByTermId
|
|
3126
|
-
})) && $
|
|
3345
|
+
})) && $vo50(input3.propsByTermId, _path2 + ".propsByTermId", _exceptionable2) || $report(_exceptionable2, {
|
|
3127
3346
|
path: _path2 + ".propsByTermId",
|
|
3128
|
-
expected: "__type.
|
|
3347
|
+
expected: "__type.o8",
|
|
3129
3348
|
value: input3.propsByTermId
|
|
3130
3349
|
}), "categorical" === input3.memberType || $report(_exceptionable2, {
|
|
3131
3350
|
path: _path2 + ".memberType",
|
|
@@ -3135,12 +3354,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3135
3354
|
path: _path2 + ".categoryKeys",
|
|
3136
3355
|
expected: "Array<CategoryKey>",
|
|
3137
3356
|
value: input3.categoryKeys
|
|
3138
|
-
})) && input3.categoryKeys.map((elem,
|
|
3139
|
-
path: _path2 + ".categoryKeys[" +
|
|
3357
|
+
})) && input3.categoryKeys.map((elem, _index62) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
3358
|
+
path: _path2 + ".categoryKeys[" + _index62 + "]",
|
|
3140
3359
|
expected: "CategoryKey",
|
|
3141
3360
|
value: elem
|
|
3142
|
-
})) && $
|
|
3143
|
-
path: _path2 + ".categoryKeys[" +
|
|
3361
|
+
})) && $vo53(elem, _path2 + ".categoryKeys[" + _index62 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
3362
|
+
path: _path2 + ".categoryKeys[" + _index62 + "]",
|
|
3144
3363
|
expected: "CategoryKey",
|
|
3145
3364
|
value: elem
|
|
3146
3365
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3148,7 +3367,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3148
3367
|
expected: "Array<CategoryKey>",
|
|
3149
3368
|
value: input3.categoryKeys
|
|
3150
3369
|
})].every((flag) => flag);
|
|
3151
|
-
const $
|
|
3370
|
+
const $vo53 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.key || $report(_exceptionable2, {
|
|
3152
3371
|
path: _path2 + ".key",
|
|
3153
3372
|
expected: "string",
|
|
3154
3373
|
value: input3.key
|
|
@@ -3157,7 +3376,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3157
3376
|
expected: "boolean",
|
|
3158
3377
|
value: input3.shown
|
|
3159
3378
|
})].every((flag) => flag);
|
|
3160
|
-
const $
|
|
3379
|
+
const $vo54 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
3161
3380
|
path: _path2 + ".id",
|
|
3162
3381
|
expected: "string",
|
|
3163
3382
|
value: input3.id
|
|
@@ -3173,8 +3392,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
3173
3392
|
path: _path2 + ".child_types",
|
|
3174
3393
|
expected: "(Array<string> | undefined)",
|
|
3175
3394
|
value: input3.child_types
|
|
3176
|
-
})) && input3.child_types.map((elem,
|
|
3177
|
-
path: _path2 + ".child_types[" +
|
|
3395
|
+
})) && input3.child_types.map((elem, _index63) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3396
|
+
path: _path2 + ".child_types[" + _index63 + "]",
|
|
3178
3397
|
expected: "string",
|
|
3179
3398
|
value: elem
|
|
3180
3399
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3189,8 +3408,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
3189
3408
|
path: _path2 + ".included_types",
|
|
3190
3409
|
expected: "(Array<string> | undefined)",
|
|
3191
3410
|
value: input3.included_types
|
|
3192
|
-
})) && input3.included_types.map((elem,
|
|
3193
|
-
path: _path2 + ".included_types[" +
|
|
3411
|
+
})) && input3.included_types.map((elem, _index64) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3412
|
+
path: _path2 + ".included_types[" + _index64 + "]",
|
|
3194
3413
|
expected: "string",
|
|
3195
3414
|
value: elem
|
|
3196
3415
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3241,8 +3460,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
3241
3460
|
path: _path2 + ".alt",
|
|
3242
3461
|
expected: "Array<string>",
|
|
3243
3462
|
value: input3.alt
|
|
3244
|
-
})) && input3.alt.map((elem,
|
|
3245
|
-
path: _path2 + ".alt[" +
|
|
3463
|
+
})) && input3.alt.map((elem, _index65) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3464
|
+
path: _path2 + ".alt[" + _index65 + "]",
|
|
3246
3465
|
expected: "string",
|
|
3247
3466
|
value: elem
|
|
3248
3467
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3253,12 +3472,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3253
3472
|
path: _path2 + ".groupsetting",
|
|
3254
3473
|
expected: "TermGroupSetting",
|
|
3255
3474
|
value: input3.groupsetting
|
|
3256
|
-
})) && $
|
|
3475
|
+
})) && $vo40(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
3257
3476
|
path: _path2 + ".groupsetting",
|
|
3258
3477
|
expected: "TermGroupSetting",
|
|
3259
3478
|
value: input3.groupsetting
|
|
3260
3479
|
})].every((flag) => flag);
|
|
3261
|
-
const $
|
|
3480
|
+
const $vo55 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
3262
3481
|
path: _path2 + ".id",
|
|
3263
3482
|
expected: "string",
|
|
3264
3483
|
value: input3.id
|
|
@@ -3274,8 +3493,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
3274
3493
|
path: _path2 + ".child_types",
|
|
3275
3494
|
expected: "(Array<string> | undefined)",
|
|
3276
3495
|
value: input3.child_types
|
|
3277
|
-
})) && input3.child_types.map((elem,
|
|
3278
|
-
path: _path2 + ".child_types[" +
|
|
3496
|
+
})) && input3.child_types.map((elem, _index66) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3497
|
+
path: _path2 + ".child_types[" + _index66 + "]",
|
|
3279
3498
|
expected: "string",
|
|
3280
3499
|
value: elem
|
|
3281
3500
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3290,8 +3509,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
3290
3509
|
path: _path2 + ".included_types",
|
|
3291
3510
|
expected: "(Array<string> | undefined)",
|
|
3292
3511
|
value: input3.included_types
|
|
3293
|
-
})) && input3.included_types.map((elem,
|
|
3294
|
-
path: _path2 + ".included_types[" +
|
|
3512
|
+
})) && input3.included_types.map((elem, _index67) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3513
|
+
path: _path2 + ".included_types[" + _index67 + "]",
|
|
3295
3514
|
expected: "string",
|
|
3296
3515
|
value: elem
|
|
3297
3516
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3326,7 +3545,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3326
3545
|
path: _path2 + ".sample",
|
|
3327
3546
|
expected: "object",
|
|
3328
3547
|
value: input3.sample
|
|
3329
|
-
})) && $
|
|
3548
|
+
})) && $vo56(input3.sample, _path2 + ".sample", _exceptionable2) || $report(_exceptionable2, {
|
|
3330
3549
|
path: _path2 + ".sample",
|
|
3331
3550
|
expected: "object",
|
|
3332
3551
|
value: input3.sample
|
|
@@ -3338,13 +3557,13 @@ var validBoxPlotRequest = (input) => {
|
|
|
3338
3557
|
path: _path2 + ".groupsetting",
|
|
3339
3558
|
expected: "TermGroupSetting",
|
|
3340
3559
|
value: input3.groupsetting
|
|
3341
|
-
})) && $
|
|
3560
|
+
})) && $vo40(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
3342
3561
|
path: _path2 + ".groupsetting",
|
|
3343
3562
|
expected: "TermGroupSetting",
|
|
3344
3563
|
value: input3.groupsetting
|
|
3345
3564
|
})].every((flag) => flag);
|
|
3346
|
-
const $
|
|
3347
|
-
const $
|
|
3565
|
+
const $vo56 = (input3, _path2, _exceptionable2 = true) => true;
|
|
3566
|
+
const $vo57 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3348
3567
|
path: _path2 + ".hiddenValues",
|
|
3349
3568
|
expected: "(HiddenValues | undefined)",
|
|
3350
3569
|
value: input3.hiddenValues
|
|
@@ -3373,7 +3592,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3373
3592
|
expected: '"values"',
|
|
3374
3593
|
value: input3.type
|
|
3375
3594
|
})].every((flag) => flag);
|
|
3376
|
-
const $
|
|
3595
|
+
const $vo58 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
3377
3596
|
path: _path2 + ".id",
|
|
3378
3597
|
expected: "(string | undefined)",
|
|
3379
3598
|
value: input3.id
|
|
@@ -3401,7 +3620,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3401
3620
|
path: _path2 + ".term",
|
|
3402
3621
|
expected: "(CategoricalTerm | SingleCellCellTypeTerm | SnpTerm)",
|
|
3403
3622
|
value: input3.term
|
|
3404
|
-
})) && $
|
|
3623
|
+
})) && $vu8(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
3405
3624
|
path: _path2 + ".term",
|
|
3406
3625
|
expected: "(CategoricalTerm | SingleCellCellTypeTerm | SnpTerm)",
|
|
3407
3626
|
value: input3.term
|
|
@@ -3409,7 +3628,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3409
3628
|
path: _path2 + ".q",
|
|
3410
3629
|
expected: "PredefinedGroupSettingQ",
|
|
3411
3630
|
value: input3.q
|
|
3412
|
-
})) && $
|
|
3631
|
+
})) && $vo59(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
3413
3632
|
path: _path2 + ".q",
|
|
3414
3633
|
expected: "PredefinedGroupSettingQ",
|
|
3415
3634
|
value: input3.q
|
|
@@ -3418,7 +3637,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3418
3637
|
expected: '"QualTWPredefinedGS"',
|
|
3419
3638
|
value: input3.type
|
|
3420
3639
|
})].every((flag) => flag);
|
|
3421
|
-
const $
|
|
3640
|
+
const $vo59 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3422
3641
|
path: _path2 + ".hiddenValues",
|
|
3423
3642
|
expected: "(HiddenValues | undefined)",
|
|
3424
3643
|
value: input3.hiddenValues
|
|
@@ -3451,7 +3670,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3451
3670
|
expected: "number",
|
|
3452
3671
|
value: input3.predefined_groupset_idx
|
|
3453
3672
|
})].every((flag) => flag);
|
|
3454
|
-
const $
|
|
3673
|
+
const $vo60 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
3455
3674
|
path: _path2 + ".id",
|
|
3456
3675
|
expected: "(string | undefined)",
|
|
3457
3676
|
value: input3.id
|
|
@@ -3479,7 +3698,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3479
3698
|
path: _path2 + ".term",
|
|
3480
3699
|
expected: "(CategoricalTerm | SingleCellCellTypeTerm | SnpTerm)",
|
|
3481
3700
|
value: input3.term
|
|
3482
|
-
})) && $
|
|
3701
|
+
})) && $vu8(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
3483
3702
|
path: _path2 + ".term",
|
|
3484
3703
|
expected: "(CategoricalTerm | SingleCellCellTypeTerm | SnpTerm)",
|
|
3485
3704
|
value: input3.term
|
|
@@ -3487,7 +3706,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3487
3706
|
path: _path2 + ".q",
|
|
3488
3707
|
expected: "CustomGroupSettingQ",
|
|
3489
3708
|
value: input3.q
|
|
3490
|
-
})) && $
|
|
3709
|
+
})) && $vo61(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
3491
3710
|
path: _path2 + ".q",
|
|
3492
3711
|
expected: "CustomGroupSettingQ",
|
|
3493
3712
|
value: input3.q
|
|
@@ -3496,7 +3715,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3496
3715
|
expected: '"QualTWCustomGS"',
|
|
3497
3716
|
value: input3.type
|
|
3498
3717
|
})].every((flag) => flag);
|
|
3499
|
-
const $
|
|
3718
|
+
const $vo61 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3500
3719
|
path: _path2 + ".hiddenValues",
|
|
3501
3720
|
expected: "(HiddenValues | undefined)",
|
|
3502
3721
|
value: input3.hiddenValues
|
|
@@ -3528,21 +3747,21 @@ var validBoxPlotRequest = (input) => {
|
|
|
3528
3747
|
path: _path2 + ".customset",
|
|
3529
3748
|
expected: "BaseGroupSet",
|
|
3530
3749
|
value: input3.customset
|
|
3531
|
-
})) && $
|
|
3750
|
+
})) && $vo62(input3.customset, _path2 + ".customset", _exceptionable2) || $report(_exceptionable2, {
|
|
3532
3751
|
path: _path2 + ".customset",
|
|
3533
3752
|
expected: "BaseGroupSet",
|
|
3534
3753
|
value: input3.customset
|
|
3535
3754
|
})].every((flag) => flag);
|
|
3536
|
-
const $
|
|
3755
|
+
const $vo62 = (input3, _path2, _exceptionable2 = true) => [(Array.isArray(input3.groups) || $report(_exceptionable2, {
|
|
3537
3756
|
path: _path2 + ".groups",
|
|
3538
3757
|
expected: "Array<GroupEntry>",
|
|
3539
3758
|
value: input3.groups
|
|
3540
|
-
})) && input3.groups.map((elem,
|
|
3541
|
-
path: _path2 + ".groups[" +
|
|
3759
|
+
})) && input3.groups.map((elem, _index68) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
3760
|
+
path: _path2 + ".groups[" + _index68 + "]",
|
|
3542
3761
|
expected: "(FilterGroup | ValuesGroup)",
|
|
3543
3762
|
value: elem
|
|
3544
|
-
})) && $vu3(elem, _path2 + ".groups[" +
|
|
3545
|
-
path: _path2 + ".groups[" +
|
|
3763
|
+
})) && $vu3(elem, _path2 + ".groups[" + _index68 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
3764
|
+
path: _path2 + ".groups[" + _index68 + "]",
|
|
3546
3765
|
expected: "(FilterGroup | ValuesGroup)",
|
|
3547
3766
|
value: elem
|
|
3548
3767
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3550,7 +3769,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3550
3769
|
expected: "Array<GroupEntry>",
|
|
3551
3770
|
value: input3.groups
|
|
3552
3771
|
})].every((flag) => flag);
|
|
3553
|
-
const $
|
|
3772
|
+
const $vo63 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
3554
3773
|
path: _path2 + ".id",
|
|
3555
3774
|
expected: "(string | undefined)",
|
|
3556
3775
|
value: input3.id
|
|
@@ -3582,7 +3801,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3582
3801
|
path: _path2 + ".term",
|
|
3583
3802
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3584
3803
|
value: input3.term
|
|
3585
|
-
})) && $
|
|
3804
|
+
})) && $vu10(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
3586
3805
|
path: _path2 + ".term",
|
|
3587
3806
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3588
3807
|
value: input3.term
|
|
@@ -3595,7 +3814,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3595
3814
|
expected: "RegularNumericBinConfig",
|
|
3596
3815
|
value: input3.q
|
|
3597
3816
|
})].every((flag) => flag);
|
|
3598
|
-
const $
|
|
3817
|
+
const $vo64 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
3599
3818
|
path: _path2 + ".id",
|
|
3600
3819
|
expected: "(string | undefined)",
|
|
3601
3820
|
value: input3.id
|
|
@@ -3627,7 +3846,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3627
3846
|
path: _path2 + ".term",
|
|
3628
3847
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3629
3848
|
value: input3.term
|
|
3630
|
-
})) && $
|
|
3849
|
+
})) && $vu10(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
3631
3850
|
path: _path2 + ".term",
|
|
3632
3851
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3633
3852
|
value: input3.term
|
|
@@ -3640,7 +3859,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3640
3859
|
expected: "CustomNumericBinConfig",
|
|
3641
3860
|
value: input3.q
|
|
3642
3861
|
})].every((flag) => flag);
|
|
3643
|
-
const $
|
|
3862
|
+
const $vo65 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
3644
3863
|
path: _path2 + ".id",
|
|
3645
3864
|
expected: "(string | undefined)",
|
|
3646
3865
|
value: input3.id
|
|
@@ -3672,7 +3891,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3672
3891
|
path: _path2 + ".term",
|
|
3673
3892
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3674
3893
|
value: input3.term
|
|
3675
|
-
})) && $
|
|
3894
|
+
})) && $vu10(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
3676
3895
|
path: _path2 + ".term",
|
|
3677
3896
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3678
3897
|
value: input3.term
|
|
@@ -3680,12 +3899,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3680
3899
|
path: _path2 + ".q",
|
|
3681
3900
|
expected: "BinaryNumericQ",
|
|
3682
3901
|
value: input3.q
|
|
3683
|
-
})) && $
|
|
3902
|
+
})) && $vo66(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
3684
3903
|
path: _path2 + ".q",
|
|
3685
3904
|
expected: "BinaryNumericQ",
|
|
3686
3905
|
value: input3.q
|
|
3687
3906
|
})].every((flag) => flag);
|
|
3688
|
-
const $
|
|
3907
|
+
const $vo66 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3689
3908
|
path: _path2 + ".hiddenValues",
|
|
3690
3909
|
expected: "(HiddenValues | undefined)",
|
|
3691
3910
|
value: input3.hiddenValues
|
|
@@ -3726,7 +3945,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3726
3945
|
path: _path2 + ".lst[0]",
|
|
3727
3946
|
expected: "(FullyBoundedBin | StartUnboundedBin)",
|
|
3728
3947
|
value: input3.lst[0]
|
|
3729
|
-
})) && $
|
|
3948
|
+
})) && $vu5(input3.lst[0], _path2 + ".lst[0]", _exceptionable2) || $report(_exceptionable2, {
|
|
3730
3949
|
path: _path2 + ".lst[0]",
|
|
3731
3950
|
expected: "(FullyBoundedBin | StartUnboundedBin)",
|
|
3732
3951
|
value: input3.lst[0]
|
|
@@ -3735,7 +3954,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3735
3954
|
path: _path2 + ".lst[1]",
|
|
3736
3955
|
expected: "(FullyBoundedBin | StopUnboundedBin)",
|
|
3737
3956
|
value: input3.lst[1]
|
|
3738
|
-
})) && $
|
|
3957
|
+
})) && $vu6(input3.lst[1], _path2 + ".lst[1]", _exceptionable2) || $report(_exceptionable2, {
|
|
3739
3958
|
path: _path2 + ".lst[1]",
|
|
3740
3959
|
expected: "(FullyBoundedBin | StopUnboundedBin)",
|
|
3741
3960
|
value: input3.lst[1]
|
|
@@ -3753,7 +3972,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3753
3972
|
expected: "(number | undefined)",
|
|
3754
3973
|
value: input3.cutoffPercentile
|
|
3755
3974
|
})].every((flag) => flag);
|
|
3756
|
-
const $
|
|
3975
|
+
const $vo67 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
3757
3976
|
path: _path2 + ".id",
|
|
3758
3977
|
expected: "(string | undefined)",
|
|
3759
3978
|
value: input3.id
|
|
@@ -3785,7 +4004,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3785
4004
|
path: _path2 + ".term",
|
|
3786
4005
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3787
4006
|
value: input3.term
|
|
3788
|
-
})) && $
|
|
4007
|
+
})) && $vu10(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
3789
4008
|
path: _path2 + ".term",
|
|
3790
4009
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3791
4010
|
value: input3.term
|
|
@@ -3793,12 +4012,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3793
4012
|
path: _path2 + ".q",
|
|
3794
4013
|
expected: "ContinuousNumericQ",
|
|
3795
4014
|
value: input3.q
|
|
3796
|
-
})) && $
|
|
4015
|
+
})) && $vo68(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
3797
4016
|
path: _path2 + ".q",
|
|
3798
4017
|
expected: "ContinuousNumericQ",
|
|
3799
4018
|
value: input3.q
|
|
3800
4019
|
})].every((flag) => flag);
|
|
3801
|
-
const $
|
|
4020
|
+
const $vo68 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3802
4021
|
path: _path2 + ".hiddenValues",
|
|
3803
4022
|
expected: "(HiddenValues | undefined)",
|
|
3804
4023
|
value: input3.hiddenValues
|
|
@@ -3839,7 +4058,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3839
4058
|
expected: "(number | undefined)",
|
|
3840
4059
|
value: input3.scale
|
|
3841
4060
|
})].every((flag) => flag);
|
|
3842
|
-
const $
|
|
4061
|
+
const $vo69 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
3843
4062
|
path: _path2 + ".id",
|
|
3844
4063
|
expected: "(string | undefined)",
|
|
3845
4064
|
value: input3.id
|
|
@@ -3871,7 +4090,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3871
4090
|
path: _path2 + ".term",
|
|
3872
4091
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3873
4092
|
value: input3.term
|
|
3874
|
-
})) && $
|
|
4093
|
+
})) && $vu10(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
3875
4094
|
path: _path2 + ".term",
|
|
3876
4095
|
expected: '(BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "geneExpression"; bins?: PresetNumericBins | undefined; } & Gene | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Coord | BaseTerm & { continuousColorScale?: { minColor: string; maxColor: string; } | undefined; unit?: string | undefined; } & { type: "singleCellGeneExpression"; gene: string; sample: string; unit: string; bins?: PresetNumericBins | undefined; } & Gene | DateTerm | DnaMethylationTerm | MetaboliteIntensityTerm | NumericDictTerm | SsGSEATerm | WholeProteomeAbundanceTerm)',
|
|
3877
4096
|
value: input3.term
|
|
@@ -3879,12 +4098,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3879
4098
|
path: _path2 + ".q",
|
|
3880
4099
|
expected: "SplineNumericQ",
|
|
3881
4100
|
value: input3.q
|
|
3882
|
-
})) && $
|
|
4101
|
+
})) && $vo70(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
3883
4102
|
path: _path2 + ".q",
|
|
3884
4103
|
expected: "SplineNumericQ",
|
|
3885
4104
|
value: input3.q
|
|
3886
4105
|
})].every((flag) => flag);
|
|
3887
|
-
const $
|
|
4106
|
+
const $vo70 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3888
4107
|
path: _path2 + ".hiddenValues",
|
|
3889
4108
|
expected: "(HiddenValues | undefined)",
|
|
3890
4109
|
value: input3.hiddenValues
|
|
@@ -3912,13 +4131,13 @@ var validBoxPlotRequest = (input) => {
|
|
|
3912
4131
|
path: _path2 + ".knots",
|
|
3913
4132
|
expected: "Array<__type>.o3",
|
|
3914
4133
|
value: input3.knots
|
|
3915
|
-
})) && input3.knots.map((elem,
|
|
3916
|
-
path: _path2 + ".knots[" +
|
|
3917
|
-
expected: "__type.
|
|
4134
|
+
})) && input3.knots.map((elem, _index69) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
4135
|
+
path: _path2 + ".knots[" + _index69 + "]",
|
|
4136
|
+
expected: "__type.o10",
|
|
3918
4137
|
value: elem
|
|
3919
|
-
})) && $
|
|
3920
|
-
path: _path2 + ".knots[" +
|
|
3921
|
-
expected: "__type.
|
|
4138
|
+
})) && $vo71(elem, _path2 + ".knots[" + _index69 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
4139
|
+
path: _path2 + ".knots[" + _index69 + "]",
|
|
4140
|
+
expected: "__type.o10",
|
|
3922
4141
|
value: elem
|
|
3923
4142
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
3924
4143
|
path: _path2 + ".knots",
|
|
@@ -3933,12 +4152,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3933
4152
|
expected: "undefined",
|
|
3934
4153
|
value: input3.type
|
|
3935
4154
|
}))].every((flag) => flag);
|
|
3936
|
-
const $
|
|
4155
|
+
const $vo71 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.value || $report(_exceptionable2, {
|
|
3937
4156
|
path: _path2 + ".value",
|
|
3938
4157
|
expected: "number",
|
|
3939
4158
|
value: input3.value
|
|
3940
4159
|
})].every((flag) => flag);
|
|
3941
|
-
const $
|
|
4160
|
+
const $vo72 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
3942
4161
|
path: _path2 + ".id",
|
|
3943
4162
|
expected: "(string | undefined)",
|
|
3944
4163
|
value: input3.id
|
|
@@ -3970,7 +4189,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
3970
4189
|
path: _path2 + ".term",
|
|
3971
4190
|
expected: '(BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; } | BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; })',
|
|
3972
4191
|
value: input3.term
|
|
3973
|
-
})) && $
|
|
4192
|
+
})) && $vu14(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
3974
4193
|
path: _path2 + ".term",
|
|
3975
4194
|
expected: '(BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; } | BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; })',
|
|
3976
4195
|
value: input3.term
|
|
@@ -3978,12 +4197,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
3978
4197
|
path: _path2 + ".q",
|
|
3979
4198
|
expected: "GvValuesQ",
|
|
3980
4199
|
value: input3.q
|
|
3981
|
-
})) && $
|
|
4200
|
+
})) && $vo75(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
3982
4201
|
path: _path2 + ".q",
|
|
3983
4202
|
expected: "GvValuesQ",
|
|
3984
4203
|
value: input3.q
|
|
3985
4204
|
})].every((flag) => flag);
|
|
3986
|
-
const $
|
|
4205
|
+
const $vo73 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
3987
4206
|
path: _path2 + ".id",
|
|
3988
4207
|
expected: "string",
|
|
3989
4208
|
value: input3.id
|
|
@@ -3999,8 +4218,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
3999
4218
|
path: _path2 + ".child_types",
|
|
4000
4219
|
expected: "(Array<string> | undefined)",
|
|
4001
4220
|
value: input3.child_types
|
|
4002
|
-
})) && input3.child_types.map((elem,
|
|
4003
|
-
path: _path2 + ".child_types[" +
|
|
4221
|
+
})) && input3.child_types.map((elem, _index70) => "string" === typeof elem || $report(_exceptionable2, {
|
|
4222
|
+
path: _path2 + ".child_types[" + _index70 + "]",
|
|
4004
4223
|
expected: "string",
|
|
4005
4224
|
value: elem
|
|
4006
4225
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4015,8 +4234,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
4015
4234
|
path: _path2 + ".included_types",
|
|
4016
4235
|
expected: "(Array<string> | undefined)",
|
|
4017
4236
|
value: input3.included_types
|
|
4018
|
-
})) && input3.included_types.map((elem,
|
|
4019
|
-
path: _path2 + ".included_types[" +
|
|
4237
|
+
})) && input3.included_types.map((elem, _index71) => "string" === typeof elem || $report(_exceptionable2, {
|
|
4238
|
+
path: _path2 + ".included_types[" + _index71 + "]",
|
|
4020
4239
|
expected: "string",
|
|
4021
4240
|
value: elem
|
|
4022
4241
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4071,12 +4290,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4071
4290
|
path: _path2 + ".genes",
|
|
4072
4291
|
expected: "Array<GvGeneTerm>",
|
|
4073
4292
|
value: input3.genes
|
|
4074
|
-
})) && input3.genes.map((elem,
|
|
4075
|
-
path: _path2 + ".genes[" +
|
|
4293
|
+
})) && input3.genes.map((elem, _index72) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
4294
|
+
path: _path2 + ".genes[" + _index72 + "]",
|
|
4076
4295
|
expected: "(BaseTerm & Coord | BaseTerm & Gene)",
|
|
4077
4296
|
value: elem
|
|
4078
|
-
})) && $vu2(elem, _path2 + ".genes[" +
|
|
4079
|
-
path: _path2 + ".genes[" +
|
|
4297
|
+
})) && $vu2(elem, _path2 + ".genes[" + _index72 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
4298
|
+
path: _path2 + ".genes[" + _index72 + "]",
|
|
4080
4299
|
expected: "(BaseTerm & Coord | BaseTerm & Gene)",
|
|
4081
4300
|
value: elem
|
|
4082
4301
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4087,7 +4306,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4087
4306
|
path: _path2 + ".groupsetting",
|
|
4088
4307
|
expected: "TermGroupSetting",
|
|
4089
4308
|
value: input3.groupsetting
|
|
4090
|
-
})) && $
|
|
4309
|
+
})) && $vo40(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
4091
4310
|
path: _path2 + ".groupsetting",
|
|
4092
4311
|
expected: "TermGroupSetting",
|
|
4093
4312
|
value: input3.groupsetting
|
|
@@ -4095,12 +4314,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4095
4314
|
path: _path2 + ".childTerms",
|
|
4096
4315
|
expected: "Array<DtTerm>",
|
|
4097
4316
|
value: input3.childTerms
|
|
4098
|
-
})) && input3.childTerms.map((elem,
|
|
4099
|
-
path: _path2 + ".childTerms[" +
|
|
4317
|
+
})) && input3.childTerms.map((elem, _index73) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
4318
|
+
path: _path2 + ".childTerms[" + _index73 + "]",
|
|
4100
4319
|
expected: "DtTerm",
|
|
4101
4320
|
value: elem
|
|
4102
|
-
})) && $
|
|
4103
|
-
path: _path2 + ".childTerms[" +
|
|
4321
|
+
})) && $vo36(elem, _path2 + ".childTerms[" + _index73 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
4322
|
+
path: _path2 + ".childTerms[" + _index73 + "]",
|
|
4104
4323
|
expected: "DtTerm",
|
|
4105
4324
|
value: elem
|
|
4106
4325
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4108,7 +4327,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4108
4327
|
expected: "Array<DtTerm>",
|
|
4109
4328
|
value: input3.childTerms
|
|
4110
4329
|
})].every((flag) => flag);
|
|
4111
|
-
const $
|
|
4330
|
+
const $vo74 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
4112
4331
|
path: _path2 + ".id",
|
|
4113
4332
|
expected: "string",
|
|
4114
4333
|
value: input3.id
|
|
@@ -4124,8 +4343,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
4124
4343
|
path: _path2 + ".child_types",
|
|
4125
4344
|
expected: "(Array<string> | undefined)",
|
|
4126
4345
|
value: input3.child_types
|
|
4127
|
-
})) && input3.child_types.map((elem,
|
|
4128
|
-
path: _path2 + ".child_types[" +
|
|
4346
|
+
})) && input3.child_types.map((elem, _index74) => "string" === typeof elem || $report(_exceptionable2, {
|
|
4347
|
+
path: _path2 + ".child_types[" + _index74 + "]",
|
|
4129
4348
|
expected: "string",
|
|
4130
4349
|
value: elem
|
|
4131
4350
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4140,8 +4359,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
4140
4359
|
path: _path2 + ".included_types",
|
|
4141
4360
|
expected: "(Array<string> | undefined)",
|
|
4142
4361
|
value: input3.included_types
|
|
4143
|
-
})) && input3.included_types.map((elem,
|
|
4144
|
-
path: _path2 + ".included_types[" +
|
|
4362
|
+
})) && input3.included_types.map((elem, _index75) => "string" === typeof elem || $report(_exceptionable2, {
|
|
4363
|
+
path: _path2 + ".included_types[" + _index75 + "]",
|
|
4145
4364
|
expected: "string",
|
|
4146
4365
|
value: elem
|
|
4147
4366
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4192,12 +4411,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4192
4411
|
path: _path2 + ".genes",
|
|
4193
4412
|
expected: "Array<GvGeneTerm>",
|
|
4194
4413
|
value: input3.genes
|
|
4195
|
-
})) && input3.genes.map((elem,
|
|
4196
|
-
path: _path2 + ".genes[" +
|
|
4414
|
+
})) && input3.genes.map((elem, _index76) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
4415
|
+
path: _path2 + ".genes[" + _index76 + "]",
|
|
4197
4416
|
expected: "(BaseTerm & Coord | BaseTerm & Gene)",
|
|
4198
4417
|
value: elem
|
|
4199
|
-
})) && $vu2(elem, _path2 + ".genes[" +
|
|
4200
|
-
path: _path2 + ".genes[" +
|
|
4418
|
+
})) && $vu2(elem, _path2 + ".genes[" + _index76 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
4419
|
+
path: _path2 + ".genes[" + _index76 + "]",
|
|
4201
4420
|
expected: "(BaseTerm & Coord | BaseTerm & Gene)",
|
|
4202
4421
|
value: elem
|
|
4203
4422
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4208,7 +4427,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4208
4427
|
path: _path2 + ".groupsetting",
|
|
4209
4428
|
expected: "TermGroupSetting",
|
|
4210
4429
|
value: input3.groupsetting
|
|
4211
|
-
})) && $
|
|
4430
|
+
})) && $vo40(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
4212
4431
|
path: _path2 + ".groupsetting",
|
|
4213
4432
|
expected: "TermGroupSetting",
|
|
4214
4433
|
value: input3.groupsetting
|
|
@@ -4216,12 +4435,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4216
4435
|
path: _path2 + ".childTerms",
|
|
4217
4436
|
expected: "Array<DtTerm>",
|
|
4218
4437
|
value: input3.childTerms
|
|
4219
|
-
})) && input3.childTerms.map((elem,
|
|
4220
|
-
path: _path2 + ".childTerms[" +
|
|
4438
|
+
})) && input3.childTerms.map((elem, _index77) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
4439
|
+
path: _path2 + ".childTerms[" + _index77 + "]",
|
|
4221
4440
|
expected: "DtTerm",
|
|
4222
4441
|
value: elem
|
|
4223
|
-
})) && $
|
|
4224
|
-
path: _path2 + ".childTerms[" +
|
|
4442
|
+
})) && $vo36(elem, _path2 + ".childTerms[" + _index77 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
4443
|
+
path: _path2 + ".childTerms[" + _index77 + "]",
|
|
4225
4444
|
expected: "DtTerm",
|
|
4226
4445
|
value: elem
|
|
4227
4446
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4229,7 +4448,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4229
4448
|
expected: "Array<DtTerm>",
|
|
4230
4449
|
value: input3.childTerms
|
|
4231
4450
|
})].every((flag) => flag);
|
|
4232
|
-
const $
|
|
4451
|
+
const $vo75 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
4233
4452
|
path: _path2 + ".hiddenValues",
|
|
4234
4453
|
expected: "(HiddenValues | undefined)",
|
|
4235
4454
|
value: input3.hiddenValues
|
|
@@ -4270,7 +4489,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4270
4489
|
expected: '"values"',
|
|
4271
4490
|
value: input3.type
|
|
4272
4491
|
})].every((flag) => flag);
|
|
4273
|
-
const $
|
|
4492
|
+
const $vo76 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
4274
4493
|
path: _path2 + ".id",
|
|
4275
4494
|
expected: "(string | undefined)",
|
|
4276
4495
|
value: input3.id
|
|
@@ -4302,7 +4521,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4302
4521
|
path: _path2 + ".term",
|
|
4303
4522
|
expected: '(BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; } | BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; })',
|
|
4304
4523
|
value: input3.term
|
|
4305
|
-
})) && $
|
|
4524
|
+
})) && $vu14(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
4306
4525
|
path: _path2 + ".term",
|
|
4307
4526
|
expected: '(BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; } | BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; })',
|
|
4308
4527
|
value: input3.term
|
|
@@ -4310,12 +4529,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4310
4529
|
path: _path2 + ".q",
|
|
4311
4530
|
expected: "GvPredefinedGsQ",
|
|
4312
4531
|
value: input3.q
|
|
4313
|
-
})) && $
|
|
4532
|
+
})) && $vo77(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
4314
4533
|
path: _path2 + ".q",
|
|
4315
4534
|
expected: "GvPredefinedGsQ",
|
|
4316
4535
|
value: input3.q
|
|
4317
4536
|
})].every((flag) => flag);
|
|
4318
|
-
const $
|
|
4537
|
+
const $vo77 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
4319
4538
|
path: _path2 + ".hiddenValues",
|
|
4320
4539
|
expected: "(HiddenValues | undefined)",
|
|
4321
4540
|
value: input3.hiddenValues
|
|
@@ -4364,7 +4583,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4364
4583
|
expected: "Array<any>",
|
|
4365
4584
|
value: input3.dtLst
|
|
4366
4585
|
})].every((flag) => flag);
|
|
4367
|
-
const $
|
|
4586
|
+
const $vo78 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
4368
4587
|
path: _path2 + ".id",
|
|
4369
4588
|
expected: "(string | undefined)",
|
|
4370
4589
|
value: input3.id
|
|
@@ -4396,7 +4615,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4396
4615
|
path: _path2 + ".term",
|
|
4397
4616
|
expected: '(BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; } | BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; })',
|
|
4398
4617
|
value: input3.term
|
|
4399
|
-
})) && $
|
|
4618
|
+
})) && $vu14(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
4400
4619
|
path: _path2 + ".term",
|
|
4401
4620
|
expected: '(BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; } | BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; })',
|
|
4402
4621
|
value: input3.term
|
|
@@ -4404,12 +4623,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4404
4623
|
path: _path2 + ".q",
|
|
4405
4624
|
expected: "GvCustomGsQ",
|
|
4406
4625
|
value: input3.q
|
|
4407
|
-
})) && $
|
|
4626
|
+
})) && $vo79(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
4408
4627
|
path: _path2 + ".q",
|
|
4409
4628
|
expected: "GvCustomGsQ",
|
|
4410
4629
|
value: input3.q
|
|
4411
4630
|
})].every((flag) => flag);
|
|
4412
|
-
const $
|
|
4631
|
+
const $vo79 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
4413
4632
|
path: _path2 + ".hiddenValues",
|
|
4414
4633
|
expected: "(HiddenValues | undefined)",
|
|
4415
4634
|
value: input3.hiddenValues
|
|
@@ -4453,7 +4672,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4453
4672
|
path: _path2 + ".customset",
|
|
4454
4673
|
expected: "BaseGroupSet",
|
|
4455
4674
|
value: input3.customset
|
|
4456
|
-
})) && $
|
|
4675
|
+
})) && $vo62(input3.customset, _path2 + ".customset", _exceptionable2) || $report(_exceptionable2, {
|
|
4457
4676
|
path: _path2 + ".customset",
|
|
4458
4677
|
expected: "BaseGroupSet",
|
|
4459
4678
|
value: input3.customset
|
|
@@ -4462,7 +4681,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4462
4681
|
expected: "Array<any>",
|
|
4463
4682
|
value: input3.dtLst
|
|
4464
4683
|
})].every((flag) => flag);
|
|
4465
|
-
const $
|
|
4684
|
+
const $vo80 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
4466
4685
|
path: _path2 + ".id",
|
|
4467
4686
|
expected: "(string | undefined)",
|
|
4468
4687
|
value: input3.id
|
|
@@ -4494,7 +4713,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4494
4713
|
path: _path2 + ".term",
|
|
4495
4714
|
expected: "ConditionTerm",
|
|
4496
4715
|
value: input3.term
|
|
4497
|
-
})) && $
|
|
4716
|
+
})) && $vo32(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
4498
4717
|
path: _path2 + ".term",
|
|
4499
4718
|
expected: "ConditionTerm",
|
|
4500
4719
|
value: input3.term
|
|
@@ -4502,12 +4721,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4502
4721
|
path: _path2 + ".q",
|
|
4503
4722
|
expected: "(ConditionChildrenQ | ConditionGradeQ)",
|
|
4504
4723
|
value: input3.q
|
|
4505
|
-
})) && $
|
|
4724
|
+
})) && $vu15(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
4506
4725
|
path: _path2 + ".q",
|
|
4507
4726
|
expected: "(ConditionChildrenQ | ConditionGradeQ)",
|
|
4508
4727
|
value: input3.q
|
|
4509
4728
|
})].every((flag) => flag);
|
|
4510
|
-
const $
|
|
4729
|
+
const $vo81 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
4511
4730
|
path: _path2 + ".hiddenValues",
|
|
4512
4731
|
expected: "(HiddenValues | undefined)",
|
|
4513
4732
|
value: input3.hiddenValues
|
|
@@ -4547,8 +4766,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
4547
4766
|
path: _path2 + ".breaks",
|
|
4548
4767
|
expected: "(Array<number> | undefined)",
|
|
4549
4768
|
value: input3.breaks
|
|
4550
|
-
})) && input3.breaks.map((elem,
|
|
4551
|
-
path: _path2 + ".breaks[" +
|
|
4769
|
+
})) && input3.breaks.map((elem, _index78) => "number" === typeof elem || $report(_exceptionable2, {
|
|
4770
|
+
path: _path2 + ".breaks[" + _index78 + "]",
|
|
4552
4771
|
expected: "number",
|
|
4553
4772
|
value: elem
|
|
4554
4773
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4568,7 +4787,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4568
4787
|
expected: "(boolean | undefined)",
|
|
4569
4788
|
value: input3.value_by_computable_grade
|
|
4570
4789
|
}), true].every((flag) => flag);
|
|
4571
|
-
const $
|
|
4790
|
+
const $vo82 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
4572
4791
|
path: _path2 + ".hiddenValues",
|
|
4573
4792
|
expected: "(HiddenValues | undefined)",
|
|
4574
4793
|
value: input3.hiddenValues
|
|
@@ -4601,7 +4820,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4601
4820
|
expected: "true",
|
|
4602
4821
|
value: input3.bar_by_children
|
|
4603
4822
|
}), true].every((flag) => flag);
|
|
4604
|
-
const $
|
|
4823
|
+
const $vo83 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
4605
4824
|
path: _path2 + ".id",
|
|
4606
4825
|
expected: "(string | undefined)",
|
|
4607
4826
|
value: input3.id
|
|
@@ -4633,7 +4852,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4633
4852
|
path: _path2 + ".q",
|
|
4634
4853
|
expected: "SnpsQ",
|
|
4635
4854
|
value: input3.q
|
|
4636
|
-
})) && $
|
|
4855
|
+
})) && $vo84(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
4637
4856
|
path: _path2 + ".q",
|
|
4638
4857
|
expected: "SnpsQ",
|
|
4639
4858
|
value: input3.q
|
|
@@ -4641,12 +4860,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4641
4860
|
path: _path2 + ".term",
|
|
4642
4861
|
expected: "SnpsTerm",
|
|
4643
4862
|
value: input3.term
|
|
4644
|
-
})) && $
|
|
4863
|
+
})) && $vo86(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
4645
4864
|
path: _path2 + ".term",
|
|
4646
4865
|
expected: "SnpsTerm",
|
|
4647
4866
|
value: input3.term
|
|
4648
4867
|
})].every((flag) => flag);
|
|
4649
|
-
const $
|
|
4868
|
+
const $vo84 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
4650
4869
|
path: _path2 + ".hiddenValues",
|
|
4651
4870
|
expected: "(HiddenValues | undefined)",
|
|
4652
4871
|
value: input3.hiddenValues
|
|
@@ -4694,7 +4913,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4694
4913
|
path: _path2 + ".restrictAncestry",
|
|
4695
4914
|
expected: "RestrictAncestry",
|
|
4696
4915
|
value: input3.restrictAncestry
|
|
4697
|
-
})) && $
|
|
4916
|
+
})) && $vo85(input3.restrictAncestry, _path2 + ".restrictAncestry", _exceptionable2) || $report(_exceptionable2, {
|
|
4698
4917
|
path: _path2 + ".restrictAncestry",
|
|
4699
4918
|
expected: "RestrictAncestry",
|
|
4700
4919
|
value: input3.restrictAncestry
|
|
@@ -4719,7 +4938,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4719
4938
|
expected: "number",
|
|
4720
4939
|
value: input3.stop
|
|
4721
4940
|
})].every((flag) => flag);
|
|
4722
|
-
const $
|
|
4941
|
+
const $vo85 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
|
|
4723
4942
|
path: _path2 + ".name",
|
|
4724
4943
|
expected: "string",
|
|
4725
4944
|
value: input3.name
|
|
@@ -4727,12 +4946,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4727
4946
|
path: _path2 + ".tvs",
|
|
4728
4947
|
expected: "(CategoricalTvs | ConditionTvs | GeneVariantTvs | NumericTvs | TermCollectionTvs)",
|
|
4729
4948
|
value: input3.tvs
|
|
4730
|
-
})) && $
|
|
4949
|
+
})) && $vu9(input3.tvs, _path2 + ".tvs", _exceptionable2) || $report(_exceptionable2, {
|
|
4731
4950
|
path: _path2 + ".tvs",
|
|
4732
4951
|
expected: "(CategoricalTvs | ConditionTvs | GeneVariantTvs | NumericTvs | TermCollectionTvs)",
|
|
4733
4952
|
value: input3.tvs
|
|
4734
4953
|
})].every((flag) => flag);
|
|
4735
|
-
const $
|
|
4954
|
+
const $vo86 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
4736
4955
|
path: _path2 + ".id",
|
|
4737
4956
|
expected: "string",
|
|
4738
4957
|
value: input3.id
|
|
@@ -4748,8 +4967,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
4748
4967
|
path: _path2 + ".child_types",
|
|
4749
4968
|
expected: "(Array<string> | undefined)",
|
|
4750
4969
|
value: input3.child_types
|
|
4751
|
-
})) && input3.child_types.map((elem,
|
|
4752
|
-
path: _path2 + ".child_types[" +
|
|
4970
|
+
})) && input3.child_types.map((elem, _index79) => "string" === typeof elem || $report(_exceptionable2, {
|
|
4971
|
+
path: _path2 + ".child_types[" + _index79 + "]",
|
|
4753
4972
|
expected: "string",
|
|
4754
4973
|
value: elem
|
|
4755
4974
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4764,8 +4983,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
4764
4983
|
path: _path2 + ".included_types",
|
|
4765
4984
|
expected: "(Array<string> | undefined)",
|
|
4766
4985
|
value: input3.included_types
|
|
4767
|
-
})) && input3.included_types.map((elem,
|
|
4768
|
-
path: _path2 + ".included_types[" +
|
|
4986
|
+
})) && input3.included_types.map((elem, _index80) => "string" === typeof elem || $report(_exceptionable2, {
|
|
4987
|
+
path: _path2 + ".included_types[" + _index80 + "]",
|
|
4769
4988
|
expected: "string",
|
|
4770
4989
|
value: elem
|
|
4771
4990
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4804,12 +5023,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4804
5023
|
path: _path2 + ".snps",
|
|
4805
5024
|
expected: "(Array<SnpsEntry> | undefined)",
|
|
4806
5025
|
value: input3.snps
|
|
4807
|
-
})) && input3.snps.map((elem,
|
|
4808
|
-
path: _path2 + ".snps[" +
|
|
5026
|
+
})) && input3.snps.map((elem, _index81) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
5027
|
+
path: _path2 + ".snps[" + _index81 + "]",
|
|
4809
5028
|
expected: "SnpsEntry",
|
|
4810
5029
|
value: elem
|
|
4811
|
-
})) && $
|
|
4812
|
-
path: _path2 + ".snps[" +
|
|
5030
|
+
})) && $vo87(elem, _path2 + ".snps[" + _index81 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
5031
|
+
path: _path2 + ".snps[" + _index81 + "]",
|
|
4813
5032
|
expected: "SnpsEntry",
|
|
4814
5033
|
value: elem
|
|
4815
5034
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4817,12 +5036,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4817
5036
|
expected: "(Array<SnpsEntry> | undefined)",
|
|
4818
5037
|
value: input3.snps
|
|
4819
5038
|
})].every((flag) => flag);
|
|
4820
|
-
const $
|
|
5039
|
+
const $vo87 = (input3, _path2, _exceptionable2 = true) => [true, void 0 === input3.altAlleles || (Array.isArray(input3.altAlleles) || $report(_exceptionable2, {
|
|
4821
5040
|
path: _path2 + ".altAlleles",
|
|
4822
5041
|
expected: "(Array<string> | undefined)",
|
|
4823
5042
|
value: input3.altAlleles
|
|
4824
|
-
})) && input3.altAlleles.map((elem,
|
|
4825
|
-
path: _path2 + ".altAlleles[" +
|
|
5043
|
+
})) && input3.altAlleles.map((elem, _index82) => "string" === typeof elem || $report(_exceptionable2, {
|
|
5044
|
+
path: _path2 + ".altAlleles[" + _index82 + "]",
|
|
4826
5045
|
expected: "string",
|
|
4827
5046
|
value: elem
|
|
4828
5047
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4833,12 +5052,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4833
5052
|
path: _path2 + ".alleles",
|
|
4834
5053
|
expected: "(Array<AllelesEntry> | undefined)",
|
|
4835
5054
|
value: input3.alleles
|
|
4836
|
-
})) && input3.alleles.map((elem,
|
|
4837
|
-
path: _path2 + ".alleles[" +
|
|
5055
|
+
})) && input3.alleles.map((elem, _index83) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
5056
|
+
path: _path2 + ".alleles[" + _index83 + "]",
|
|
4838
5057
|
expected: "AllelesEntry",
|
|
4839
5058
|
value: elem
|
|
4840
|
-
})) && $
|
|
4841
|
-
path: _path2 + ".alleles[" +
|
|
5059
|
+
})) && $vo88(elem, _path2 + ".alleles[" + _index83 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
5060
|
+
path: _path2 + ".alleles[" + _index83 + "]",
|
|
4842
5061
|
expected: "AllelesEntry",
|
|
4843
5062
|
value: elem
|
|
4844
5063
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4851,11 +5070,11 @@ var validBoxPlotRequest = (input) => {
|
|
|
4851
5070
|
value: input3.effectAllele
|
|
4852
5071
|
}), void 0 === input3.gt2count || ("object" === typeof input3.gt2count && null !== input3.gt2count || $report(_exceptionable2, {
|
|
4853
5072
|
path: _path2 + ".gt2count",
|
|
4854
|
-
expected: "(__type.
|
|
5073
|
+
expected: "(__type.o11 | undefined)",
|
|
4855
5074
|
value: input3.gt2count
|
|
4856
|
-
})) && $
|
|
5075
|
+
})) && $vo89(input3.gt2count, _path2 + ".gt2count", _exceptionable2) || $report(_exceptionable2, {
|
|
4857
5076
|
path: _path2 + ".gt2count",
|
|
4858
|
-
expected: "(__type.
|
|
5077
|
+
expected: "(__type.o11 | undefined)",
|
|
4859
5078
|
value: input3.gt2count
|
|
4860
5079
|
}), void 0 === input3.invalid || "boolean" === typeof input3.invalid || $report(_exceptionable2, {
|
|
4861
5080
|
path: _path2 + ".invalid",
|
|
@@ -4882,7 +5101,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4882
5101
|
expected: "(number | undefined)",
|
|
4883
5102
|
value: input3.pos
|
|
4884
5103
|
})].every((flag) => flag);
|
|
4885
|
-
const $
|
|
5104
|
+
const $vo88 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.allele || $report(_exceptionable2, {
|
|
4886
5105
|
path: _path2 + ".allele",
|
|
4887
5106
|
expected: "string",
|
|
4888
5107
|
value: input3.allele
|
|
@@ -4895,7 +5114,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4895
5114
|
expected: "boolean",
|
|
4896
5115
|
value: input3.isRef
|
|
4897
5116
|
})].every((flag) => flag);
|
|
4898
|
-
const $
|
|
5117
|
+
const $vo89 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.k || $report(_exceptionable2, {
|
|
4899
5118
|
path: _path2 + ".k",
|
|
4900
5119
|
expected: "string",
|
|
4901
5120
|
value: input3.k
|
|
@@ -4904,7 +5123,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4904
5123
|
expected: "(number | string)",
|
|
4905
5124
|
value: input3.v
|
|
4906
5125
|
})].every((flag) => flag);
|
|
4907
|
-
const $
|
|
5126
|
+
const $vo90 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
4908
5127
|
path: _path2 + ".id",
|
|
4909
5128
|
expected: "(string | undefined)",
|
|
4910
5129
|
value: input3.id
|
|
@@ -4936,7 +5155,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
4936
5155
|
path: _path2 + ".term",
|
|
4937
5156
|
expected: "NumericTermCollection",
|
|
4938
5157
|
value: input3.term
|
|
4939
|
-
})) && $
|
|
5158
|
+
})) && $vo48(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
4940
5159
|
path: _path2 + ".term",
|
|
4941
5160
|
expected: "NumericTermCollection",
|
|
4942
5161
|
value: input3.term
|
|
@@ -4944,12 +5163,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
4944
5163
|
path: _path2 + ".q",
|
|
4945
5164
|
expected: "TermCollectionQCont",
|
|
4946
5165
|
value: input3.q
|
|
4947
|
-
})) && $
|
|
5166
|
+
})) && $vo91(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
4948
5167
|
path: _path2 + ".q",
|
|
4949
5168
|
expected: "TermCollectionQCont",
|
|
4950
5169
|
value: input3.q
|
|
4951
5170
|
})].every((flag) => flag);
|
|
4952
|
-
const $
|
|
5171
|
+
const $vo91 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
4953
5172
|
path: _path2 + ".hiddenValues",
|
|
4954
5173
|
expected: "(HiddenValues | undefined)",
|
|
4955
5174
|
value: input3.hiddenValues
|
|
@@ -4981,8 +5200,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
4981
5200
|
path: _path2 + ".lst",
|
|
4982
5201
|
expected: "Array<string>",
|
|
4983
5202
|
value: input3.lst
|
|
4984
|
-
})) && input3.lst.map((elem,
|
|
4985
|
-
path: _path2 + ".lst[" +
|
|
5203
|
+
})) && input3.lst.map((elem, _index84) => "string" === typeof elem || $report(_exceptionable2, {
|
|
5204
|
+
path: _path2 + ".lst[" + _index84 + "]",
|
|
4986
5205
|
expected: "string",
|
|
4987
5206
|
value: elem
|
|
4988
5207
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -4993,8 +5212,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
4993
5212
|
path: _path2 + ".numerators",
|
|
4994
5213
|
expected: "(Array<string> | undefined)",
|
|
4995
5214
|
value: input3.numerators
|
|
4996
|
-
})) && input3.numerators.map((elem,
|
|
4997
|
-
path: _path2 + ".numerators[" +
|
|
5215
|
+
})) && input3.numerators.map((elem, _index85) => "string" === typeof elem || $report(_exceptionable2, {
|
|
5216
|
+
path: _path2 + ".numerators[" + _index85 + "]",
|
|
4998
5217
|
expected: "string",
|
|
4999
5218
|
value: elem
|
|
5000
5219
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -5002,7 +5221,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
5002
5221
|
expected: "(Array<string> | undefined)",
|
|
5003
5222
|
value: input3.numerators
|
|
5004
5223
|
})].every((flag) => flag);
|
|
5005
|
-
const $
|
|
5224
|
+
const $vo92 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
5006
5225
|
path: _path2 + ".id",
|
|
5007
5226
|
expected: "(string | undefined)",
|
|
5008
5227
|
value: input3.id
|
|
@@ -5034,7 +5253,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
5034
5253
|
path: _path2 + ".term",
|
|
5035
5254
|
expected: "CategoricalTermCollection",
|
|
5036
5255
|
value: input3.term
|
|
5037
|
-
})) && $
|
|
5256
|
+
})) && $vo52(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
5038
5257
|
path: _path2 + ".term",
|
|
5039
5258
|
expected: "CategoricalTermCollection",
|
|
5040
5259
|
value: input3.term
|
|
@@ -5042,12 +5261,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
5042
5261
|
path: _path2 + ".q",
|
|
5043
5262
|
expected: "TermCollectionQQual",
|
|
5044
5263
|
value: input3.q
|
|
5045
|
-
})) && $
|
|
5264
|
+
})) && $vo93(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
5046
5265
|
path: _path2 + ".q",
|
|
5047
5266
|
expected: "TermCollectionQQual",
|
|
5048
5267
|
value: input3.q
|
|
5049
5268
|
})].every((flag) => flag);
|
|
5050
|
-
const $
|
|
5269
|
+
const $vo93 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
5051
5270
|
path: _path2 + ".hiddenValues",
|
|
5052
5271
|
expected: "(HiddenValues | undefined)",
|
|
5053
5272
|
value: input3.hiddenValues
|
|
@@ -5079,8 +5298,8 @@ var validBoxPlotRequest = (input) => {
|
|
|
5079
5298
|
path: _path2 + ".lst",
|
|
5080
5299
|
expected: "Array<string>",
|
|
5081
5300
|
value: input3.lst
|
|
5082
|
-
})) && input3.lst.map((elem,
|
|
5083
|
-
path: _path2 + ".lst[" +
|
|
5301
|
+
})) && input3.lst.map((elem, _index86) => "string" === typeof elem || $report(_exceptionable2, {
|
|
5302
|
+
path: _path2 + ".lst[" + _index86 + "]",
|
|
5084
5303
|
expected: "string",
|
|
5085
5304
|
value: elem
|
|
5086
5305
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -5091,12 +5310,12 @@ var validBoxPlotRequest = (input) => {
|
|
|
5091
5310
|
path: _path2 + ".categoryKeys",
|
|
5092
5311
|
expected: "(Array<CategoryKey> | undefined)",
|
|
5093
5312
|
value: input3.categoryKeys
|
|
5094
|
-
})) && input3.categoryKeys.map((elem,
|
|
5095
|
-
path: _path2 + ".categoryKeys[" +
|
|
5313
|
+
})) && input3.categoryKeys.map((elem, _index87) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
5314
|
+
path: _path2 + ".categoryKeys[" + _index87 + "]",
|
|
5096
5315
|
expected: "CategoryKey",
|
|
5097
5316
|
value: elem
|
|
5098
|
-
})) && $
|
|
5099
|
-
path: _path2 + ".categoryKeys[" +
|
|
5317
|
+
})) && $vo53(elem, _path2 + ".categoryKeys[" + _index87 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
5318
|
+
path: _path2 + ".categoryKeys[" + _index87 + "]",
|
|
5100
5319
|
expected: "CategoryKey",
|
|
5101
5320
|
value: elem
|
|
5102
5321
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -5120,13 +5339,15 @@ var validBoxPlotRequest = (input) => {
|
|
|
5120
5339
|
return $vo16(input3, _path2, _exceptionable2);
|
|
5121
5340
|
if (true === input3.stopunbounded)
|
|
5122
5341
|
return $vo18(input3, _path2, _exceptionable2);
|
|
5342
|
+
if (void 0 !== input3.value)
|
|
5343
|
+
return $vo29(input3, _path2, _exceptionable2);
|
|
5123
5344
|
return $vo17(input3, _path2, _exceptionable2);
|
|
5124
5345
|
})();
|
|
5125
5346
|
const $vu2 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5126
5347
|
if ("gene" === input3.kind)
|
|
5127
|
-
return $
|
|
5348
|
+
return $vo38(input3, _path2, _exceptionable2);
|
|
5128
5349
|
if ("coord" === input3.kind)
|
|
5129
|
-
return $
|
|
5350
|
+
return $vo39(input3, _path2, _exceptionable2);
|
|
5130
5351
|
return $report(_exceptionable2, {
|
|
5131
5352
|
path: _path2,
|
|
5132
5353
|
expected: "(BaseTerm & Gene | BaseTerm & Coord)",
|
|
@@ -5135,9 +5356,9 @@ var validBoxPlotRequest = (input) => {
|
|
|
5135
5356
|
})();
|
|
5136
5357
|
const $vu3 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5137
5358
|
if ("string" === typeof input3.type)
|
|
5138
|
-
return $vo40(input3, _path2, _exceptionable2);
|
|
5139
|
-
if ("filter" === input3.type)
|
|
5140
5359
|
return $vo42(input3, _path2, _exceptionable2);
|
|
5360
|
+
if ("filter" === input3.type)
|
|
5361
|
+
return $vo44(input3, _path2, _exceptionable2);
|
|
5141
5362
|
return $report(_exceptionable2, {
|
|
5142
5363
|
path: _path2,
|
|
5143
5364
|
expected: "(ValuesGroup | FilterGroup)",
|
|
@@ -5145,6 +5366,13 @@ var validBoxPlotRequest = (input) => {
|
|
|
5145
5366
|
});
|
|
5146
5367
|
})();
|
|
5147
5368
|
const $vu4 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5369
|
+
if (true === input3.startunbounded)
|
|
5370
|
+
return $vo16(input3, _path2, _exceptionable2);
|
|
5371
|
+
if (true === input3.stopunbounded)
|
|
5372
|
+
return $vo18(input3, _path2, _exceptionable2);
|
|
5373
|
+
return $vo17(input3, _path2, _exceptionable2);
|
|
5374
|
+
})();
|
|
5375
|
+
const $vu5 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5148
5376
|
if (true === input3.startunbounded)
|
|
5149
5377
|
return $vo16(input3, _path2, _exceptionable2);
|
|
5150
5378
|
if (void 0 !== input3.start)
|
|
@@ -5155,7 +5383,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
5155
5383
|
value: input3
|
|
5156
5384
|
});
|
|
5157
5385
|
})();
|
|
5158
|
-
const $
|
|
5386
|
+
const $vu6 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5159
5387
|
if (void 0 !== input3.stop)
|
|
5160
5388
|
return $vo17(input3, _path2, _exceptionable2);
|
|
5161
5389
|
if (true === input3.stopunbounded)
|
|
@@ -5166,35 +5394,35 @@ var validBoxPlotRequest = (input) => {
|
|
|
5166
5394
|
value: input3
|
|
5167
5395
|
});
|
|
5168
5396
|
})();
|
|
5169
|
-
const $
|
|
5397
|
+
const $vu7 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5170
5398
|
if ("TermCollectionTWQual" === input3.type)
|
|
5171
|
-
return $
|
|
5399
|
+
return $vo92(input3, _path2, _exceptionable2);
|
|
5172
5400
|
if ("TermCollectionTWCont" === input3.type)
|
|
5173
|
-
return $
|
|
5401
|
+
return $vo90(input3, _path2, _exceptionable2);
|
|
5174
5402
|
if ("SnpsTW" === input3.type)
|
|
5175
|
-
return $
|
|
5403
|
+
return $vo83(input3, _path2, _exceptionable2);
|
|
5176
5404
|
if ("ConditionTW" === input3.type)
|
|
5177
|
-
return $
|
|
5405
|
+
return $vo80(input3, _path2, _exceptionable2);
|
|
5178
5406
|
if ("GvCustomGsTW" === input3.type)
|
|
5179
|
-
return $
|
|
5407
|
+
return $vo78(input3, _path2, _exceptionable2);
|
|
5180
5408
|
if ("GvPredefinedGsTW" === input3.type)
|
|
5181
|
-
return $
|
|
5409
|
+
return $vo76(input3, _path2, _exceptionable2);
|
|
5182
5410
|
if ("GvValuesTW" === input3.type)
|
|
5183
|
-
return $
|
|
5411
|
+
return $vo72(input3, _path2, _exceptionable2);
|
|
5184
5412
|
if ("NumTWSpline" === input3.type)
|
|
5185
|
-
return $
|
|
5413
|
+
return $vo69(input3, _path2, _exceptionable2);
|
|
5186
5414
|
if ("NumTWCont" === input3.type)
|
|
5187
|
-
return $
|
|
5415
|
+
return $vo67(input3, _path2, _exceptionable2);
|
|
5188
5416
|
if ("NumTWBinary" === input3.type)
|
|
5189
|
-
return $
|
|
5417
|
+
return $vo65(input3, _path2, _exceptionable2);
|
|
5190
5418
|
if ("NumTWCustomBin" === input3.type)
|
|
5191
|
-
return $
|
|
5419
|
+
return $vo64(input3, _path2, _exceptionable2);
|
|
5192
5420
|
if ("NumTWRegularBin" === input3.type)
|
|
5193
|
-
return $
|
|
5421
|
+
return $vo63(input3, _path2, _exceptionable2);
|
|
5194
5422
|
if ("QualTWCustomGS" === input3.type)
|
|
5195
|
-
return $
|
|
5423
|
+
return $vo60(input3, _path2, _exceptionable2);
|
|
5196
5424
|
if ("QualTWPredefinedGS" === input3.type)
|
|
5197
|
-
return $
|
|
5425
|
+
return $vo58(input3, _path2, _exceptionable2);
|
|
5198
5426
|
if ("QualTWValues" === input3.type)
|
|
5199
5427
|
return $vo1(input3, _path2, _exceptionable2);
|
|
5200
5428
|
return $report(_exceptionable2, {
|
|
@@ -5203,27 +5431,27 @@ var validBoxPlotRequest = (input) => {
|
|
|
5203
5431
|
value: input3
|
|
5204
5432
|
});
|
|
5205
5433
|
})();
|
|
5206
|
-
const $
|
|
5434
|
+
const $vu8 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5207
5435
|
if ("categorical" === input3.type)
|
|
5208
5436
|
return $vo3(input3, _path2, _exceptionable2);
|
|
5209
5437
|
if ("snp" === input3.type)
|
|
5210
|
-
return $
|
|
5438
|
+
return $vo54(input3, _path2, _exceptionable2);
|
|
5211
5439
|
if ("singleCellCellType" === input3.type)
|
|
5212
|
-
return $
|
|
5440
|
+
return $vo55(input3, _path2, _exceptionable2);
|
|
5213
5441
|
return $report(_exceptionable2, {
|
|
5214
5442
|
path: _path2,
|
|
5215
5443
|
expected: "(CategoricalTerm | SnpTerm | SingleCellCellTypeTerm)",
|
|
5216
5444
|
value: input3
|
|
5217
5445
|
});
|
|
5218
5446
|
})();
|
|
5219
|
-
const $
|
|
5447
|
+
const $vu9 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5220
5448
|
if (void 0 !== input3.ranges)
|
|
5221
5449
|
return $vo9(input3, _path2, _exceptionable2);
|
|
5222
5450
|
if (void 0 !== input3.ratio)
|
|
5223
|
-
return $
|
|
5224
|
-
return $vo8(input3, _path2, false) || $
|
|
5451
|
+
return $vo47(input3, _path2, _exceptionable2);
|
|
5452
|
+
return $vo8(input3, _path2, false) || $vo31(input3, _path2, false) || $vo35(input3, _path2, false);
|
|
5225
5453
|
})();
|
|
5226
|
-
const $
|
|
5454
|
+
const $vu10 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5227
5455
|
if ("integer" === input3.type || "float" === input3.type)
|
|
5228
5456
|
return $vo10(input3, _path2, _exceptionable2);
|
|
5229
5457
|
if ("metaboliteIntensity" === input3.type)
|
|
@@ -5238,7 +5466,7 @@ var validBoxPlotRequest = (input) => {
|
|
|
5238
5466
|
return $vo26(input3, _path2, _exceptionable2);
|
|
5239
5467
|
return $vo21(input3, _path2, false) || $vo20(input3, _path2, false) || $vo28(input3, _path2, false) || $vo27(input3, _path2, false);
|
|
5240
5468
|
})();
|
|
5241
|
-
const $
|
|
5469
|
+
const $vu11 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5242
5470
|
if ("regular-bin" === input3.type)
|
|
5243
5471
|
return $vo14(input3, _path2, _exceptionable2);
|
|
5244
5472
|
if ("custom-bin" === input3.type)
|
|
@@ -5249,44 +5477,44 @@ var validBoxPlotRequest = (input) => {
|
|
|
5249
5477
|
value: input3
|
|
5250
5478
|
});
|
|
5251
5479
|
})();
|
|
5252
|
-
const $
|
|
5480
|
+
const $vu12 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5253
5481
|
if ("gene" === input3.kind)
|
|
5254
|
-
return $
|
|
5482
|
+
return $vo37(input3, _path2, _exceptionable2);
|
|
5255
5483
|
if ("coord" === input3.kind)
|
|
5256
|
-
return $
|
|
5484
|
+
return $vo45(input3, _path2, _exceptionable2);
|
|
5257
5485
|
return $report(_exceptionable2, {
|
|
5258
5486
|
path: _path2,
|
|
5259
5487
|
expected: '(BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting?: TermGroupSetting | undefined; childTerms?: DtTerm[] | undefined; } | BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting?: TermGroupSetting | undefined; childTerms?: DtTerm[] | undefined; })',
|
|
5260
5488
|
value: input3
|
|
5261
5489
|
});
|
|
5262
5490
|
})();
|
|
5263
|
-
const $
|
|
5491
|
+
const $vu13 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5264
5492
|
if ("numeric" === input3.memberType)
|
|
5265
|
-
return $
|
|
5493
|
+
return $vo48(input3, _path2, _exceptionable2);
|
|
5266
5494
|
if ("categorical" === input3.memberType)
|
|
5267
|
-
return $
|
|
5495
|
+
return $vo52(input3, _path2, _exceptionable2);
|
|
5268
5496
|
return $report(_exceptionable2, {
|
|
5269
5497
|
path: _path2,
|
|
5270
5498
|
expected: "(NumericTermCollection | CategoricalTermCollection)",
|
|
5271
5499
|
value: input3
|
|
5272
5500
|
});
|
|
5273
5501
|
})();
|
|
5274
|
-
const $
|
|
5502
|
+
const $vu14 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5275
5503
|
if ("gene" === input3.kind)
|
|
5276
|
-
return $
|
|
5504
|
+
return $vo73(input3, _path2, _exceptionable2);
|
|
5277
5505
|
if ("coord" === input3.kind)
|
|
5278
|
-
return $
|
|
5506
|
+
return $vo74(input3, _path2, _exceptionable2);
|
|
5279
5507
|
return $report(_exceptionable2, {
|
|
5280
5508
|
path: _path2,
|
|
5281
5509
|
expected: '(BaseTerm & Gene & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; } | BaseTerm & Coord & { type: "geneVariant"; genes: GvGeneTerm[]; } & { groupsetting: TermGroupSetting; childTerms: DtTerm[]; })',
|
|
5282
5510
|
value: input3
|
|
5283
5511
|
});
|
|
5284
5512
|
})();
|
|
5285
|
-
const $
|
|
5513
|
+
const $vu15 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
5286
5514
|
if ("grade" === input3.valueFor)
|
|
5287
|
-
return $
|
|
5515
|
+
return $vo81(input3, _path2, _exceptionable2);
|
|
5288
5516
|
if ("children" === input3.valueFor)
|
|
5289
|
-
return $
|
|
5517
|
+
return $vo82(input3, _path2, _exceptionable2);
|
|
5290
5518
|
return $report(_exceptionable2, {
|
|
5291
5519
|
path: _path2,
|
|
5292
5520
|
expected: "(ConditionGradeQ | ConditionChildrenQ)",
|