@platforma-open/milaboratories.3d-structure-prediction.workflow 1.0.7 → 1.0.8
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 +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/tengo/lib/structure-cols-conv.lib.tengo +5 -1
- package/dist/tengo/tpl/build-pdbs-map.plj.gz +0 -0
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/predict-batch.plj.gz +0 -0
- package/dist/tengo/tpl/prerun.plj.gz +0 -0
- package/package.json +2 -2
- package/src/structure-cols-conv.lib.tengo +5 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/3d-structure-prediction/3d-structure-prediction/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.3d-structure-prediction.workflow@1.0.
|
|
3
|
+
> @platforma-open/milaboratories.3d-structure-prediction.workflow@1.0.8 build /home/runner/work/3d-structure-prediction/3d-structure-prediction/workflow
|
|
4
4
|
> shx rm -rf dist && pl-tengo check && pl-tengo build
|
|
5
5
|
|
|
6
6
|
info: Skipping unknown file type: wf.test.ts
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.3d-structure-prediction.workflow
|
|
2
2
|
|
|
3
|
+
## 1.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 374ef16: Annotate the `pdbsMap` output column with `pl7.app/isAnchor: "true"` so downstream consumers can surface it as a primary dataset in `PlDatasetSelector` instead of `PlDropdownRef`. No behavior change for existing consumers.
|
|
8
|
+
|
|
3
9
|
## 1.0.7
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -140,6 +140,9 @@ getConfidenceColumns := func(isPaired) {
|
|
|
140
140
|
|
|
141
141
|
|
|
142
142
|
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
143
146
|
getPdbsMapSpec := func() {
|
|
144
147
|
return {
|
|
145
148
|
kind: "PColumn",
|
|
@@ -149,7 +152,8 @@ getPdbsMapSpec := func() {
|
|
|
149
152
|
axesSpec: [],
|
|
150
153
|
annotations: {
|
|
151
154
|
"pl7.app/label": "Predicted PDB structure",
|
|
152
|
-
"pl7.app/structure/numbering": "imgt"
|
|
155
|
+
"pl7.app/structure/numbering": "imgt",
|
|
156
|
+
"pl7.app/isAnchor": "true"
|
|
153
157
|
}
|
|
154
158
|
}
|
|
155
159
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.3d-structure-prediction.workflow",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Block Workflow",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@platforma-open/milaboratories.3d-structure-prediction.software": "1.0.6"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@platforma-sdk/tengo-builder": "3.0.
|
|
11
|
+
"@platforma-sdk/tengo-builder": "3.0.4",
|
|
12
12
|
"@platforma-sdk/test": "1.77.5"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
@@ -140,6 +140,9 @@ getConfidenceColumns := func(isPaired) {
|
|
|
140
140
|
|
|
141
141
|
// PDB ResourceMap spec — produced by the batch orchestrator (merged across
|
|
142
142
|
// batches via merge-resource-maps). Failed clonotypes have no entry.
|
|
143
|
+
// `pl7.app/isAnchor` lets downstream consumers (e.g. 3D Structure-Based
|
|
144
|
+
// Liabilities) surface this column in a `PlDatasetSelector` instead of a
|
|
145
|
+
// plain `PlDropdownRef`, with subset filters auto-attached.
|
|
143
146
|
getPdbsMapSpec := func() {
|
|
144
147
|
return {
|
|
145
148
|
kind: "PColumn",
|
|
@@ -149,7 +152,8 @@ getPdbsMapSpec := func() {
|
|
|
149
152
|
axesSpec: [],
|
|
150
153
|
annotations: {
|
|
151
154
|
"pl7.app/label": "Predicted PDB structure",
|
|
152
|
-
"pl7.app/structure/numbering": "imgt"
|
|
155
|
+
"pl7.app/structure/numbering": "imgt",
|
|
156
|
+
"pl7.app/isAnchor": "true"
|
|
153
157
|
}
|
|
154
158
|
}
|
|
155
159
|
}
|