@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 2.20.6 → 2.20.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/mixcr-clonotyping/mixcr-clonotyping/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@2.20.6 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
3
+ > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@2.20.8 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  info: Skipping unknown file type: test/columns.test.ts
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @platforma-open/milaboratories.mixcr-clonotyping.workflow
2
2
 
3
+ ## 2.20.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 26b311c: - MiXCR upgrade
8
+ - fix for file lock safeguard error
9
+ - better memory management
10
+
11
+ ## 2.20.7
12
+
13
+ ### Patch Changes
14
+
15
+ - da51497: Fix for missing C gene and null clonotype key as a result
16
+
3
17
  ## 2.20.6
4
18
 
5
19
  ### Patch Changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.mixcr-clonotyping-2.workflow",
3
- "version": "2.20.6",
3
+ "version": "2.20.8",
4
4
  "description": "Tengo-based template",
5
5
  "dependencies": {
6
6
  "@platforma-sdk/workflow-tengo": "^4.8.0",
7
- "@platforma-open/milaboratories.software-mixcr": "4.7.0-183-develop"
7
+ "@platforma-open/milaboratories.software-mixcr": "4.7.0-190-develop"
8
8
  },
9
9
  "devDependencies": {
10
10
  "@platforma-sdk/tengo-builder": "^2.1.10",
11
- "@platforma-sdk/test": "^1.34.6",
11
+ "@platforma-sdk/test": "^1.34.14",
12
12
  "vitest": "~2.1.9",
13
13
  "typescript": "~5.5.4"
14
14
  },
@@ -25,7 +25,7 @@ self.body(func(inputs) {
25
25
 
26
26
  mixcrExportPresetCmdBuilder := exec.builder().
27
27
  inUiQueue().
28
- mem("1GiB").
28
+ mem("512MiB").
29
29
  software(mixcrSw).
30
30
  secret("MI_LICENSE", "MI_LICENSE").
31
31
  printErrStreamToStdout().
@@ -56,7 +56,7 @@ self.body(func(inputs) {
56
56
 
57
57
  mixcrForBackCmd := exec.builder().
58
58
  inUiQueue().
59
- mem("1GiB").
59
+ mem("512MiB").
60
60
  software(mixcrSw).
61
61
  secret("MI_LICENSE", "MI_LICENSE").
62
62
  printErrStreamToStdout().
@@ -12,11 +12,9 @@ self.defineOutputs("presets")
12
12
  mixcrSw := assets.importSoftware("@platforma-open/milaboratories.software-mixcr:memory-from-limits")
13
13
 
14
14
  self.body(func(inputs) {
15
- // ll.print("__THE_LOG__ feats.computeLimits " + feats.computeLimits)
16
- ll.print("__THE_LOG__ asdhjkajsdjasdjk")
17
15
  listPresets := exec.builder().
18
16
  inUiQueue().
19
- mem("1GiB").
17
+ mem("512MiB").
20
18
  software(mixcrSw).
21
19
  secret("MI_LICENSE", "MI_LICENSE").
22
20
  arg("listPresetSpecificationsForUI").
@@ -32,8 +32,8 @@ self.body(func(inputs) {
32
32
 
33
33
  hashKeyDerivationExpressionPt := func(sourceColumns) {
34
34
  return pt.concatStr(
35
- slices.map(sourceColumns, func(colName) { return pt.col(colName) }),
36
- {delimiter: "#"}
35
+ slices.map(sourceColumns, func(colName) { return pt.col(colName).fillNull("") }),
36
+ { delimiter: "#" }
37
37
  ).hash("sha256", "base64_alphanumeric", 120)
38
38
  }
39
39