@sjcrh/proteinpaint-types 2.112.1-0 → 2.114.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/brainImaging.js +1 -1
- package/dist/{chunk-FMW25T52.js → chunk-66XSFQPI.js} +282 -182
- package/dist/{chunk-ES6BRZ4L.js → chunk-7AQB3YHO.js} +15 -11
- package/dist/{chunk-A72XYNKT.js → chunk-BEXUBE5A.js} +15 -11
- package/dist/{chunk-TXZQ56TX.js → chunk-BNOGQYXG.js} +421 -251
- package/dist/{chunk-7Z3AE4AY.js → chunk-H45GALYV.js} +445 -345
- package/dist/{chunk-4CCAF4O5.js → chunk-JNEIQWTE.js} +44 -36
- package/dist/{chunk-KHPBBU43.js → chunk-KRHYG2ZZ.js} +610 -580
- package/dist/{chunk-NPVDG36X.js → chunk-OSHG443J.js} +401 -371
- package/dist/{chunk-GHAIGRB7.js → chunk-PR7XHL4T.js} +15 -11
- package/dist/{chunk-ZFUF4XMD.js → chunk-T3NOHXOJ.js} +15 -11
- package/dist/{chunk-2WZPM25H.js → chunk-WVBWDL2B.js} +445 -345
- package/dist/{chunk-GGKNEHME.js → chunk-XDRUNGOV.js} +192 -162
- package/dist/correlationVolcano.js +1 -1
- package/dist/index.js +12 -12
- package/dist/termdb.boxplot.js +1 -1
- package/dist/termdb.categories.js +1 -1
- package/dist/termdb.cluster.js +1 -1
- package/dist/termdb.descrstats.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 +31 -15
- package/src/routes/termdb.DE.ts +4 -0
- package/src/routes/termdb.cluster.ts +7 -2
- package/src/terms/geneVariant.ts +23 -2
- package/src/terms/term.ts +16 -8
- package/src/termsetting.ts +3 -3
|
@@ -25,7 +25,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
25
25
|
const $io0 = (input3) => "string" === typeof input3.genome && "string" === typeof input3.dslabel && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io1(input3.filter)) && true && ("object" === typeof input3.featureTw && null !== input3.featureTw && $iu4(input3.featureTw)) && (Array.isArray(input3.variableTwLst) && input3.variableTwLst.every((elem) => "object" === typeof elem && null !== elem && $iu4(elem))) && ("pearson" === input3.correlationMethod || "spearman" === input3.correlationMethod);
|
|
26
26
|
const $io1 = (input3) => "lst" === input3.type && (void 0 === input3["in"] || "boolean" === typeof input3["in"]) && ("and" === input3.join || "or" === input3.join) && (void 0 === input3.tag || "string" === typeof input3.tag) && (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem)));
|
|
27
27
|
const $io2 = (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)));
|
|
28
|
-
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)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu7(input3.groupsetting));
|
|
28
|
+
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)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu7(input3.groupsetting));
|
|
29
29
|
const $io4 = (input3) => Object.keys(input3).every((key) => {
|
|
30
30
|
const value = input3[key];
|
|
31
31
|
if (void 0 === value)
|
|
@@ -41,10 +41,10 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
41
41
|
const $io7 = (input3) => "string" === typeof input3.name && (void 0 === input3.is_grade || "boolean" === typeof input3.is_grade) && (void 0 === input3.is_subcondition || "boolean" === typeof input3.is_subcondition) && (Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu1(elem)));
|
|
42
42
|
const $io8 = (input3) => "string" === typeof input3.name && "string" === typeof input3.type && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io9(elem))) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
|
|
43
43
|
const $io9 = (input3) => ("string" === typeof input3.key || "number" === typeof input3.key) && "string" === typeof input3.label;
|
|
44
|
-
const $io10 = (input3) => "string" === typeof input3.name && "filter" === input3.type && ("object" === typeof input3.filter && null !== input3.filter && $io1(input3.filter));
|
|
44
|
+
const $io10 = (input3) => "string" === typeof input3.name && "filter" === input3.type && ("object" === typeof input3.filter && null !== input3.filter && $io1(input3.filter)) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
|
|
45
45
|
const $io11 = (input3) => "boolean" === typeof input3.disabled && (void 0 === input3.lst || Array.isArray(input3.lst) && input3.lst.length === 0);
|
|
46
46
|
const $io12 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io13(input3.term)) && (Array.isArray(input3.ranges) && input3.ranges.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io22(elem)));
|
|
47
|
-
const $io13 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io4(input3.values)) && ("object" === typeof input3.bins && null !== input3.bins && $io14(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io21(input3.continuousColorScale));
|
|
47
|
+
const $io13 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io4(input3.values)) && true && ("object" === typeof input3.bins && null !== input3.bins && $io14(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io21(input3.continuousColorScale));
|
|
48
48
|
const $io14 = (input3) => "object" === typeof input3["default"] && null !== input3["default"] && $iu8(input3["default"]) && ("object" === typeof input3.less && null !== input3.less && $iu8(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);
|
|
49
49
|
const $io15 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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);
|
|
50
50
|
const $io16 = (input3) => Object.keys(input3).every((key) => {
|
|
@@ -62,16 +62,16 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
62
62
|
const $io21 = (input3) => "string" === typeof input3.minColor && "string" === typeof input3.maxColor;
|
|
63
63
|
const $io22 = (input3) => "string" === typeof input3.key && "number" === typeof input3.value && true === input3.uncomputable && (void 0 === input3.label || "string" === typeof input3.label);
|
|
64
64
|
const $io23 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io24(input3.term)) && (void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade) && (void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent) && (void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade) && (void 0 === input3.grade_and_child || Array.isArray(input3.grade_and_child) && input3.grade_and_child.every((elem) => "object" === typeof elem && null !== elem && $io25(elem)));
|
|
65
|
-
const $io24 = (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));
|
|
65
|
+
const $io24 = (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)) && true;
|
|
66
66
|
const $io25 = (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;
|
|
67
67
|
const $io26 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $iu9(input3.term)) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $iu3(elem)));
|
|
68
|
-
const $io27 = (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)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io6(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
|
|
69
|
-
const $io28 = (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)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io6(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
68
|
+
const $io27 = (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)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io6(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
|
|
69
|
+
const $io28 = (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)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io6(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
70
70
|
const $io29 = (input3) => 1 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "M" === elem || "E" === elem || "F" === elem || "N" === elem || "S" === elem || "D" === elem || "I" === elem || "P" === elem || "L" === elem || "Intron" === elem || "Blank" === elem || "WT" === elem || "ITD" === elem || "DEL" === elem || "NLOSS" === elem || "CLOSS" === elem || "Utr3" === elem || "Utr5" === elem || "X" === elem || "noncoding" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "M" === elem || "E" === elem || "F" === elem || "N" === elem || "S" === elem || "D" === elem || "I" === elem || "P" === elem || "L" === elem || "Intron" === elem || "Blank" === elem || "WT" === elem || "ITD" === elem || "DEL" === elem || "NLOSS" === elem || "CLOSS" === elem || "Utr3" === elem || "Utr5" === elem || "X" === elem || "noncoding" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
|
|
71
71
|
const $io30 = (input3) => 4 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "CNV_amp" === elem || "CNV_loss" === elem || "CNV_loh" === elem || "CNV_amplification" === elem || "CNV_homozygous_deletion" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "CNV_amp" === elem || "CNV_loss" === elem || "CNV_loh" === elem || "CNV_amplification" === elem || "CNV_homozygous_deletion" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
|
|
72
72
|
const $io31 = (input3) => 5 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "SV" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "SV" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
|
|
73
73
|
const $io32 = (input3) => 2 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "Fuserna" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "Fuserna" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
|
|
74
|
-
const $io33 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io34(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("CatTWValues" === input3.type || "CatTWPredefinedGS" === input3.type || "CatTWCustomGS" === input3.type) && ("object" === typeof input3.q && null !== input3.q && $iu10(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io3(input3.term));
|
|
74
|
+
const $io33 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io34(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("CatTWValues" === input3.type || "CatTWPredefinedGS" === input3.type || "CatTWCustomGS" === input3.type) && ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) && $iu10(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io3(input3.term));
|
|
75
75
|
const $io34 = (input3) => Object.keys(input3).every((key) => {
|
|
76
76
|
const value = input3[key];
|
|
77
77
|
if (void 0 === value)
|
|
@@ -81,58 +81,60 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
81
81
|
return true;
|
|
82
82
|
});
|
|
83
83
|
const $io35 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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;
|
|
84
|
-
const $io36 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic ||
|
|
85
|
-
const $io37 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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) && "
|
|
86
|
-
const $io38 = (input3) => Array.isArray(input3.
|
|
87
|
-
const $io39 = (input3) =>
|
|
88
|
-
const $io40 = (input3) => (void 0 === input3.
|
|
89
|
-
const $io41 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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) && "
|
|
90
|
-
const $io42 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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) && "
|
|
91
|
-
const $io43 = (input3) => "
|
|
92
|
-
const $io44 = (input3) =>
|
|
93
|
-
const $io45 = (input3) => (void 0 === input3.
|
|
94
|
-
const $io46 = (input3) => "string" === typeof input3.name && ("object" === typeof input3.
|
|
95
|
-
const $io47 = (input3) => "string" === typeof input3.
|
|
96
|
-
const $io48 = (input3) =>
|
|
97
|
-
const $io49 = (input3) => "string" === typeof input3.
|
|
98
|
-
const $io50 = (input3) => "string" === typeof input3.
|
|
99
|
-
const $io51 = (input3) =>
|
|
100
|
-
const $io52 = (input3) =>
|
|
101
|
-
const $io53 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name &&
|
|
102
|
-
const $io54 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "
|
|
103
|
-
const $io55 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "
|
|
104
|
-
const $io56 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io4(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io6(input3.groupsetting)) && "
|
|
105
|
-
const $io57 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "
|
|
106
|
-
const $io58 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $
|
|
107
|
-
const $io59 = (input3) =>
|
|
84
|
+
const $io36 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "filter" === input3.type);
|
|
85
|
+
const $io37 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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;
|
|
86
|
+
const $io38 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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 && $io39(input3.customset));
|
|
87
|
+
const $io39 = (input3) => Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu1(elem));
|
|
88
|
+
const $io40 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io34(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.term && null !== input3.term && $io13(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $iu11(input3.q));
|
|
89
|
+
const $io41 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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]))));
|
|
90
|
+
const $io42 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "continuous" === input3.mode && (void 0 === input3.convert2ZScore || "boolean" === typeof input3.convert2ZScore) && (null !== input3.type && void 0 === input3.type);
|
|
91
|
+
const $io43 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(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 && $io44(elem))) && (null !== input3.type && void 0 === input3.type);
|
|
92
|
+
const $io44 = (input3) => "number" === typeof input3.value;
|
|
93
|
+
const $io45 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io34(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.q && null !== input3.q && $io46(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io48(input3.term));
|
|
94
|
+
const $io46 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type) && "number" === typeof input3.AFcutoff && "number" === typeof input3.alleleType && "string" === typeof input3.cacheid && true && "number" === typeof input3.geneticModel && true && (void 0 === input3.missingGenotype || "number" === typeof input3.missingGenotype) && "number" === typeof input3.numOfSampleWithAnyValidGT && ("object" === typeof input3.restrictAncestry && null !== input3.restrictAncestry && $io47(input3.restrictAncestry)) && true && true && ("object" === typeof input3.variant_filter && null !== input3.variant_filter && $io1(input3.variant_filter)) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
95
|
+
const $io47 = (input3) => "string" === typeof input3.name && ("object" === typeof input3.tvs && null !== input3.tvs && $iu12(input3.tvs));
|
|
96
|
+
const $io48 = (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)) && true && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io49(elem)));
|
|
97
|
+
const $io49 = (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 && $io50(elem))) && "boolean" === typeof input3.effectAllele && (void 0 === input3.gt2count || "object" === typeof input3.gt2count && null !== input3.gt2count && $io51(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);
|
|
98
|
+
const $io50 = (input3) => "string" === typeof input3.allele && "number" === typeof input3.count && "boolean" === typeof input3.isRef;
|
|
99
|
+
const $io51 = (input3) => "string" === typeof input3.k && ("string" === typeof input3.v || "number" === typeof input3.v);
|
|
100
|
+
const $io52 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io34(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.term && null !== input3.term && $iu13(input3.term)) && ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) && $iu14(input3.q));
|
|
101
|
+
const $io53 = (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)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu7(input3.groupsetting));
|
|
102
|
+
const $io54 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io4(input3.values)) && true && ("object" === typeof input3.bins && null !== input3.bins && $io14(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io21(input3.continuousColorScale));
|
|
103
|
+
const $io55 = (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)) && true;
|
|
104
|
+
const $io56 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io4(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io6(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
|
|
105
|
+
const $io57 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io4(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io6(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
106
|
+
const $io58 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io4(input3.values)) && true && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io49(elem)));
|
|
107
|
+
const $io59 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io60(input3.values)) && true;
|
|
108
|
+
const $io60 = (input3) => Object.keys(input3).every((key) => {
|
|
108
109
|
const value = input3[key];
|
|
109
110
|
if (void 0 === value)
|
|
110
111
|
return true;
|
|
111
112
|
if (RegExp(/(.*)/).test(key))
|
|
112
|
-
return "object" === typeof value && null !== value && $
|
|
113
|
+
return "object" === typeof value && null !== value && $io61(value);
|
|
113
114
|
if (RegExp(/^[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(key))
|
|
114
|
-
return "object" === typeof value && null !== value && $
|
|
115
|
+
return "object" === typeof value && null !== value && $io61(value);
|
|
115
116
|
return true;
|
|
116
117
|
});
|
|
117
|
-
const $
|
|
118
|
-
const $
|
|
119
|
-
const $
|
|
120
|
-
const $
|
|
121
|
-
const $
|
|
122
|
-
const $
|
|
123
|
-
const $
|
|
124
|
-
const $
|
|
125
|
-
const $
|
|
118
|
+
const $io61 = (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 && $io1(input3.filter)) && "string" === typeof input3.name && "boolean" === typeof input3.inuse && (Array.isArray(input3.list) && input3.list.every((elem) => "object" === typeof elem && null !== elem && $io62(elem))) && true;
|
|
119
|
+
const $io62 = (input3) => "string" === typeof input3.sampleId && "string" === typeof input3.sample;
|
|
120
|
+
const $io63 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type);
|
|
121
|
+
const $io64 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.breaks || Array.isArray(input3.breaks) && input3.breaks.every((elem) => "number" === typeof elem)) && ("age" === input3.timeScale || "time" === input3.timeScale) && (void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade) && (void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent) && (void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade) && true;
|
|
122
|
+
const $io65 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "values" === input3.type;
|
|
123
|
+
const $io66 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.type || "filter" === input3.type);
|
|
124
|
+
const $io67 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "predefined-groupset" === input3.type && "number" === typeof input3.predefined_groupset_idx;
|
|
125
|
+
const $io68 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "custom-groupset" === input3.type && ("object" === typeof input3.customset && null !== input3.customset && $io39(input3.customset));
|
|
126
|
+
const $io69 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io16(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type) && ("object" === typeof input3.groups && null !== input3.groups && false === Array.isArray(input3.groups) && $io70(input3.groups));
|
|
127
|
+
const $io70 = (input3) => Object.keys(input3).every((key) => {
|
|
126
128
|
const value = input3[key];
|
|
127
129
|
if (void 0 === value)
|
|
128
130
|
return true;
|
|
129
131
|
if (RegExp(/(.*)/).test(key))
|
|
130
|
-
return "object" === typeof value && null !== value && $
|
|
132
|
+
return "object" === typeof value && null !== value && $io71(value);
|
|
131
133
|
if (RegExp(/^[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(key))
|
|
132
|
-
return "object" === typeof value && null !== value && $
|
|
134
|
+
return "object" === typeof value && null !== value && $io71(value);
|
|
133
135
|
return true;
|
|
134
136
|
});
|
|
135
|
-
const $
|
|
137
|
+
const $io71 = (input3) => "string" === typeof input3.name && "boolean" === typeof input3.inuse && (Array.isArray(input3.list) && input3.list.every((elem) => "object" === typeof elem && null !== elem && $io62(elem))) && true;
|
|
136
138
|
const $iu0 = (input3) => (() => {
|
|
137
139
|
if (void 0 !== input3.type)
|
|
138
140
|
return $io1(input3);
|
|
@@ -177,12 +179,12 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
177
179
|
if (void 0 !== input3.type)
|
|
178
180
|
return $io33(input3);
|
|
179
181
|
return (() => {
|
|
180
|
-
if ($
|
|
181
|
-
return $
|
|
182
|
-
if ($
|
|
183
|
-
return $
|
|
184
|
-
if ($
|
|
185
|
-
return $
|
|
182
|
+
if ($io52(input3))
|
|
183
|
+
return $io52(input3);
|
|
184
|
+
if ($io45(input3))
|
|
185
|
+
return $io45(input3);
|
|
186
|
+
if ($io40(input3))
|
|
187
|
+
return $io40(input3);
|
|
186
188
|
return false;
|
|
187
189
|
})();
|
|
188
190
|
})();
|
|
@@ -223,23 +225,23 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
223
225
|
if ("values" === input3.type)
|
|
224
226
|
return $io35(input3);
|
|
225
227
|
if ("predefined-groupset" === input3.type)
|
|
226
|
-
return $io36(input3);
|
|
227
|
-
if ("custom-groupset" === input3.type)
|
|
228
228
|
return $io37(input3);
|
|
229
|
-
|
|
229
|
+
if ("custom-groupset" === input3.type)
|
|
230
|
+
return $io38(input3);
|
|
231
|
+
return $io36(input3);
|
|
230
232
|
})();
|
|
231
233
|
const $iu11 = (input3) => (() => {
|
|
232
234
|
if ("regular-bin" === input3.type)
|
|
233
235
|
return $io15(input3);
|
|
234
236
|
if ("continuous" === input3.mode)
|
|
235
|
-
return $io41(input3);
|
|
236
|
-
if ("spline" === input3.mode)
|
|
237
237
|
return $io42(input3);
|
|
238
|
+
if ("spline" === input3.mode)
|
|
239
|
+
return $io43(input3);
|
|
238
240
|
return (() => {
|
|
239
241
|
if ($io20(input3))
|
|
240
242
|
return $io20(input3);
|
|
241
|
-
if ($
|
|
242
|
-
return $
|
|
243
|
+
if ($io41(input3))
|
|
244
|
+
return $io41(input3);
|
|
243
245
|
return false;
|
|
244
246
|
})();
|
|
245
247
|
})();
|
|
@@ -258,20 +260,20 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
258
260
|
})();
|
|
259
261
|
const $iu13 = (input3) => (() => {
|
|
260
262
|
if ("categorical" === input3.type)
|
|
261
|
-
return $io52(input3);
|
|
262
|
-
if ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type)
|
|
263
263
|
return $io53(input3);
|
|
264
|
-
if ("
|
|
264
|
+
if ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type)
|
|
265
265
|
return $io54(input3);
|
|
266
|
-
if ("
|
|
266
|
+
if ("condition" === input3.type)
|
|
267
267
|
return $io55(input3);
|
|
268
|
-
if ("
|
|
268
|
+
if ("gene" === input3.kind)
|
|
269
269
|
return $io56(input3);
|
|
270
|
+
if ("coord" === input3.kind)
|
|
271
|
+
return $io57(input3);
|
|
270
272
|
return (() => {
|
|
271
|
-
if ($io57(input3))
|
|
272
|
-
return $io57(input3);
|
|
273
273
|
if ($io58(input3))
|
|
274
274
|
return $io58(input3);
|
|
275
|
+
if ($io59(input3))
|
|
276
|
+
return $io59(input3);
|
|
275
277
|
return false;
|
|
276
278
|
})();
|
|
277
279
|
})();
|
|
@@ -279,35 +281,39 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
279
281
|
if (void 0 !== input3.bin_size)
|
|
280
282
|
return $io15(input3);
|
|
281
283
|
if (void 0 !== input3.knots)
|
|
282
|
-
return $
|
|
284
|
+
return $io43(input3);
|
|
283
285
|
if (void 0 !== input3.AFcutoff)
|
|
284
|
-
return $
|
|
286
|
+
return $io46(input3);
|
|
285
287
|
if (void 0 !== input3.timeScale)
|
|
286
|
-
return $
|
|
288
|
+
return $io64(input3);
|
|
287
289
|
return (() => {
|
|
288
290
|
if (void 0 !== input3.groups)
|
|
289
|
-
return $
|
|
291
|
+
return $io69(input3);
|
|
290
292
|
return (() => {
|
|
291
|
-
if ($io35(input3))
|
|
292
|
-
return $io35(input3);
|
|
293
293
|
if ($io36(input3))
|
|
294
294
|
return $io36(input3);
|
|
295
|
+
if ($io63(input3))
|
|
296
|
+
return $io63(input3);
|
|
297
|
+
if ($io35(input3))
|
|
298
|
+
return $io35(input3);
|
|
295
299
|
if ($io37(input3))
|
|
296
300
|
return $io37(input3);
|
|
301
|
+
if ($io38(input3))
|
|
302
|
+
return $io38(input3);
|
|
297
303
|
if ($io20(input3))
|
|
298
304
|
return $io20(input3);
|
|
299
|
-
if ($io40(input3))
|
|
300
|
-
return $io40(input3);
|
|
301
305
|
if ($io41(input3))
|
|
302
306
|
return $io41(input3);
|
|
303
|
-
if ($
|
|
304
|
-
return $
|
|
305
|
-
if ($io64(input3))
|
|
306
|
-
return $io64(input3);
|
|
307
|
-
if ($io65(input3))
|
|
308
|
-
return $io65(input3);
|
|
307
|
+
if ($io42(input3))
|
|
308
|
+
return $io42(input3);
|
|
309
309
|
if ($io66(input3))
|
|
310
310
|
return $io66(input3);
|
|
311
|
+
if ($io65(input3))
|
|
312
|
+
return $io65(input3);
|
|
313
|
+
if ($io67(input3))
|
|
314
|
+
return $io67(input3);
|
|
315
|
+
if ($io68(input3))
|
|
316
|
+
return $io68(input3);
|
|
311
317
|
return false;
|
|
312
318
|
})();
|
|
313
319
|
})();
|
|
@@ -485,7 +491,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
485
491
|
path: _path2 + ".values",
|
|
486
492
|
expected: "(TermValues | undefined)",
|
|
487
493
|
value: input3.values
|
|
488
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
494
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
489
495
|
path: _path2 + ".groupsetting",
|
|
490
496
|
expected: "(EnabledTermGroupSetting | __type.o1)",
|
|
491
497
|
value: input3.groupsetting
|
|
@@ -657,6 +663,10 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
657
663
|
path: _path2 + ".filter",
|
|
658
664
|
expected: "Filter",
|
|
659
665
|
value: input3.filter
|
|
666
|
+
}), void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable || $report(_exceptionable2, {
|
|
667
|
+
path: _path2 + ".uncomputable",
|
|
668
|
+
expected: "(boolean | undefined)",
|
|
669
|
+
value: input3.uncomputable
|
|
660
670
|
})].every((flag) => flag);
|
|
661
671
|
const $vo11 = (input3, _path2, _exceptionable2 = true) => ["boolean" === typeof input3.disabled || $report(_exceptionable2, {
|
|
662
672
|
path: _path2 + ".disabled",
|
|
@@ -776,7 +786,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
776
786
|
path: _path2 + ".values",
|
|
777
787
|
expected: "(TermValues | undefined)",
|
|
778
788
|
value: input3.values
|
|
779
|
-
}), ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
|
|
789
|
+
}), true, ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
|
|
780
790
|
path: _path2 + ".bins",
|
|
781
791
|
expected: "PresetNumericBins",
|
|
782
792
|
value: input3.bins
|
|
@@ -1168,7 +1178,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1168
1178
|
path: _path2 + ".values",
|
|
1169
1179
|
expected: "(TermValues | undefined)",
|
|
1170
1180
|
value: input3.values
|
|
1171
|
-
})].every((flag) => flag);
|
|
1181
|
+
}), true].every((flag) => flag);
|
|
1172
1182
|
const $vo25 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.grade || $report(_exceptionable2, {
|
|
1173
1183
|
path: _path2 + ".grade",
|
|
1174
1184
|
expected: "number",
|
|
@@ -1271,7 +1281,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1271
1281
|
path: _path2 + ".values",
|
|
1272
1282
|
expected: "(TermValues | undefined)",
|
|
1273
1283
|
value: input3.values
|
|
1274
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
1284
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
1275
1285
|
path: _path2 + ".groupsetting",
|
|
1276
1286
|
expected: "EnabledTermGroupSetting",
|
|
1277
1287
|
value: input3.groupsetting
|
|
@@ -1352,7 +1362,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1352
1362
|
path: _path2 + ".values",
|
|
1353
1363
|
expected: "(TermValues | undefined)",
|
|
1354
1364
|
value: input3.values
|
|
1355
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
1365
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
1356
1366
|
path: _path2 + ".groupsetting",
|
|
1357
1367
|
expected: "EnabledTermGroupSetting",
|
|
1358
1368
|
value: input3.groupsetting
|
|
@@ -1537,13 +1547,13 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1537
1547
|
path: _path2 + ".type",
|
|
1538
1548
|
expected: '("CatTWCustomGS" | "CatTWPredefinedGS" | "CatTWValues")',
|
|
1539
1549
|
value: input3.type
|
|
1540
|
-
}), ("object" === typeof input3.q && null !== input3.q || $report(_exceptionable2, {
|
|
1550
|
+
}), ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) || $report(_exceptionable2, {
|
|
1541
1551
|
path: _path2 + ".q",
|
|
1542
|
-
expected: "(CustomGroupSettingQ | PredefinedGroupSettingQ | ValuesQ)",
|
|
1552
|
+
expected: "(CustomGroupSettingQ | FilterQ | PredefinedGroupSettingQ | ValuesQ)",
|
|
1543
1553
|
value: input3.q
|
|
1544
1554
|
})) && $vu10(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
1545
1555
|
path: _path2 + ".q",
|
|
1546
|
-
expected: "(CustomGroupSettingQ | PredefinedGroupSettingQ | ValuesQ)",
|
|
1556
|
+
expected: "(CustomGroupSettingQ | FilterQ | PredefinedGroupSettingQ | ValuesQ)",
|
|
1547
1557
|
value: input3.q
|
|
1548
1558
|
}), ("object" === typeof input3.term && null !== input3.term || $report(_exceptionable2, {
|
|
1549
1559
|
path: _path2 + ".term",
|
|
@@ -1599,6 +1609,35 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1599
1609
|
path: _path2 + ".hiddenValues",
|
|
1600
1610
|
expected: "(HiddenValues | undefined)",
|
|
1601
1611
|
value: input3.hiddenValues
|
|
1612
|
+
}), void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic || $report(_exceptionable2, {
|
|
1613
|
+
path: _path2 + ".isAtomic",
|
|
1614
|
+
expected: "(boolean | undefined)",
|
|
1615
|
+
value: input3.isAtomic
|
|
1616
|
+
}), void 0 === input3.name || "string" === typeof input3.name || $report(_exceptionable2, {
|
|
1617
|
+
path: _path2 + ".name",
|
|
1618
|
+
expected: "(string | undefined)",
|
|
1619
|
+
value: input3.name
|
|
1620
|
+
}), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode || $report(_exceptionable2, {
|
|
1621
|
+
path: _path2 + ".mode",
|
|
1622
|
+
expected: '("binary" | "continuous" | "cox" | "cuminc" | "discrete" | "spline" | undefined)',
|
|
1623
|
+
value: input3.mode
|
|
1624
|
+
}), void 0 === input3.reuseId || "string" === typeof input3.reuseId || $report(_exceptionable2, {
|
|
1625
|
+
path: _path2 + ".reuseId",
|
|
1626
|
+
expected: "(string | undefined)",
|
|
1627
|
+
value: input3.reuseId
|
|
1628
|
+
}), void 0 === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
1629
|
+
path: _path2 + ".type",
|
|
1630
|
+
expected: '("filter" | undefined)',
|
|
1631
|
+
value: input3.type
|
|
1632
|
+
})].every((flag) => flag);
|
|
1633
|
+
const $vo37 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
1634
|
+
path: _path2 + ".hiddenValues",
|
|
1635
|
+
expected: "(HiddenValues | undefined)",
|
|
1636
|
+
value: input3.hiddenValues
|
|
1637
|
+
})) && $vo16(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
1638
|
+
path: _path2 + ".hiddenValues",
|
|
1639
|
+
expected: "(HiddenValues | undefined)",
|
|
1640
|
+
value: input3.hiddenValues
|
|
1602
1641
|
}), void 0 === input3.isAtomic || true === input3.isAtomic || $report(_exceptionable2, {
|
|
1603
1642
|
path: _path2 + ".isAtomic",
|
|
1604
1643
|
expected: "(true | undefined)",
|
|
@@ -1624,7 +1663,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1624
1663
|
expected: "number",
|
|
1625
1664
|
value: input3.predefined_groupset_idx
|
|
1626
1665
|
})].every((flag) => flag);
|
|
1627
|
-
const $
|
|
1666
|
+
const $vo38 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
1628
1667
|
path: _path2 + ".hiddenValues",
|
|
1629
1668
|
expected: "(HiddenValues | undefined)",
|
|
1630
1669
|
value: input3.hiddenValues
|
|
@@ -1656,12 +1695,12 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1656
1695
|
path: _path2 + ".customset",
|
|
1657
1696
|
expected: "BaseGroupSet",
|
|
1658
1697
|
value: input3.customset
|
|
1659
|
-
})) && $
|
|
1698
|
+
})) && $vo39(input3.customset, _path2 + ".customset", _exceptionable2) || $report(_exceptionable2, {
|
|
1660
1699
|
path: _path2 + ".customset",
|
|
1661
1700
|
expected: "BaseGroupSet",
|
|
1662
1701
|
value: input3.customset
|
|
1663
1702
|
})].every((flag) => flag);
|
|
1664
|
-
const $
|
|
1703
|
+
const $vo39 = (input3, _path2, _exceptionable2 = true) => [(Array.isArray(input3.groups) || $report(_exceptionable2, {
|
|
1665
1704
|
path: _path2 + ".groups",
|
|
1666
1705
|
expected: "Array<GroupEntry>",
|
|
1667
1706
|
value: input3.groups
|
|
@@ -1678,7 +1717,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1678
1717
|
expected: "Array<GroupEntry>",
|
|
1679
1718
|
value: input3.groups
|
|
1680
1719
|
})].every((flag) => flag);
|
|
1681
|
-
const $
|
|
1720
|
+
const $vo40 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
1682
1721
|
path: _path2 + ".id",
|
|
1683
1722
|
expected: "(string | undefined)",
|
|
1684
1723
|
value: input3.id
|
|
@@ -1719,7 +1758,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1719
1758
|
expected: "(BinaryNumericQ | ContinuousNumericQ | CustomNumericBinConfig | RegularNumericBinConfig | SplineNumericQ)",
|
|
1720
1759
|
value: input3.q
|
|
1721
1760
|
})].every((flag) => flag);
|
|
1722
|
-
const $
|
|
1761
|
+
const $vo41 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
1723
1762
|
path: _path2 + ".hiddenValues",
|
|
1724
1763
|
expected: "(HiddenValues | undefined)",
|
|
1725
1764
|
value: input3.hiddenValues
|
|
@@ -1779,7 +1818,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1779
1818
|
expected: "[StartUnboundedBin | FullyBoundedBin, FullyBoundedBin | StopUnboundedBin]",
|
|
1780
1819
|
value: input3.lst
|
|
1781
1820
|
})].every((flag) => flag);
|
|
1782
|
-
const $
|
|
1821
|
+
const $vo42 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
1783
1822
|
path: _path2 + ".hiddenValues",
|
|
1784
1823
|
expected: "(HiddenValues | undefined)",
|
|
1785
1824
|
value: input3.hiddenValues
|
|
@@ -1816,7 +1855,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1816
1855
|
expected: "undefined",
|
|
1817
1856
|
value: input3.type
|
|
1818
1857
|
}))].every((flag) => flag);
|
|
1819
|
-
const $
|
|
1858
|
+
const $vo43 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
1820
1859
|
path: _path2 + ".hiddenValues",
|
|
1821
1860
|
expected: "(HiddenValues | undefined)",
|
|
1822
1861
|
value: input3.hiddenValues
|
|
@@ -1848,7 +1887,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1848
1887
|
path: _path2 + ".knots[" + _index31 + "]",
|
|
1849
1888
|
expected: "__type.o5",
|
|
1850
1889
|
value: elem
|
|
1851
|
-
})) && $
|
|
1890
|
+
})) && $vo44(elem, _path2 + ".knots[" + _index31 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
1852
1891
|
path: _path2 + ".knots[" + _index31 + "]",
|
|
1853
1892
|
expected: "__type.o5",
|
|
1854
1893
|
value: elem
|
|
@@ -1865,12 +1904,12 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1865
1904
|
expected: "undefined",
|
|
1866
1905
|
value: input3.type
|
|
1867
1906
|
}))].every((flag) => flag);
|
|
1868
|
-
const $
|
|
1907
|
+
const $vo44 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.value || $report(_exceptionable2, {
|
|
1869
1908
|
path: _path2 + ".value",
|
|
1870
1909
|
expected: "number",
|
|
1871
1910
|
value: input3.value
|
|
1872
1911
|
})].every((flag) => flag);
|
|
1873
|
-
const $
|
|
1912
|
+
const $vo45 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
1874
1913
|
path: _path2 + ".id",
|
|
1875
1914
|
expected: "(string | undefined)",
|
|
1876
1915
|
value: input3.id
|
|
@@ -1898,7 +1937,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1898
1937
|
path: _path2 + ".q",
|
|
1899
1938
|
expected: "SnpsQ",
|
|
1900
1939
|
value: input3.q
|
|
1901
|
-
})) && $
|
|
1940
|
+
})) && $vo46(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
1902
1941
|
path: _path2 + ".q",
|
|
1903
1942
|
expected: "SnpsQ",
|
|
1904
1943
|
value: input3.q
|
|
@@ -1906,12 +1945,12 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1906
1945
|
path: _path2 + ".term",
|
|
1907
1946
|
expected: "SnpsTerm",
|
|
1908
1947
|
value: input3.term
|
|
1909
|
-
})) && $
|
|
1948
|
+
})) && $vo48(input3.term, _path2 + ".term", _exceptionable2) || $report(_exceptionable2, {
|
|
1910
1949
|
path: _path2 + ".term",
|
|
1911
1950
|
expected: "SnpsTerm",
|
|
1912
1951
|
value: input3.term
|
|
1913
1952
|
})].every((flag) => flag);
|
|
1914
|
-
const $
|
|
1953
|
+
const $vo46 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
1915
1954
|
path: _path2 + ".hiddenValues",
|
|
1916
1955
|
expected: "(HiddenValues | undefined)",
|
|
1917
1956
|
value: input3.hiddenValues
|
|
@@ -1935,9 +1974,9 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1935
1974
|
path: _path2 + ".reuseId",
|
|
1936
1975
|
expected: "(string | undefined)",
|
|
1937
1976
|
value: input3.reuseId
|
|
1938
|
-
}), void 0 === input3.type || "values" === input3.type || "
|
|
1977
|
+
}), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
1939
1978
|
path: _path2 + ".type",
|
|
1940
|
-
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
1979
|
+
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
1941
1980
|
value: input3.type
|
|
1942
1981
|
}), "number" === typeof input3.AFcutoff || $report(_exceptionable2, {
|
|
1943
1982
|
path: _path2 + ".AFcutoff",
|
|
@@ -1967,7 +2006,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1967
2006
|
path: _path2 + ".restrictAncestry",
|
|
1968
2007
|
expected: "RestrictAncestry",
|
|
1969
2008
|
value: input3.restrictAncestry
|
|
1970
|
-
})) && $
|
|
2009
|
+
})) && $vo47(input3.restrictAncestry, _path2 + ".restrictAncestry", _exceptionable2) || $report(_exceptionable2, {
|
|
1971
2010
|
path: _path2 + ".restrictAncestry",
|
|
1972
2011
|
expected: "RestrictAncestry",
|
|
1973
2012
|
value: input3.restrictAncestry
|
|
@@ -1992,7 +2031,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
1992
2031
|
expected: "number",
|
|
1993
2032
|
value: input3.stop
|
|
1994
2033
|
})].every((flag) => flag);
|
|
1995
|
-
const $
|
|
2034
|
+
const $vo47 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
|
|
1996
2035
|
path: _path2 + ".name",
|
|
1997
2036
|
expected: "string",
|
|
1998
2037
|
value: input3.name
|
|
@@ -2005,7 +2044,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2005
2044
|
expected: "(CategoricalTvs | ConditionTvs | GeneVariantTvs | NumericTvs)",
|
|
2006
2045
|
value: input3.tvs
|
|
2007
2046
|
})].every((flag) => flag);
|
|
2008
|
-
const $
|
|
2047
|
+
const $vo48 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2009
2048
|
path: _path2 + ".id",
|
|
2010
2049
|
expected: "string",
|
|
2011
2050
|
value: input3.id
|
|
@@ -2057,7 +2096,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2057
2096
|
path: _path2 + ".values",
|
|
2058
2097
|
expected: "(TermValues | undefined)",
|
|
2059
2098
|
value: input3.values
|
|
2060
|
-
}), void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
|
|
2099
|
+
}), true, void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
|
|
2061
2100
|
path: _path2 + ".reachedVariantLimit",
|
|
2062
2101
|
expected: "(boolean | undefined)",
|
|
2063
2102
|
value: input3.reachedVariantLimit
|
|
@@ -2069,7 +2108,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2069
2108
|
path: _path2 + ".snps[" + _index34 + "]",
|
|
2070
2109
|
expected: "SnpsEntry",
|
|
2071
2110
|
value: elem
|
|
2072
|
-
})) && $
|
|
2111
|
+
})) && $vo49(elem, _path2 + ".snps[" + _index34 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2073
2112
|
path: _path2 + ".snps[" + _index34 + "]",
|
|
2074
2113
|
expected: "SnpsEntry",
|
|
2075
2114
|
value: elem
|
|
@@ -2078,7 +2117,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2078
2117
|
expected: "(Array<SnpsEntry> | undefined)",
|
|
2079
2118
|
value: input3.snps
|
|
2080
2119
|
})].every((flag) => flag);
|
|
2081
|
-
const $
|
|
2120
|
+
const $vo49 = (input3, _path2, _exceptionable2 = true) => [true, void 0 === input3.altAlleles || (Array.isArray(input3.altAlleles) || $report(_exceptionable2, {
|
|
2082
2121
|
path: _path2 + ".altAlleles",
|
|
2083
2122
|
expected: "(Array<string> | undefined)",
|
|
2084
2123
|
value: input3.altAlleles
|
|
@@ -2098,7 +2137,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2098
2137
|
path: _path2 + ".alleles[" + _index36 + "]",
|
|
2099
2138
|
expected: "AllelesEntry",
|
|
2100
2139
|
value: elem
|
|
2101
|
-
})) && $
|
|
2140
|
+
})) && $vo50(elem, _path2 + ".alleles[" + _index36 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2102
2141
|
path: _path2 + ".alleles[" + _index36 + "]",
|
|
2103
2142
|
expected: "AllelesEntry",
|
|
2104
2143
|
value: elem
|
|
@@ -2114,7 +2153,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2114
2153
|
path: _path2 + ".gt2count",
|
|
2115
2154
|
expected: "(__type.o6 | undefined)",
|
|
2116
2155
|
value: input3.gt2count
|
|
2117
|
-
})) && $
|
|
2156
|
+
})) && $vo51(input3.gt2count, _path2 + ".gt2count", _exceptionable2) || $report(_exceptionable2, {
|
|
2118
2157
|
path: _path2 + ".gt2count",
|
|
2119
2158
|
expected: "(__type.o6 | undefined)",
|
|
2120
2159
|
value: input3.gt2count
|
|
@@ -2143,7 +2182,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2143
2182
|
expected: "(number | undefined)",
|
|
2144
2183
|
value: input3.pos
|
|
2145
2184
|
})].every((flag) => flag);
|
|
2146
|
-
const $
|
|
2185
|
+
const $vo50 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.allele || $report(_exceptionable2, {
|
|
2147
2186
|
path: _path2 + ".allele",
|
|
2148
2187
|
expected: "string",
|
|
2149
2188
|
value: input3.allele
|
|
@@ -2156,7 +2195,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2156
2195
|
expected: "boolean",
|
|
2157
2196
|
value: input3.isRef
|
|
2158
2197
|
})].every((flag) => flag);
|
|
2159
|
-
const $
|
|
2198
|
+
const $vo51 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.k || $report(_exceptionable2, {
|
|
2160
2199
|
path: _path2 + ".k",
|
|
2161
2200
|
expected: "string",
|
|
2162
2201
|
value: input3.k
|
|
@@ -2165,7 +2204,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2165
2204
|
expected: "(number | string)",
|
|
2166
2205
|
value: input3.v
|
|
2167
2206
|
})].every((flag) => flag);
|
|
2168
|
-
const $
|
|
2207
|
+
const $vo52 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
2169
2208
|
path: _path2 + ".id",
|
|
2170
2209
|
expected: "(string | undefined)",
|
|
2171
2210
|
value: input3.id
|
|
@@ -2199,14 +2238,14 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2199
2238
|
value: input3.term
|
|
2200
2239
|
}), ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) || $report(_exceptionable2, {
|
|
2201
2240
|
path: _path2 + ".q",
|
|
2202
|
-
expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
|
|
2241
|
+
expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | FilterQ | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & BaseQ & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
|
|
2203
2242
|
value: input3.q
|
|
2204
2243
|
})) && $vu14(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
2205
2244
|
path: _path2 + ".q",
|
|
2206
|
-
expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
|
|
2245
|
+
expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | FilterQ | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & BaseQ & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
|
|
2207
2246
|
value: input3.q
|
|
2208
2247
|
})].every((flag) => flag);
|
|
2209
|
-
const $
|
|
2248
|
+
const $vo53 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2210
2249
|
path: _path2 + ".id",
|
|
2211
2250
|
expected: "string",
|
|
2212
2251
|
value: input3.id
|
|
@@ -2258,7 +2297,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2258
2297
|
path: _path2 + ".values",
|
|
2259
2298
|
expected: "(TermValues | undefined)",
|
|
2260
2299
|
value: input3.values
|
|
2261
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2300
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2262
2301
|
path: _path2 + ".groupsetting",
|
|
2263
2302
|
expected: "(EnabledTermGroupSetting | __type.o1)",
|
|
2264
2303
|
value: input3.groupsetting
|
|
@@ -2267,7 +2306,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2267
2306
|
expected: "(EnabledTermGroupSetting | __type.o1)",
|
|
2268
2307
|
value: input3.groupsetting
|
|
2269
2308
|
})].every((flag) => flag);
|
|
2270
|
-
const $
|
|
2309
|
+
const $vo54 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2271
2310
|
path: _path2 + ".id",
|
|
2272
2311
|
expected: "string",
|
|
2273
2312
|
value: input3.id
|
|
@@ -2319,7 +2358,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2319
2358
|
path: _path2 + ".values",
|
|
2320
2359
|
expected: "(TermValues | undefined)",
|
|
2321
2360
|
value: input3.values
|
|
2322
|
-
}), ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
|
|
2361
|
+
}), true, ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
|
|
2323
2362
|
path: _path2 + ".bins",
|
|
2324
2363
|
expected: "PresetNumericBins",
|
|
2325
2364
|
value: input3.bins
|
|
@@ -2340,7 +2379,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2340
2379
|
expected: "(__type.o2 | undefined)",
|
|
2341
2380
|
value: input3.continuousColorScale
|
|
2342
2381
|
})].every((flag) => flag);
|
|
2343
|
-
const $
|
|
2382
|
+
const $vo55 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2344
2383
|
path: _path2 + ".id",
|
|
2345
2384
|
expected: "string",
|
|
2346
2385
|
value: input3.id
|
|
@@ -2392,8 +2431,8 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2392
2431
|
path: _path2 + ".values",
|
|
2393
2432
|
expected: "(TermValues | undefined)",
|
|
2394
2433
|
value: input3.values
|
|
2395
|
-
})].every((flag) => flag);
|
|
2396
|
-
const $
|
|
2434
|
+
}), true].every((flag) => flag);
|
|
2435
|
+
const $vo56 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2397
2436
|
path: _path2 + ".id",
|
|
2398
2437
|
expected: "string",
|
|
2399
2438
|
value: input3.id
|
|
@@ -2445,7 +2484,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2445
2484
|
path: _path2 + ".values",
|
|
2446
2485
|
expected: "(TermValues | undefined)",
|
|
2447
2486
|
value: input3.values
|
|
2448
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2487
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2449
2488
|
path: _path2 + ".groupsetting",
|
|
2450
2489
|
expected: "EnabledTermGroupSetting",
|
|
2451
2490
|
value: input3.groupsetting
|
|
@@ -2474,7 +2513,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2474
2513
|
expected: "(number | undefined)",
|
|
2475
2514
|
value: input3.stop
|
|
2476
2515
|
})].every((flag) => flag);
|
|
2477
|
-
const $
|
|
2516
|
+
const $vo57 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2478
2517
|
path: _path2 + ".id",
|
|
2479
2518
|
expected: "string",
|
|
2480
2519
|
value: input3.id
|
|
@@ -2526,7 +2565,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2526
2565
|
path: _path2 + ".values",
|
|
2527
2566
|
expected: "(TermValues | undefined)",
|
|
2528
2567
|
value: input3.values
|
|
2529
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2568
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2530
2569
|
path: _path2 + ".groupsetting",
|
|
2531
2570
|
expected: "EnabledTermGroupSetting",
|
|
2532
2571
|
value: input3.groupsetting
|
|
@@ -2551,7 +2590,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2551
2590
|
expected: "number",
|
|
2552
2591
|
value: input3.stop
|
|
2553
2592
|
})].every((flag) => flag);
|
|
2554
|
-
const $
|
|
2593
|
+
const $vo58 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2555
2594
|
path: _path2 + ".id",
|
|
2556
2595
|
expected: "string",
|
|
2557
2596
|
value: input3.id
|
|
@@ -2603,7 +2642,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2603
2642
|
path: _path2 + ".values",
|
|
2604
2643
|
expected: "(TermValues | undefined)",
|
|
2605
2644
|
value: input3.values
|
|
2606
|
-
}), void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
|
|
2645
|
+
}), true, void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
|
|
2607
2646
|
path: _path2 + ".reachedVariantLimit",
|
|
2608
2647
|
expected: "(boolean | undefined)",
|
|
2609
2648
|
value: input3.reachedVariantLimit
|
|
@@ -2615,7 +2654,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2615
2654
|
path: _path2 + ".snps[" + _index49 + "]",
|
|
2616
2655
|
expected: "SnpsEntry",
|
|
2617
2656
|
value: elem
|
|
2618
|
-
})) && $
|
|
2657
|
+
})) && $vo49(elem, _path2 + ".snps[" + _index49 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2619
2658
|
path: _path2 + ".snps[" + _index49 + "]",
|
|
2620
2659
|
expected: "SnpsEntry",
|
|
2621
2660
|
value: elem
|
|
@@ -2624,7 +2663,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2624
2663
|
expected: "(Array<SnpsEntry> | undefined)",
|
|
2625
2664
|
value: input3.snps
|
|
2626
2665
|
})].every((flag) => flag);
|
|
2627
|
-
const $
|
|
2666
|
+
const $vo59 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2628
2667
|
path: _path2 + ".id",
|
|
2629
2668
|
expected: "string",
|
|
2630
2669
|
value: input3.id
|
|
@@ -2672,12 +2711,12 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2672
2711
|
path: _path2 + ".values",
|
|
2673
2712
|
expected: "(TermValues & SampleLstTermValues | undefined)",
|
|
2674
2713
|
value: input3.values
|
|
2675
|
-
})) && $
|
|
2714
|
+
})) && $vo60(input3.values, _path2 + ".values", _exceptionable2) || $report(_exceptionable2, {
|
|
2676
2715
|
path: _path2 + ".values",
|
|
2677
2716
|
expected: "(TermValues & SampleLstTermValues | undefined)",
|
|
2678
2717
|
value: input3.values
|
|
2679
|
-
})].every((flag) => flag);
|
|
2680
|
-
const $
|
|
2718
|
+
}), true].every((flag) => flag);
|
|
2719
|
+
const $vo60 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
2681
2720
|
const value = input3[key];
|
|
2682
2721
|
if (void 0 === value)
|
|
2683
2722
|
return true;
|
|
@@ -2686,7 +2725,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2686
2725
|
path: _path2 + $join(key),
|
|
2687
2726
|
expected: "BaseValue & { name: string; inuse: boolean; list: { sampleId: string; sample: string; }[]; values: any; }",
|
|
2688
2727
|
value
|
|
2689
|
-
})) && $
|
|
2728
|
+
})) && $vo61(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
|
|
2690
2729
|
path: _path2 + $join(key),
|
|
2691
2730
|
expected: "BaseValue & { name: string; inuse: boolean; list: { sampleId: string; sample: string; }[]; values: any; }",
|
|
2692
2731
|
value
|
|
@@ -2696,14 +2735,14 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2696
2735
|
path: _path2 + $join(key),
|
|
2697
2736
|
expected: "BaseValue & { name: string; inuse: boolean; list: { sampleId: string; sample: string; }[]; values: any; }",
|
|
2698
2737
|
value
|
|
2699
|
-
})) && $
|
|
2738
|
+
})) && $vo61(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
|
|
2700
2739
|
path: _path2 + $join(key),
|
|
2701
2740
|
expected: "BaseValue & { name: string; inuse: boolean; list: { sampleId: string; sample: string; }[]; values: any; }",
|
|
2702
2741
|
value
|
|
2703
2742
|
});
|
|
2704
2743
|
return true;
|
|
2705
2744
|
}).every((flag) => flag)].every((flag) => flag);
|
|
2706
|
-
const $
|
|
2745
|
+
const $vo61 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.key || "string" === typeof input3.key || $report(_exceptionable2, {
|
|
2707
2746
|
path: _path2 + ".key",
|
|
2708
2747
|
expected: "(string | undefined)",
|
|
2709
2748
|
value: input3.key
|
|
@@ -2751,7 +2790,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2751
2790
|
path: _path2 + ".list[" + _index52 + "]",
|
|
2752
2791
|
expected: "__type.o7",
|
|
2753
2792
|
value: elem
|
|
2754
|
-
})) && $
|
|
2793
|
+
})) && $vo62(elem, _path2 + ".list[" + _index52 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2755
2794
|
path: _path2 + ".list[" + _index52 + "]",
|
|
2756
2795
|
expected: "__type.o7",
|
|
2757
2796
|
value: elem
|
|
@@ -2760,7 +2799,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2760
2799
|
expected: "Array<__type>.o3",
|
|
2761
2800
|
value: input3.list
|
|
2762
2801
|
}), true].every((flag) => flag);
|
|
2763
|
-
const $
|
|
2802
|
+
const $vo62 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.sampleId || $report(_exceptionable2, {
|
|
2764
2803
|
path: _path2 + ".sampleId",
|
|
2765
2804
|
expected: "string",
|
|
2766
2805
|
value: input3.sampleId
|
|
@@ -2769,7 +2808,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2769
2808
|
expected: "string",
|
|
2770
2809
|
value: input3.sample
|
|
2771
2810
|
})].every((flag) => flag);
|
|
2772
|
-
const $
|
|
2811
|
+
const $vo63 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
2773
2812
|
path: _path2 + ".hiddenValues",
|
|
2774
2813
|
expected: "(HiddenValues | undefined)",
|
|
2775
2814
|
value: input3.hiddenValues
|
|
@@ -2793,12 +2832,12 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2793
2832
|
path: _path2 + ".reuseId",
|
|
2794
2833
|
expected: "(string | undefined)",
|
|
2795
2834
|
value: input3.reuseId
|
|
2796
|
-
}), void 0 === input3.type || "values" === input3.type || "
|
|
2835
|
+
}), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
2797
2836
|
path: _path2 + ".type",
|
|
2798
|
-
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
2837
|
+
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
2799
2838
|
value: input3.type
|
|
2800
2839
|
})].every((flag) => flag);
|
|
2801
|
-
const $
|
|
2840
|
+
const $vo64 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
2802
2841
|
path: _path2 + ".hiddenValues",
|
|
2803
2842
|
expected: "(HiddenValues | undefined)",
|
|
2804
2843
|
value: input3.hiddenValues
|
|
@@ -2863,7 +2902,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2863
2902
|
expected: "(boolean | undefined)",
|
|
2864
2903
|
value: input3.value_by_computable_grade
|
|
2865
2904
|
}), true].every((flag) => flag);
|
|
2866
|
-
const $
|
|
2905
|
+
const $vo65 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
2867
2906
|
path: _path2 + ".hiddenValues",
|
|
2868
2907
|
expected: "(HiddenValues | undefined)",
|
|
2869
2908
|
value: input3.hiddenValues
|
|
@@ -2928,7 +2967,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2928
2967
|
expected: '"values"',
|
|
2929
2968
|
value: input3.type
|
|
2930
2969
|
})].every((flag) => flag);
|
|
2931
|
-
const $
|
|
2970
|
+
const $vo66 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
2932
2971
|
path: _path2 + ".hiddenValues",
|
|
2933
2972
|
expected: "(HiddenValues | undefined)",
|
|
2934
2973
|
value: input3.hiddenValues
|
|
@@ -2984,6 +3023,71 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2984
3023
|
path: _path2 + ".origin",
|
|
2985
3024
|
expected: "(string | undefined)",
|
|
2986
3025
|
value: input3.origin
|
|
3026
|
+
}), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode || $report(_exceptionable2, {
|
|
3027
|
+
path: _path2 + ".mode",
|
|
3028
|
+
expected: '("binary" | "continuous" | "cox" | "cuminc" | "discrete" | "spline" | undefined)',
|
|
3029
|
+
value: input3.mode
|
|
3030
|
+
}), void 0 === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
3031
|
+
path: _path2 + ".type",
|
|
3032
|
+
expected: '("filter" | undefined)',
|
|
3033
|
+
value: input3.type
|
|
3034
|
+
})].every((flag) => flag);
|
|
3035
|
+
const $vo67 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3036
|
+
path: _path2 + ".hiddenValues",
|
|
3037
|
+
expected: "(HiddenValues | undefined)",
|
|
3038
|
+
value: input3.hiddenValues
|
|
3039
|
+
})) && $vo16(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
3040
|
+
path: _path2 + ".hiddenValues",
|
|
3041
|
+
expected: "(HiddenValues | undefined)",
|
|
3042
|
+
value: input3.hiddenValues
|
|
3043
|
+
}), void 0 === input3.isAtomic || true === input3.isAtomic || $report(_exceptionable2, {
|
|
3044
|
+
path: _path2 + ".isAtomic",
|
|
3045
|
+
expected: "(true | undefined)",
|
|
3046
|
+
value: input3.isAtomic
|
|
3047
|
+
}), void 0 === input3.name || "string" === typeof input3.name || $report(_exceptionable2, {
|
|
3048
|
+
path: _path2 + ".name",
|
|
3049
|
+
expected: "(string | undefined)",
|
|
3050
|
+
value: input3.name
|
|
3051
|
+
}), void 0 === input3.reuseId || "string" === typeof input3.reuseId || $report(_exceptionable2, {
|
|
3052
|
+
path: _path2 + ".reuseId",
|
|
3053
|
+
expected: "(string | undefined)",
|
|
3054
|
+
value: input3.reuseId
|
|
3055
|
+
}), void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff || $report(_exceptionable2, {
|
|
3056
|
+
path: _path2 + ".cnvGainCutoff",
|
|
3057
|
+
expected: "(number | undefined)",
|
|
3058
|
+
value: input3.cnvGainCutoff
|
|
3059
|
+
}), void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength || $report(_exceptionable2, {
|
|
3060
|
+
path: _path2 + ".cnvMaxLength",
|
|
3061
|
+
expected: "(number | undefined)",
|
|
3062
|
+
value: input3.cnvMaxLength
|
|
3063
|
+
}), void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue || $report(_exceptionable2, {
|
|
3064
|
+
path: _path2 + ".cnvMinAbsValue",
|
|
3065
|
+
expected: "(number | undefined)",
|
|
3066
|
+
value: input3.cnvMinAbsValue
|
|
3067
|
+
}), void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff || $report(_exceptionable2, {
|
|
3068
|
+
path: _path2 + ".cnvLossCutoff",
|
|
3069
|
+
expected: "(number | undefined)",
|
|
3070
|
+
value: input3.cnvLossCutoff
|
|
3071
|
+
}), (Array.isArray(input3.exclude) || $report(_exceptionable2, {
|
|
3072
|
+
path: _path2 + ".exclude",
|
|
3073
|
+
expected: "Array<string>",
|
|
3074
|
+
value: input3.exclude
|
|
3075
|
+
})) && input3.exclude.map((elem, _index56) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3076
|
+
path: _path2 + ".exclude[" + _index56 + "]",
|
|
3077
|
+
expected: "string",
|
|
3078
|
+
value: elem
|
|
3079
|
+
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
3080
|
+
path: _path2 + ".exclude",
|
|
3081
|
+
expected: "Array<string>",
|
|
3082
|
+
value: input3.exclude
|
|
3083
|
+
}), void 0 === input3.dt || "number" === typeof input3.dt || $report(_exceptionable2, {
|
|
3084
|
+
path: _path2 + ".dt",
|
|
3085
|
+
expected: "(number | undefined)",
|
|
3086
|
+
value: input3.dt
|
|
3087
|
+
}), void 0 === input3.origin || "string" === typeof input3.origin || $report(_exceptionable2, {
|
|
3088
|
+
path: _path2 + ".origin",
|
|
3089
|
+
expected: "(string | undefined)",
|
|
3090
|
+
value: input3.origin
|
|
2987
3091
|
}), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || $report(_exceptionable2, {
|
|
2988
3092
|
path: _path2 + ".mode",
|
|
2989
3093
|
expected: '("binary" | "discrete" | undefined)',
|
|
@@ -2997,7 +3101,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
2997
3101
|
expected: "number",
|
|
2998
3102
|
value: input3.predefined_groupset_idx
|
|
2999
3103
|
})].every((flag) => flag);
|
|
3000
|
-
const $
|
|
3104
|
+
const $vo68 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3001
3105
|
path: _path2 + ".hiddenValues",
|
|
3002
3106
|
expected: "(HiddenValues | undefined)",
|
|
3003
3107
|
value: input3.hiddenValues
|
|
@@ -3037,8 +3141,8 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3037
3141
|
path: _path2 + ".exclude",
|
|
3038
3142
|
expected: "Array<string>",
|
|
3039
3143
|
value: input3.exclude
|
|
3040
|
-
})) && input3.exclude.map((elem,
|
|
3041
|
-
path: _path2 + ".exclude[" +
|
|
3144
|
+
})) && input3.exclude.map((elem, _index57) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3145
|
+
path: _path2 + ".exclude[" + _index57 + "]",
|
|
3042
3146
|
expected: "string",
|
|
3043
3147
|
value: elem
|
|
3044
3148
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3065,12 +3169,12 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3065
3169
|
path: _path2 + ".customset",
|
|
3066
3170
|
expected: "BaseGroupSet",
|
|
3067
3171
|
value: input3.customset
|
|
3068
|
-
})) && $
|
|
3172
|
+
})) && $vo39(input3.customset, _path2 + ".customset", _exceptionable2) || $report(_exceptionable2, {
|
|
3069
3173
|
path: _path2 + ".customset",
|
|
3070
3174
|
expected: "BaseGroupSet",
|
|
3071
3175
|
value: input3.customset
|
|
3072
3176
|
})].every((flag) => flag);
|
|
3073
|
-
const $
|
|
3177
|
+
const $vo69 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3074
3178
|
path: _path2 + ".hiddenValues",
|
|
3075
3179
|
expected: "(HiddenValues | undefined)",
|
|
3076
3180
|
value: input3.hiddenValues
|
|
@@ -3094,20 +3198,20 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3094
3198
|
path: _path2 + ".reuseId",
|
|
3095
3199
|
expected: "(string | undefined)",
|
|
3096
3200
|
value: input3.reuseId
|
|
3097
|
-
}), void 0 === input3.type || "values" === input3.type || "
|
|
3201
|
+
}), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
3098
3202
|
path: _path2 + ".type",
|
|
3099
|
-
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
3203
|
+
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
3100
3204
|
value: input3.type
|
|
3101
3205
|
}), ("object" === typeof input3.groups && null !== input3.groups && false === Array.isArray(input3.groups) || $report(_exceptionable2, {
|
|
3102
3206
|
path: _path2 + ".groups",
|
|
3103
3207
|
expected: "SampleLstTermValues",
|
|
3104
3208
|
value: input3.groups
|
|
3105
|
-
})) && $
|
|
3209
|
+
})) && $vo70(input3.groups, _path2 + ".groups", _exceptionable2) || $report(_exceptionable2, {
|
|
3106
3210
|
path: _path2 + ".groups",
|
|
3107
3211
|
expected: "SampleLstTermValues",
|
|
3108
3212
|
value: input3.groups
|
|
3109
3213
|
})].every((flag) => flag);
|
|
3110
|
-
const $
|
|
3214
|
+
const $vo70 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
3111
3215
|
const value = input3[key];
|
|
3112
3216
|
if (void 0 === value)
|
|
3113
3217
|
return true;
|
|
@@ -3116,7 +3220,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3116
3220
|
path: _path2 + $join(key),
|
|
3117
3221
|
expected: "__type.o8",
|
|
3118
3222
|
value
|
|
3119
|
-
})) && $
|
|
3223
|
+
})) && $vo71(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
|
|
3120
3224
|
path: _path2 + $join(key),
|
|
3121
3225
|
expected: "__type.o8",
|
|
3122
3226
|
value
|
|
@@ -3126,14 +3230,14 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3126
3230
|
path: _path2 + $join(key),
|
|
3127
3231
|
expected: "__type.o8",
|
|
3128
3232
|
value
|
|
3129
|
-
})) && $
|
|
3233
|
+
})) && $vo71(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
|
|
3130
3234
|
path: _path2 + $join(key),
|
|
3131
3235
|
expected: "__type.o8",
|
|
3132
3236
|
value
|
|
3133
3237
|
});
|
|
3134
3238
|
return true;
|
|
3135
3239
|
}).every((flag) => flag)].every((flag) => flag);
|
|
3136
|
-
const $
|
|
3240
|
+
const $vo71 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
|
|
3137
3241
|
path: _path2 + ".name",
|
|
3138
3242
|
expected: "string",
|
|
3139
3243
|
value: input3.name
|
|
@@ -3145,12 +3249,12 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3145
3249
|
path: _path2 + ".list",
|
|
3146
3250
|
expected: "Array<__type>.o3",
|
|
3147
3251
|
value: input3.list
|
|
3148
|
-
})) && input3.list.map((elem,
|
|
3149
|
-
path: _path2 + ".list[" +
|
|
3252
|
+
})) && input3.list.map((elem, _index58) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
3253
|
+
path: _path2 + ".list[" + _index58 + "]",
|
|
3150
3254
|
expected: "__type.o7",
|
|
3151
3255
|
value: elem
|
|
3152
|
-
})) && $
|
|
3153
|
-
path: _path2 + ".list[" +
|
|
3256
|
+
})) && $vo62(elem, _path2 + ".list[" + _index58 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
3257
|
+
path: _path2 + ".list[" + _index58 + "]",
|
|
3154
3258
|
expected: "__type.o7",
|
|
3155
3259
|
value: elem
|
|
3156
3260
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3201,7 +3305,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3201
3305
|
const $vu4 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3202
3306
|
if (void 0 !== input3.type)
|
|
3203
3307
|
return $vo33(input3, _path2, _exceptionable2);
|
|
3204
|
-
return $
|
|
3308
|
+
return $vo52(input3, _path2, false) || $vo45(input3, _path2, false) || $vo40(input3, _path2, false);
|
|
3205
3309
|
})();
|
|
3206
3310
|
const $vu5 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3207
3311
|
if (true === input3.startunbounded)
|
|
@@ -3226,7 +3330,7 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3226
3330
|
});
|
|
3227
3331
|
})();
|
|
3228
3332
|
const $vu7 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3229
|
-
if (Array.isArray(input3.lst) && input3.lst.map((elem,
|
|
3333
|
+
if (Array.isArray(input3.lst) && input3.lst.map((elem, _index59) => "object" === typeof elem && null !== elem && $vo7(elem, _path2 + ".lst[" + _index59 + "]", false)).every((flag) => flag))
|
|
3230
3334
|
return $vo6(input3, _path2, _exceptionable2);
|
|
3231
3335
|
return $vo11(input3, _path2, _exceptionable2);
|
|
3232
3336
|
})();
|
|
@@ -3256,23 +3360,19 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3256
3360
|
if ("values" === input3.type)
|
|
3257
3361
|
return $vo35(input3, _path2, _exceptionable2);
|
|
3258
3362
|
if ("predefined-groupset" === input3.type)
|
|
3259
|
-
return $vo36(input3, _path2, _exceptionable2);
|
|
3260
|
-
if ("custom-groupset" === input3.type)
|
|
3261
3363
|
return $vo37(input3, _path2, _exceptionable2);
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
value: input3
|
|
3266
|
-
});
|
|
3364
|
+
if ("custom-groupset" === input3.type)
|
|
3365
|
+
return $vo38(input3, _path2, _exceptionable2);
|
|
3366
|
+
return $vo36(input3, _path2, _exceptionable2);
|
|
3267
3367
|
})();
|
|
3268
3368
|
const $vu11 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3269
3369
|
if ("regular-bin" === input3.type)
|
|
3270
3370
|
return $vo15(input3, _path2, _exceptionable2);
|
|
3271
3371
|
if ("continuous" === input3.mode)
|
|
3272
|
-
return $vo41(input3, _path2, _exceptionable2);
|
|
3273
|
-
if ("spline" === input3.mode)
|
|
3274
3372
|
return $vo42(input3, _path2, _exceptionable2);
|
|
3275
|
-
|
|
3373
|
+
if ("spline" === input3.mode)
|
|
3374
|
+
return $vo43(input3, _path2, _exceptionable2);
|
|
3375
|
+
return $vo20(input3, _path2, false) || $vo41(input3, _path2, false);
|
|
3276
3376
|
})();
|
|
3277
3377
|
const $vu12 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3278
3378
|
if (void 0 !== input3.ranges)
|
|
@@ -3281,30 +3381,30 @@ var validCorrelationVolcanoRequest = (input) => {
|
|
|
3281
3381
|
})();
|
|
3282
3382
|
const $vu13 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3283
3383
|
if ("categorical" === input3.type)
|
|
3284
|
-
return $vo52(input3, _path2, _exceptionable2);
|
|
3285
|
-
if ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type)
|
|
3286
3384
|
return $vo53(input3, _path2, _exceptionable2);
|
|
3287
|
-
if ("
|
|
3385
|
+
if ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type)
|
|
3288
3386
|
return $vo54(input3, _path2, _exceptionable2);
|
|
3289
|
-
if ("
|
|
3387
|
+
if ("condition" === input3.type)
|
|
3290
3388
|
return $vo55(input3, _path2, _exceptionable2);
|
|
3291
|
-
if ("
|
|
3389
|
+
if ("gene" === input3.kind)
|
|
3292
3390
|
return $vo56(input3, _path2, _exceptionable2);
|
|
3293
|
-
|
|
3391
|
+
if ("coord" === input3.kind)
|
|
3392
|
+
return $vo57(input3, _path2, _exceptionable2);
|
|
3393
|
+
return $vo58(input3, _path2, false) || $vo59(input3, _path2, false);
|
|
3294
3394
|
})();
|
|
3295
3395
|
const $vu14 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3296
3396
|
if (void 0 !== input3.bin_size)
|
|
3297
3397
|
return $vo15(input3, _path2, _exceptionable2);
|
|
3298
3398
|
if (void 0 !== input3.knots)
|
|
3299
|
-
return $
|
|
3399
|
+
return $vo43(input3, _path2, _exceptionable2);
|
|
3300
3400
|
if (void 0 !== input3.AFcutoff)
|
|
3301
|
-
return $
|
|
3401
|
+
return $vo46(input3, _path2, _exceptionable2);
|
|
3302
3402
|
if (void 0 !== input3.timeScale)
|
|
3303
|
-
return $
|
|
3403
|
+
return $vo64(input3, _path2, _exceptionable2);
|
|
3304
3404
|
return (() => {
|
|
3305
3405
|
if (void 0 !== input3.groups)
|
|
3306
|
-
return $
|
|
3307
|
-
return $
|
|
3406
|
+
return $vo69(input3, _path2, _exceptionable2);
|
|
3407
|
+
return $vo36(input3, _path2, false) || $vo63(input3, _path2, false) || $vo35(input3, _path2, false) || $vo37(input3, _path2, false) || $vo38(input3, _path2, false) || $vo20(input3, _path2, false) || $vo41(input3, _path2, false) || $vo42(input3, _path2, false) || $vo66(input3, _path2, false) || $vo65(input3, _path2, false) || $vo67(input3, _path2, false) || $vo68(input3, _path2, false);
|
|
3308
3408
|
})();
|
|
3309
3409
|
})();
|
|
3310
3410
|
return ("object" === typeof input2 && null !== input2 || $report(true, {
|