@platforma-open/milaboratories.mixcr-shm-trees.workflow 2.3.2 → 2.3.3

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @platforma-open/milaboratories.mixcr-shm-trees.workflow
2
2
 
3
+ ## 2.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 96a150e: Random seed added to main analysis routine
8
+
3
9
  ## 2.3.2
4
10
 
5
11
  ### Patch Changes
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": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "type": "module",
5
5
  "description": "Tengo-based template",
6
6
  "//": {
@@ -3,6 +3,7 @@ pConstants := import("@platforma-sdk/workflow-tengo:pframes.constants")
3
3
  ll := import("@platforma-sdk/workflow-tengo:ll")
4
4
  assets := import("@platforma-sdk/workflow-tengo:assets")
5
5
  exec := import("@platforma-sdk/workflow-tengo:exec")
6
+ times := import("times")
6
7
 
7
8
  json := import("json")
8
9
 
@@ -32,11 +33,13 @@ self.body(func(inputs) {
32
33
 
33
34
  ll.assert(!is_undefined(datasetTypes), "datasetTypes undefined")
34
35
 
36
+ seed := times.time_string(times.now())
37
+
35
38
  allelesCmdBuilder := exec.builder().
36
39
  printErrStreamToStdout().
37
40
  secret("MI_LICENSE", "MI_LICENSE").
38
41
  env("MI_PROGRESS_PREFIX", progressPrefix).
39
- env("SEED", "1").
42
+ env("SEED", seed).
40
43
  software(mixcrSw).
41
44
  arg("findAlleles").
42
45
  arg("--report").arg("report.txt").
@@ -120,6 +123,7 @@ self.body(func(inputs) {
120
123
  printErrStreamToStdout().
121
124
  secret("MI_LICENSE", "MI_LICENSE").
122
125
  env("MI_PROGRESS_PREFIX", progressPrefix).
126
+ env("SEED", seed).
123
127
  software(mixcrSw).
124
128
  arg("findShmTrees").
125
129
  arg("--report").arg("report.txt").
@@ -147,7 +151,6 @@ self.body(func(inputs) {
147
151
  printErrStreamToStdout().
148
152
  inLightQueue().
149
153
  secret("MI_LICENSE", "MI_LICENSE").
150
- env("MI_PROGRESS_PREFIX", progressPrefix).
151
154
  software(mixcrSw).
152
155
  arg("exportShmTrees")
153
156
 
@@ -169,7 +172,6 @@ self.body(func(inputs) {
169
172
  printErrStreamToStdout().
170
173
  inLightQueue().
171
174
  secret("MI_LICENSE", "MI_LICENSE").
172
- env("MI_PROGRESS_PREFIX", progressPrefix).
173
175
  software(mixcrSw).
174
176
  arg("exportShmTreesWithNodes")
175
177