@sjcrh/proteinpaint-types 2.151.1-0 → 2.152.1-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/brainImaging.js +1 -1
  2. package/dist/{chunk-2WSENLMK.js → chunk-46YIGVUP.js} +44 -24
  3. package/dist/{chunk-TTUU5XQC.js → chunk-5F24QFE7.js} +471 -253
  4. package/dist/{chunk-KSVIBMFQ.js → chunk-5OMJAZK4.js} +323 -185
  5. package/dist/{chunk-WL7ZVGZS.js → chunk-C27KCAQH.js} +476 -302
  6. package/dist/{chunk-5MGSKBUU.js → chunk-CC32XCET.js} +950 -574
  7. package/dist/{chunk-OZ3CVAFP.js → chunk-EBPGV76U.js} +279 -157
  8. package/dist/{chunk-KQNLROUN.js → chunk-GZKTMVAU.js} +750 -410
  9. package/dist/{chunk-3SKFYOKV.js → chunk-JT4DSNJ3.js} +476 -302
  10. package/dist/{chunk-75GS5ZG5.js → chunk-LXW2FSLR.js} +526 -352
  11. package/dist/{chunk-RA7IEGS4.js → chunk-MCL6EDOS.js} +482 -308
  12. package/dist/{chunk-DBSRGRXR.js → chunk-OAETETAO.js} +279 -157
  13. package/dist/{chunk-4MLQS6N7.js → chunk-OLWNM7QP.js} +279 -157
  14. package/dist/{chunk-MMFL6N5M.js → chunk-OLXOQLZH.js} +279 -157
  15. package/dist/{chunk-MIOIOFBZ.js → chunk-TD4YLTHL.js} +17 -3
  16. package/dist/{chunk-4SJC57Y6.js → chunk-ZXPLL3NT.js} +476 -302
  17. package/dist/correlationVolcano.js +1 -1
  18. package/dist/gdc.grin2.js +1 -1
  19. package/dist/gdc.maf.js +1 -1
  20. package/dist/index.js +15 -15
  21. package/dist/termdb.boxplot.js +1 -1
  22. package/dist/termdb.categories.js +1 -1
  23. package/dist/termdb.chat.js +1 -1
  24. package/dist/termdb.cluster.js +1 -1
  25. package/dist/termdb.descrstats.js +1 -1
  26. package/dist/termdb.numericcategories.js +1 -1
  27. package/dist/termdb.percentile.js +1 -1
  28. package/dist/termdb.termsbyids.js +1 -1
  29. package/dist/termdb.topTermsByType.js +1 -1
  30. package/dist/termdb.topVariablyExpressedGenes.js +1 -1
  31. package/dist/termdb.violin.js +1 -1
  32. package/package.json +1 -1
  33. package/src/dataset.ts +7 -280
  34. package/src/routes/gdc.grin2.ts +2 -2
  35. package/src/routes/gdc.maf.ts +3 -3
  36. package/src/terms/numeric.ts +17 -1
  37. package/src/terms/term.ts +5 -0
@@ -21,17 +21,31 @@ var gdcMafPayload = {
21
21
  var validGdcMafRequest = (input) => {
22
22
  const errors = [];
23
23
  const __is = (input2) => {
24
- const $io0 = (input3) => ("Targeted Sequencing" === input3.experimentalStrategy || "WXS" === input3.experimentalStrategy) && true;
24
+ const $io0 = (input3) => "object" === typeof input3.experimentalStrategy && null !== input3.experimentalStrategy && $io1(input3.experimentalStrategy) && true;
25
+ const $io1 = (input3) => "Targeted Sequencing" === input3.targeted && "WXS" === input3.wxs;
25
26
  return "object" === typeof input2 && null !== input2 && $io0(input2);
26
27
  };
27
28
  if (false === __is(input)) {
28
29
  const $report = import_typia.createValidate.report(errors);
29
30
  ((input2, _path, _exceptionable = true) => {
30
- const $vo0 = (input3, _path2, _exceptionable2 = true) => ["Targeted Sequencing" === input3.experimentalStrategy || "WXS" === input3.experimentalStrategy || $report(_exceptionable2, {
31
+ const $vo0 = (input3, _path2, _exceptionable2 = true) => [("object" === typeof input3.experimentalStrategy && null !== input3.experimentalStrategy || $report(_exceptionable2, {
31
32
  path: _path2 + ".experimentalStrategy",
32
- expected: '("Targeted Sequencing" | "WXS")',
33
+ expected: "ExperimentalStrategy",
34
+ value: input3.experimentalStrategy
35
+ })) && $vo1(input3.experimentalStrategy, _path2 + ".experimentalStrategy", _exceptionable2) || $report(_exceptionable2, {
36
+ path: _path2 + ".experimentalStrategy",
37
+ expected: "ExperimentalStrategy",
33
38
  value: input3.experimentalStrategy
34
39
  }), true].every((flag) => flag);
40
+ const $vo1 = (input3, _path2, _exceptionable2 = true) => ["Targeted Sequencing" === input3.targeted || $report(_exceptionable2, {
41
+ path: _path2 + ".targeted",
42
+ expected: '"Targeted Sequencing"',
43
+ value: input3.targeted
44
+ }), "WXS" === input3.wxs || $report(_exceptionable2, {
45
+ path: _path2 + ".wxs",
46
+ expected: '"WXS"',
47
+ value: input3.wxs
48
+ })].every((flag) => flag);
35
49
  return ("object" === typeof input2 && null !== input2 || $report(true, {
36
50
  path: _path + "",
37
51
  expected: "GdcMafRequest",