@sjcrh/proteinpaint-types 2.180.1 → 2.182.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-XCSFBW4V.js → chunk-2QTCQFYE.js} +1101 -649
- package/dist/{chunk-DIKDKRFN.js → chunk-3DA4MJ2U.js} +691 -467
- package/dist/{chunk-Y6F7ZVSV.js → chunk-45VA4Y6L.js} +691 -467
- package/dist/chunk-7OA6G77M.js +113 -0
- package/dist/{chunk-XAGXFLSH.js → chunk-C5ECCXOT.js} +1402 -756
- package/dist/{chunk-PZUKZRSI.js → chunk-DDMUMMOL.js} +438 -214
- package/dist/{chunk-4DCPDZW4.js → chunk-G6ZTAMGK.js} +13 -1
- package/dist/{chunk-DPWX7ORN.js → chunk-J55IQXT7.js} +515 -291
- package/dist/{chunk-P75GBHFO.js → chunk-K6W2WEPW.js} +857 -395
- package/dist/{chunk-LLBTODL6.js → chunk-KNDCWQJD.js} +691 -467
- package/dist/{chunk-NOT62STS.js → chunk-UBAJYDGK.js} +453 -229
- package/dist/{chunk-WSKMTIOO.js → chunk-URYAC364.js} +677 -453
- package/dist/{chunk-6PTYP7X4.js → chunk-UYKWZWCU.js} +2180 -1062
- package/dist/{chunk-OT6W3FNI.js → chunk-VUNM6QTX.js} +438 -214
- package/dist/{chunk-ICACMXK2.js → chunk-ZKO7LMCC.js} +438 -214
- package/dist/{chunk-KFNXZOED.js → chunk-ZRTB7SRA.js} +653 -425
- package/dist/correlationVolcano.js +1 -1
- package/dist/grin2.js +1 -1
- package/dist/index.js +34 -34
- package/dist/termdb.categories.js +1 -1
- package/dist/termdb.chat.js +438 -214
- package/dist/termdb.chat2.js +1 -1
- package/dist/termdb.cluster.js +1 -1
- package/dist/termdb.descrstats.js +1 -1
- package/dist/termdb.diffMeth.js +1 -1
- package/dist/termdb.dmr.js +1 -1
- package/dist/termdb.isoformAvailability.js +11 -0
- 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.violinBox.js +11 -0
- package/package.json +1 -1
- package/src/dataset.ts +92 -58
- package/src/index.ts +3 -2
- package/src/routes/termdb.cluster.ts +11 -0
- package/src/routes/termdb.diffMeth.ts +6 -0
- package/src/routes/termdb.dmr.ts +73 -14
- package/src/routes/termdb.isoformAvailability.ts +22 -0
- package/src/routes/termdb.violinBox.ts +230 -0
- package/src/terms/isoformExpression.ts +36 -0
- package/src/terms/numeric.ts +2 -0
- package/src/vocab.ts +0 -1
- package/dist/chunk-R7BNDCKV.js +0 -3722
- package/dist/termdb.boxplot.js +0 -11
- package/dist/termdb.violin.js +0 -11
- package/src/routes/termdb.boxplot.ts +0 -164
- package/src/routes/termdb.violin.ts +0 -163
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__toESM,
|
|
3
|
+
require_lib
|
|
4
|
+
} from "./chunk-YNHC5SXO.js";
|
|
5
|
+
|
|
6
|
+
// dist/termdb.isoformAvailability.ts
|
|
7
|
+
var import_typia = __toESM(require_lib(), 1);
|
|
8
|
+
|
|
9
|
+
// src/routes/termdb.isoformAvailability.ts
|
|
10
|
+
var TermdbIsoformAvailabilityPayload = {
|
|
11
|
+
request: {
|
|
12
|
+
typeId: "TermdbIsoformAvailabilityRequest"
|
|
13
|
+
},
|
|
14
|
+
response: {
|
|
15
|
+
typeId: "TermdbIsoformAvailabilityResponse"
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
// dist/termdb.isoformAvailability.ts
|
|
20
|
+
var validTermdbIsoformAvailabilityRequest = (input) => {
|
|
21
|
+
const errors = [];
|
|
22
|
+
const __is = (input2) => {
|
|
23
|
+
const $io0 = (input3) => "string" === typeof input3.genome && "string" === typeof input3.dslabel && (Array.isArray(input3.isoforms) && input3.isoforms.every((elem) => "string" === typeof elem));
|
|
24
|
+
return "object" === typeof input2 && null !== input2 && $io0(input2);
|
|
25
|
+
};
|
|
26
|
+
if (false === __is(input)) {
|
|
27
|
+
const $report = import_typia.createValidate.report(errors);
|
|
28
|
+
((input2, _path, _exceptionable = true) => {
|
|
29
|
+
const $vo0 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.genome || $report(_exceptionable2, {
|
|
30
|
+
path: _path2 + ".genome",
|
|
31
|
+
expected: "string",
|
|
32
|
+
value: input3.genome
|
|
33
|
+
}), "string" === typeof input3.dslabel || $report(_exceptionable2, {
|
|
34
|
+
path: _path2 + ".dslabel",
|
|
35
|
+
expected: "string",
|
|
36
|
+
value: input3.dslabel
|
|
37
|
+
}), (Array.isArray(input3.isoforms) || $report(_exceptionable2, {
|
|
38
|
+
path: _path2 + ".isoforms",
|
|
39
|
+
expected: "Array<string>",
|
|
40
|
+
value: input3.isoforms
|
|
41
|
+
})) && input3.isoforms.map((elem, _index1) => "string" === typeof elem || $report(_exceptionable2, {
|
|
42
|
+
path: _path2 + ".isoforms[" + _index1 + "]",
|
|
43
|
+
expected: "string",
|
|
44
|
+
value: elem
|
|
45
|
+
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
46
|
+
path: _path2 + ".isoforms",
|
|
47
|
+
expected: "Array<string>",
|
|
48
|
+
value: input3.isoforms
|
|
49
|
+
})].every((flag) => flag);
|
|
50
|
+
return ("object" === typeof input2 && null !== input2 || $report(true, {
|
|
51
|
+
path: _path + "",
|
|
52
|
+
expected: "TermdbIsoformAvailabilityRequest",
|
|
53
|
+
value: input2
|
|
54
|
+
})) && $vo0(input2, _path + "", true) || $report(true, {
|
|
55
|
+
path: _path + "",
|
|
56
|
+
expected: "TermdbIsoformAvailabilityRequest",
|
|
57
|
+
value: input2
|
|
58
|
+
});
|
|
59
|
+
})(input, "$input", true);
|
|
60
|
+
}
|
|
61
|
+
const success = 0 === errors.length;
|
|
62
|
+
return {
|
|
63
|
+
success,
|
|
64
|
+
errors,
|
|
65
|
+
data: success ? input : void 0
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
var validTermdbIsoformAvailabilityResponse = (input) => {
|
|
69
|
+
const errors = [];
|
|
70
|
+
const __is = (input2) => {
|
|
71
|
+
const $io0 = (input3) => Array.isArray(input3.available) && input3.available.every((elem) => "string" === typeof elem);
|
|
72
|
+
return "object" === typeof input2 && null !== input2 && $io0(input2);
|
|
73
|
+
};
|
|
74
|
+
if (false === __is(input)) {
|
|
75
|
+
const $report = import_typia.createValidate.report(errors);
|
|
76
|
+
((input2, _path, _exceptionable = true) => {
|
|
77
|
+
const $vo0 = (input3, _path2, _exceptionable2 = true) => [(Array.isArray(input3.available) || $report(_exceptionable2, {
|
|
78
|
+
path: _path2 + ".available",
|
|
79
|
+
expected: "Array<string>",
|
|
80
|
+
value: input3.available
|
|
81
|
+
})) && input3.available.map((elem, _index1) => "string" === typeof elem || $report(_exceptionable2, {
|
|
82
|
+
path: _path2 + ".available[" + _index1 + "]",
|
|
83
|
+
expected: "string",
|
|
84
|
+
value: elem
|
|
85
|
+
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
86
|
+
path: _path2 + ".available",
|
|
87
|
+
expected: "Array<string>",
|
|
88
|
+
value: input3.available
|
|
89
|
+
})].every((flag) => flag);
|
|
90
|
+
return ("object" === typeof input2 && null !== input2 || $report(true, {
|
|
91
|
+
path: _path + "",
|
|
92
|
+
expected: "TermdbIsoformAvailabilityResponse",
|
|
93
|
+
value: input2
|
|
94
|
+
})) && $vo0(input2, _path + "", true) || $report(true, {
|
|
95
|
+
path: _path + "",
|
|
96
|
+
expected: "TermdbIsoformAvailabilityResponse",
|
|
97
|
+
value: input2
|
|
98
|
+
});
|
|
99
|
+
})(input, "$input", true);
|
|
100
|
+
}
|
|
101
|
+
const success = 0 === errors.length;
|
|
102
|
+
return {
|
|
103
|
+
success,
|
|
104
|
+
errors,
|
|
105
|
+
data: success ? input : void 0
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
export {
|
|
110
|
+
TermdbIsoformAvailabilityPayload,
|
|
111
|
+
validTermdbIsoformAvailabilityRequest,
|
|
112
|
+
validTermdbIsoformAvailabilityResponse
|
|
113
|
+
};
|