@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow 1.13.1 → 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/mixcr-amplicon-alignment/mixcr-amplicon-alignment/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow@1.13.1 build /home/runner/work/mixcr-amplicon-alignment/mixcr-amplicon-alignment/workflow
3
+ > @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow@1.13.2 build /home/runner/work/mixcr-amplicon-alignment/mixcr-amplicon-alignment/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  Processing "src/aggregate-by-clonotype-key.tpl.tengo"...
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow
2
2
 
3
+ ## 1.13.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f4d0ddb: Fix issue after update
8
+
3
9
  ## 1.13.1
4
10
 
5
11
  ### Patch Changes
@@ -187,7 +187,7 @@ calculateExportSpecs := func(presetSpecForBack, blockId) {
187
187
  spec: {
188
188
  name: "pl7.app/vdj/readFractionMean",
189
189
  valueType: "Double",
190
- annotations: a(87130, true, {
190
+ annotations: a(87130, false, {
191
191
  "pl7.app/min": "0",
192
192
  "pl7.app/max": "1",
193
193
  "pl7.app/isAbundance": "true",
@@ -268,7 +268,7 @@ calculateExportSpecs := func(presetSpecForBack, blockId) {
268
268
  spec: {
269
269
  name: "pl7.app/vdj/uniqueMoleculeFractionMean",
270
270
  valueType: "Double",
271
- annotations: a(87130, true, {
271
+ annotations: a(87130, false, {
272
272
  "pl7.app/min": "0",
273
273
  "pl7.app/max": "1",
274
274
  "pl7.app/isAbundance": "true",
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow",
3
- "version": "1.13.1",
3
+ "version": "1.13.2",
4
4
  "description": "MiXCR Amplicon Alignment Workflow",
5
5
  "type": "module",
6
6
  "dependencies": {
7
- "@platforma-sdk/workflow-tengo": "^5.6.4",
7
+ "@platforma-sdk/workflow-tengo": "^5.6.6",
8
8
  "@platforma-open/milaboratories.software-mixcr": "4.7.0-254-develop",
9
9
  "@platforma-open/milaboratories.software-repseqio": "^2.5.0-13-master"
10
10
  },
11
11
  "devDependencies": {
12
- "@platforma-sdk/tengo-builder": "^2.3.14",
13
- "@platforma-sdk/test": "^1.46.3",
12
+ "@platforma-sdk/tengo-builder": "^2.4.1",
13
+ "@platforma-sdk/test": "^1.47.6",
14
14
  "vitest": "^2.1.8"
15
15
  },
16
16
  "scripts": {
@@ -187,7 +187,7 @@ calculateExportSpecs := func(presetSpecForBack, blockId) {
187
187
  spec: {
188
188
  name: "pl7.app/vdj/readFractionMean",
189
189
  valueType: "Double",
190
- annotations: a(87130, true, {
190
+ annotations: a(87130, false, {
191
191
  "pl7.app/min": "0",
192
192
  "pl7.app/max": "1",
193
193
  "pl7.app/isAbundance": "true",
@@ -268,7 +268,7 @@ calculateExportSpecs := func(presetSpecForBack, blockId) {
268
268
  spec: {
269
269
  name: "pl7.app/vdj/uniqueMoleculeFractionMean",
270
270
  valueType: "Double",
271
- annotations: a(87130, true, {
271
+ annotations: a(87130, false, {
272
272
  "pl7.app/min": "0",
273
273
  "pl7.app/max": "1",
274
274
  "pl7.app/isAbundance": "true",
@@ -171,6 +171,7 @@ self.body(func(inputs) {
171
171
  mixcrCmdBuilder.saveFile("result.qc.json")
172
172
 
173
173
  mixcrCmdBuilder.saveFile(clnsFileName)
174
+ mixcrCmdBuilder.saveStdoutStream()
174
175
 
175
176
  for report in reports {
176
177
  mixcrCmdBuilder.saveFile(report.fileJson)
@@ -36,7 +36,6 @@ self.body(func(inputs) {
36
36
  mem("12GB").
37
37
  cpu(2).
38
38
  printErrStreamToStdout().
39
- dontSaveStdoutOrStderr().
40
39
  software(mixcrSw).
41
40
  secret("MI_LICENSE", "MI_LICENSE").
42
41
  arg("exportClones").
@@ -120,6 +120,7 @@ self.body(func(inputs) {
120
120
  arg("referenceLibrary.json").
121
121
  addFile("vGene.fasta", vGeneFasta).
122
122
  addFile("jGene.fasta", jGeneFasta).
123
+ saveStdoutStream().
123
124
  cpu(1).mem("4GB")
124
125
 
125
126
  repseqioDebugResult := repseqioDebugCmd.run()