@platforma-open/milaboratories.humanization-score.model 0.2.0 → 0.3.1
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/.turbo/turbo-build.log +12 -10
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +28 -0
- package/dist/bundle.js +279 -52
- package/dist/bundle.js.map +1 -1
- package/dist/index.cjs +43 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +45 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +43 -14
- package/dist/index.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +5 -4
- package/src/index.ts +72 -17
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/humanization-score/humanization-score/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.humanization-score.model@0.
|
|
3
|
+
> @platforma-open/milaboratories.humanization-score.model@0.3.1 build /home/runner/work/humanization-score/humanization-score/model
|
|
4
4
|
> ts-builder build --target block-model && block-tools build-model
|
|
5
5
|
|
|
6
6
|
Building block-model project...
|
|
7
7
|
↳ cli.mjs -c /home/runner/work/humanization-score/humanization-score/node_modules/.pnpm/@milaboratories+ts-builder@1.5.0_@types+node@24.5.2_rollup@4.55.1_vue@3.5.26_typescript@5.6.3__yaml@2.8.2/node_modules/@milaboratories/ts-builder/dist/configs/rolldown.block-model.config.js
|
|
8
|
-
[
|
|
9
|
-
|
|
10
|
-
[log] <DIR>/index.
|
|
11
|
-
[log] <DIR>/index.
|
|
12
|
-
[log] <DIR>/index.
|
|
13
|
-
[log] <DIR>/index.
|
|
14
|
-
[log] <DIR>/
|
|
15
|
-
[log] <DIR>/
|
|
8
|
+
[33m[PLUGIN_TIMINGS] Warning:[0m Your build spent significant time in plugin `rolldown-plugin-dts:generate`. See https://rolldown.rs/options/checks#plugintimings for more details.
|
|
9
|
+
|
|
10
|
+
[log] <DIR>/index.d.ts.map asset │ size: 0.33 kB
|
|
11
|
+
[log] <DIR>/index.js.map asset │ size: 6.59 kB
|
|
12
|
+
[log] <DIR>/index.js chunk │ size: 2.68 kB
|
|
13
|
+
[log] <DIR>/index.d.ts chunk │ size: 57.01 kB
|
|
14
|
+
[log] <DIR>/index.cjs.map asset │ size: 6.71 kB
|
|
15
|
+
[log] <DIR>/index.cjs chunk │ size: 2.87 kB
|
|
16
|
+
[log] <DIR>/bundle.js.map asset │ size: 711.16 kB
|
|
17
|
+
[log] <DIR>/bundle.js chunk │ size: 361.44 kB
|
|
16
18
|
[log]
|
|
17
|
-
[success] rolldown v1.0.0-rc.18 Finished in
|
|
19
|
+
[success] rolldown v1.0.0-rc.18 Finished in 3.15 s
|
|
18
20
|
Build completed successfully
|
package/.turbo/turbo-lint.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/humanization-score/humanization-score/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.humanization-score.model@0.
|
|
3
|
+
> @platforma-open/milaboratories.humanization-score.model@0.3.1 lint /home/runner/work/humanization-score/humanization-score/model
|
|
4
4
|
> eslint .
|
|
5
5
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/humanization-score/humanization-score/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.humanization-score.model@0.
|
|
3
|
+
> @platforma-open/milaboratories.humanization-score.model@0.3.1 type-check /home/runner/work/humanization-score/humanization-score/model
|
|
4
4
|
> ts-builder type-check --target block-model
|
|
5
5
|
|
|
6
6
|
↳ tsc --noEmit --project ./tsconfig.json --customConditions ,
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.humanization-score.model
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5a28f73: Give the charts a solid fill instead of the default white: the score
|
|
8
|
+
distribution histogram now renders in blue and the per-sample box plot in teal,
|
|
9
|
+
using colours from graph-maker's fixed palette. Applies to newly created blocks.
|
|
10
|
+
- 2c8b719: Remove the per-sample box plot ("By Sample") view: the `perSamplePf` /
|
|
11
|
+
`perSamplePfPcols` outputs, the `graphStateBoxplot` state and its defaults, and
|
|
12
|
+
the `/by-sample` section are gone. The score distribution histogram remains.
|
|
13
|
+
|
|
14
|
+
## 0.3.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 5c4b4f0: Initial release of the Humanization Score block.
|
|
19
|
+
|
|
20
|
+
Scores antibody sequences for humanness relative to natural human antibody
|
|
21
|
+
repertoires using the offline OASis/SwissProt databases bundled with the
|
|
22
|
+
`promb` Python runtime environment.
|
|
23
|
+
|
|
24
|
+
- **workflow**: Tengo templates that run per-clonotype humanness scoring over
|
|
25
|
+
the input dataset.
|
|
26
|
+
- **software**: Python scoring scripts (Parquet in/out) wrapping `promb`.
|
|
27
|
+
- **model**: block configuration, inputs/outputs, and result columns.
|
|
28
|
+
- **ui**: results UI with humanness score table, histogram, and sample boxplot
|
|
29
|
+
pages.
|
|
30
|
+
|
|
3
31
|
## 0.2.0
|
|
4
32
|
|
|
5
33
|
Initial release.
|