@platforma-open/milaboratories.top-antibodies.workflow 1.15.0 → 1.15.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.
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/work/antibody-tcr-lead-selection/antibody-tcr-lead-selection/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.top-antibodies.workflow@1.15.0 build /home/runner/work/antibody-tcr-lead-selection/antibody-tcr-lead-selection/workflow
3
+ > @platforma-open/milaboratories.top-antibodies.workflow@1.15.1 build /home/runner/work/antibody-tcr-lead-selection/antibody-tcr-lead-selection/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  Processing "src/assembling-fasta.tpl.tengo"...
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @platforma-open/milaboratories.top-antibodies.workflow
2
2
 
3
+ ## 1.15.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 5619236: Fix missing input related error
8
+ - Updated dependencies [5619236]
9
+ - @platforma-open/milaboratories.top-antibodies.sample-clonotypes@1.7.2
10
+
3
11
  ## 1.15.0
4
12
 
5
13
  ### Minor Changes
Binary file
Binary file
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.top-antibodies.workflow",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "type": "module",
5
5
  "description": "Block Workflow",
6
6
  "dependencies": {
7
7
  "@platforma-sdk/workflow-tengo": "^5.6.6",
8
8
  "@platforma-open/milaboratories.software-anarci": "^0.0.3",
9
- "@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "1.7.1",
10
- "@platforma-open/milaboratories.top-antibodies.umap": "1.2.1",
9
+ "@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "1.7.2",
11
10
  "@platforma-open/milaboratories.top-antibodies.spectratype": "1.7.1",
11
+ "@platforma-open/milaboratories.top-antibodies.umap": "1.2.1",
12
12
  "@platforma-open/milaboratories.top-antibodies.assembling-fasta": "1.2.1",
13
13
  "@platforma-open/milaboratories.top-antibodies.anarci-kabat": "1.2.1"
14
14
  },
15
15
  "devDependencies": {
16
- "@platforma-sdk/tengo-builder": "^2.4.0",
17
- "@platforma-sdk/test": "^1.47.3",
16
+ "@platforma-sdk/tengo-builder": "^2.4.1",
17
+ "@platforma-sdk/test": "^1.47.6",
18
18
  "vitest": "^2.1.8"
19
19
  },
20
20
  "scripts": {
@@ -136,7 +136,8 @@ wf.body(func(args) {
136
136
  addedCols := false
137
137
  if len(args.filters) > 0 {
138
138
  for i, filter in args.filters {
139
- if filter.value != undefined {
139
+ // we check for value presence and for actual pcolumn (cases where upstream block is deleted)
140
+ if filter.value != undefined && columns.getColumn(filter.value.column).spec != undefined {
140
141
  // Columns added here might also be in ranking list, so we add default IDs
141
142
  cloneTable.add(columns.getColumn(filter.value.column),
142
143
  {header: "Filter_" + string(i), id: "filter_" + string(i)})
@@ -164,7 +165,8 @@ wf.body(func(args) {
164
165
  validRanks := false
165
166
  if len(args.rankingOrder) > 0 {
166
167
  for i, col in args.rankingOrder {
167
- if col.value != undefined {
168
+ // we check for value presence and for actual pcolumn (cases where upstream block is deleted)
169
+ if col.value != undefined && columns.getColumn(col.value.column).spec != undefined {
168
170
  validRanks = true
169
171
  cloneTable.add(columns.getColumn(col.value.column), {header: "Col" + string(i)})
170
172
  addedCols = true