@platforma-open/milaboratories.3d-structure-prediction.workflow 1.0.6 → 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.
@@ -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.6 build /home/runner/work/3d-structure-prediction/3d-structure-prediction/workflow
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,19 @@
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
+
9
+ ## 1.0.7
10
+
11
+ ### Patch Changes
12
+
13
+ - 49b6d30: Update workflow version
14
+ - Updated dependencies [49b6d30]
15
+ - @platforma-open/milaboratories.3d-structure-prediction.software@1.0.6
16
+
3
17
  ## 1.0.6
4
18
 
5
19
  ### 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
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.3d-structure-prediction.workflow",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Block Workflow",
5
5
  "type": "module",
6
6
  "dependencies": {
7
7
  "@platforma-sdk/workflow-tengo": "5.25.0",
8
- "@platforma-open/milaboratories.3d-structure-prediction.software": "1.0.5"
8
+ "@platforma-open/milaboratories.3d-structure-prediction.software": "1.0.6"
9
9
  },
10
10
  "devDependencies": {
11
- "@platforma-sdk/tengo-builder": "3.0.1",
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
  }