@platforma-open/milaboratories.mixcr-shm-trees.workflow 4.2.2 → 4.2.4

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-shm-trees/mixcr-shm-trees/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.mixcr-shm-trees.workflow@4.2.2 build /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow
3
+ > @platforma-open/milaboratories.mixcr-shm-trees.workflow@4.2.4 build /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow
4
4
  > shx rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  Processing "src/export-settings.lib.tengo"...
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @platforma-open/milaboratories.mixcr-shm-trees.workflow
2
2
 
3
+ ## 4.2.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 17e9000: Use --use-local-temp for findAlleles and findShmTrees to place temporary files in the working directory instead of /tmp, preventing silent hangs when system temp runs out of disk space
8
+
9
+ ## 4.2.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 0f0582f: Upgrade MiXCR to 4.7.0-297-develop
14
+
15
+ - Fix duplicate RootInfo crash (`RootInfos should be uniq in all trees`) in findShmTrees with legacy data
16
+
3
17
  ## 4.2.2
4
18
 
5
19
  ### Patch Changes
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.mixcr-shm-trees.workflow",
3
- "version": "4.2.2",
3
+ "version": "4.2.4",
4
4
  "type": "module",
5
5
  "description": "Tengo-based template",
6
6
  "//": {
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "devDependencies": {
13
13
  "@platforma-sdk/tengo-builder": "^2.3.3",
14
- "@platforma-open/milaboratories.software-mixcr": "4.7.0-292-develop",
14
+ "@platforma-open/milaboratories.software-mixcr": "4.7.0-298-develop",
15
15
  "@platforma-open/milaboratories.software-mitool": "2.3.1-24-main",
16
16
  "@platforma-open/milaboratories.software-ptransform": "^1.6.6",
17
17
  "@platforma-sdk/test": "^1.45.11",
@@ -1,4 +1,4 @@
1
- //tengo:hash_override 33125CD9-6F67-46B3-AA68-0FCD825B51BA
1
+ //tengo:hash_override C034616E-1E9D-4A20-B27F-5F6D87655360
2
2
 
3
3
  self := import("@platforma-sdk/workflow-tengo:tpl")
4
4
  pConstants := import("@platforma-sdk/workflow-tengo:pframes.constants")
@@ -61,6 +61,7 @@ self.body(func(inputs) {
61
61
  // env("SEED", seed).
62
62
  software(mixcrSw).
63
63
  arg("findAlleles").
64
+ arg("--use-local-temp").
64
65
  arg("--report").arg("report.txt").
65
66
  saveFile("report.txt").
66
67
  arg("--json-report").arg("report.json").
@@ -179,6 +180,7 @@ self.body(func(inputs) {
179
180
  env("MI_PROGRESS_PREFIX", progressPrefix).
180
181
  software(mixcrSw).
181
182
  arg("findShmTrees").
183
+ arg("--use-local-temp").
182
184
  arg("--report").arg("report.txt").
183
185
  saveFile("report.txt").
184
186
  arg("--json-report").arg("report.json").