@platforma-open/milaboratories.mixcr-shm-trees.workflow 2.3.1 → 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,17 @@
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
+
9
+ ## 2.3.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 7efd2ac: Allele seed changed
14
+
3
15
  ## 2.3.1
4
16
 
5
17
  ### 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.1",
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,10 +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).
42
+ env("SEED", seed).
39
43
  software(mixcrSw).
40
44
  arg("findAlleles").
41
45
  arg("--report").arg("report.txt").
@@ -119,6 +123,7 @@ self.body(func(inputs) {
119
123
  printErrStreamToStdout().
120
124
  secret("MI_LICENSE", "MI_LICENSE").
121
125
  env("MI_PROGRESS_PREFIX", progressPrefix).
126
+ env("SEED", seed).
122
127
  software(mixcrSw).
123
128
  arg("findShmTrees").
124
129
  arg("--report").arg("report.txt").
@@ -146,7 +151,6 @@ self.body(func(inputs) {
146
151
  printErrStreamToStdout().
147
152
  inLightQueue().
148
153
  secret("MI_LICENSE", "MI_LICENSE").
149
- env("MI_PROGRESS_PREFIX", progressPrefix).
150
154
  software(mixcrSw).
151
155
  arg("exportShmTrees")
152
156
 
@@ -168,7 +172,6 @@ self.body(func(inputs) {
168
172
  printErrStreamToStdout().
169
173
  inLightQueue().
170
174
  secret("MI_LICENSE", "MI_LICENSE").
171
- env("MI_PROGRESS_PREFIX", progressPrefix).
172
175
  software(mixcrSw).
173
176
  arg("exportShmTreesWithNodes")
174
177