@platforma-open/milaboratories.sequence-properties.model 1.1.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/.oxfmtrc.json +3 -0
- package/.oxlintrc.json +3 -0
- package/.turbo/turbo-build.log +28 -0
- package/.turbo/turbo-check.log +19 -0
- package/CHANGELOG.md +35 -0
- package/dist/bundle.js +10015 -0
- package/dist/bundle.js.map +1 -0
- package/dist/dataModel.cjs +7 -0
- package/dist/dataModel.cjs.map +1 -0
- package/dist/dataModel.d.ts +8 -0
- package/dist/dataModel.d.ts.map +1 -0
- package/dist/dataModel.js +7 -0
- package/dist/dataModel.js.map +1 -0
- package/dist/index.cjs +52 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +1713 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +50 -0
- package/dist/index.js.map +1 -0
- package/dist/model.json +1 -0
- package/dist/types.d.ts +22 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +35 -0
- package/src/dataModel.ts +6 -0
- package/src/index.ts +103 -0
- package/src/types.ts +29 -0
- package/tsconfig.json +10 -0
package/.oxfmtrc.json
ADDED
package/.oxlintrc.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
WARN Issue while reading "/home/runner/work/sequence-properties/sequence-properties/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
|
+
|
|
3
|
+
> @platforma-open/milaboratories.sequence-properties.model@1.1.1 build /home/runner/work/sequence-properties/sequence-properties/model
|
|
4
|
+
> ts-builder build --target block-model && block-tools build-model
|
|
5
|
+
|
|
6
|
+
Building block-model project...
|
|
7
|
+
↳ cli.mjs -c /home/runner/work/sequence-properties/sequence-properties/node_modules/.pnpm/@milaboratories+ts-builder@1.3.2_@types+node@25.3.2_rollup@4.53.3_vue@3.5.25_typescript@5.6.3__yaml@2.8.1/node_modules/@milaboratories/ts-builder/dist/configs/rolldown.block-model.config.js
|
|
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>/dataModel.d.ts.map asset │ size: 0.14 kB
|
|
11
|
+
[log] <DIR>/types.d.ts.map asset │ size: 0.31 kB
|
|
12
|
+
[log] <DIR>/dataModel.js.map asset │ size: 0.49 kB
|
|
13
|
+
[log] <DIR>/index.d.ts.map asset │ size: 1.96 kB
|
|
14
|
+
[log] <DIR>/index.js.map asset │ size: 5.91 kB
|
|
15
|
+
[log] <DIR>/dataModel.d.ts chunk │ size: 0.29 kB
|
|
16
|
+
[log] <DIR>/dataModel.js chunk │ size: 0.32 kB
|
|
17
|
+
[log] <DIR>/types.d.ts chunk │ size: 0.71 kB
|
|
18
|
+
[log] <DIR>/index.js chunk │ size: 2.46 kB
|
|
19
|
+
[log] <DIR>/index.d.ts chunk │ size: 56.81 kB
|
|
20
|
+
[log] <DIR>/dataModel.cjs.map asset │ size: 0.53 kB
|
|
21
|
+
[log] <DIR>/index.cjs.map asset │ size: 6.04 kB
|
|
22
|
+
[log] <DIR>/dataModel.cjs chunk │ size: 0.35 kB
|
|
23
|
+
[log] <DIR>/index.cjs chunk │ size: 2.69 kB
|
|
24
|
+
[log] <DIR>/bundle.js.map asset │ size: 675.99 kB
|
|
25
|
+
[log] <DIR>/bundle.js chunk │ size: 343.70 kB
|
|
26
|
+
[log]
|
|
27
|
+
[success] rolldown v1.0.0-rc.16 Finished in 5.42 s
|
|
28
|
+
Build completed successfully
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
WARN Issue while reading "/home/runner/work/sequence-properties/sequence-properties/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
|
+
|
|
3
|
+
> @platforma-open/milaboratories.sequence-properties.model@1.1.1 check /home/runner/work/sequence-properties/sequence-properties/model
|
|
4
|
+
> ts-builder check --target block-model
|
|
5
|
+
|
|
6
|
+
↳ tsc --noEmit --project ./tsconfig.json --customConditions ,
|
|
7
|
+
Linting project...
|
|
8
|
+
↳ oxlint --config /home/runner/work/sequence-properties/sequence-properties/model/.oxlintrc.json --deny-warnings
|
|
9
|
+
Found 0 warnings and 0 errors.
|
|
10
|
+
Finished in 8ms on 3 files with 90 rules using 2 threads.
|
|
11
|
+
Linting completed successfully
|
|
12
|
+
Checking formatting...
|
|
13
|
+
↳ oxfmt --check --config /home/runner/work/sequence-properties/sequence-properties/model/.oxfmtrc.json
|
|
14
|
+
Checking formatting...
|
|
15
|
+
|
|
16
|
+
All matched files use the correct format.
|
|
17
|
+
Finished in 252ms on 7 files using 2 threads.
|
|
18
|
+
Format check completed successfully
|
|
19
|
+
All checks passed!
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @platforma-open/MiLaboratories.sequence-properties.model
|
|
2
|
+
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bb07f98: Rename all package scopes from `MiLaboratories.sequence-properties` to `milaboratories.sequence-properties`. npm registry rejects new package names with uppercase letters, which blocked the first publish. Lowercase form aligns with the existing `@platforma-open/milaboratories.*` convention used by sibling blocks. Also corrects the GitHub URL in the block manifest to point at the actual repo (`platforma-open/sequence-properties`).
|
|
8
|
+
|
|
9
|
+
## 1.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 1059d80: Initial release of the Sequence Properties block.
|
|
14
|
+
|
|
15
|
+
Computes physico-chemical properties (charge, pI, GRAVY, MW, extinction
|
|
16
|
+
coefficients, instability and aliphatic indices, aromaticity, AA composition)
|
|
17
|
+
for peptide and antibody/TCR sequence inputs. The block auto-detects modality
|
|
18
|
+
from the input axes and degrades gracefully on partial coverage: CDR3
|
|
19
|
+
properties when CDR3 is present, full-chain VH/VL when all seven IMGT regions
|
|
20
|
+
are exported, and Fv-level properties when both chains reconstruct. An R11c
|
|
21
|
+
heuristic flags likely VHH/single-domain inputs.
|
|
22
|
+
|
|
23
|
+
Property math uses BioPython ProtParam + IsoelectricPoint with IPC 2.0 pKa
|
|
24
|
+
overrides — peptide set for peptide and CDR3 inputs, protein set for full
|
|
25
|
+
VH/VL. Charge and pI round to 3 decimals at the output boundary; combined
|
|
26
|
+
with sorted Tengo iteration, canonical-JSON resources, and sorted TSV writes,
|
|
27
|
+
output bytes hash identically across runs so the block joins the dedup path.
|
|
28
|
+
|
|
29
|
+
M3 validation is locked down by `tests/unit/test_m3_validation.py` (38 cases:
|
|
30
|
+
≥5 VH pI, ≥2 VL pI, Fv on ≥2 paired chains, ≥10 CDR-H3 charge, ≥3 CDR-L3
|
|
31
|
+
charge, ≥3 VH aliphatic) against pinned IPC 2.0 webserver values and an
|
|
32
|
+
independent Henderson-Hasselbalch reference.
|
|
33
|
+
|
|
34
|
+
Block title is the static "Sequence Properties"; the selected input dataset
|
|
35
|
+
appears as the subtitle.
|