@platforma-open/milaboratories.top-antibodies.workflow 1.13.0 → 1.13.2

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.13.0 build /home/runner/work/antibody-tcr-lead-selection/antibody-tcr-lead-selection/workflow
3
+ > @platforma-open/milaboratories.top-antibodies.workflow@1.13.2 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,19 @@
1
1
  # @platforma-open/milaboratories.top-antibodies.workflow
2
2
 
3
+ ## 1.13.2
4
+
5
+ ### Patch Changes
6
+
7
+ - e17b19a: Remove unused `saveStdoutContent` calls, update sdk
8
+
9
+ ## 1.13.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 9245274: Fix filter issues related to data types
14
+ - Updated dependencies [9245274]
15
+ - @platforma-open/milaboratories.top-antibodies.sample-clonotypes@1.6.1
16
+
3
17
  ## 1.13.0
4
18
 
5
19
  ### 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.13.0",
3
+ "version": "1.13.2",
4
4
  "type": "module",
5
5
  "description": "Block Workflow",
6
6
  "dependencies": {
7
- "@platforma-sdk/workflow-tengo": "^5.5.5",
7
+ "@platforma-sdk/workflow-tengo": "^5.6.3",
8
8
  "@platforma-open/milaboratories.software-anarci": "^0.0.3",
9
+ "@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "1.6.1",
9
10
  "@platforma-open/milaboratories.top-antibodies.spectratype": "1.6.0",
10
11
  "@platforma-open/milaboratories.top-antibodies.umap": "1.1.4",
11
12
  "@platforma-open/milaboratories.top-antibodies.assembling-fasta": "1.1.0",
12
- "@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "1.6.0",
13
13
  "@platforma-open/milaboratories.top-antibodies.anarci-kabat": "1.1.0"
14
14
  },
15
15
  "devDependencies": {
16
- "@platforma-sdk/tengo-builder": "^2.3.3",
17
- "@platforma-sdk/test": "^1.45.6",
16
+ "@platforma-sdk/tengo-builder": "^2.3.13",
17
+ "@platforma-sdk/test": "^1.46.0",
18
18
  "vitest": "^2.1.8"
19
19
  },
20
20
  "scripts": {
@@ -32,7 +32,6 @@ self.body(func(inputs) {
32
32
 
33
33
  cmd = cmd.saveFile("assembling.fasta").
34
34
  printErrStreamToStdout().
35
- saveStdoutContent().
36
35
  cache(24 * 60 * 60 * 1000).
37
36
  run()
38
37
 
@@ -52,7 +51,6 @@ self.body(func(inputs) {
52
51
  }
53
52
  anarciBuilder = anarciBuilder.
54
53
  printErrStreamToStdout().
55
- saveStdoutContent().
56
54
  cache(24 * 60 * 60 * 1000).
57
55
  run()
58
56
 
@@ -77,7 +75,6 @@ self.body(func(inputs) {
77
75
  arg("--out_tsv").arg("kabat.tsv").
78
76
  saveFile("kabat.tsv").
79
77
  printErrStreamToStdout().
80
- saveStdoutContent().
81
78
  cache(24 * 60 * 60 * 1000).
82
79
  run()
83
80
 
@@ -32,7 +32,6 @@ self.body(func(inputs) {
32
32
  arg("--filter-map").arg(string(json.encode(filterMap))).
33
33
  saveFile("filteredClonotypes.csv").
34
34
  printErrStreamToStdout().
35
- saveStdoutContent().
36
35
  cache(24 * 60 * 60 * 1000).
37
36
  run()
38
37
 
@@ -63,7 +62,6 @@ self.body(func(inputs) {
63
62
  arg("--out").arg("sampledClonotypes_top.csv").
64
63
  saveFile("sampledClonotypes_top.csv").
65
64
  printErrStreamToStdout().
66
- saveStdoutContent().
67
65
  cache(24 * 60 * 60 * 1000).
68
66
  run()
69
67
 
@@ -143,6 +143,7 @@ wf.body(func(args) {
143
143
  addedCols = true
144
144
  // Store reference value and filter type associated to this column
145
145
  filterMap["Filter_" + string(i)] = filter.filter
146
+ filterMap["Filter_" + string(i)]["valueType"] = columns.getSpec(filter.value.column).valueType
146
147
 
147
148
  // If column does not have main anchor axis we have to include theirs
148
149
  colsSpec := columns.getSpec(filter.value.column)
@@ -352,7 +353,6 @@ wf.body(func(args) {
352
353
  saveFile("spectratype.tsv").
353
354
  saveFile("vj_usage.tsv").
354
355
  printErrStreamToStdout().
355
- saveStdoutContent().
356
356
  cache(24 * 60 * 60 * 1000).
357
357
  run()
358
358