@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 3.6.1 → 3.7.1

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@3.6.1 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
3
+ > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.7.1 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,17 @@
1
1
  # @platforma-open/milaboratories.mixcr-clonotyping.workflow
2
2
 
3
+ ## 3.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - c337aa2: Fix [sdk/ui] Broken error propagation: block errors are not showing anymore
8
+
9
+ ## 3.7.0
10
+
11
+ ### Minor Changes
12
+
13
+ - dde56a2: Raw results export
14
+
3
15
  ## 3.6.1
4
16
 
5
17
  ### Patch Changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.mixcr-clonotyping-2.workflow",
3
- "version": "3.6.1",
3
+ "version": "3.7.1",
4
4
  "description": "Tengo-based template",
5
5
  "dependencies": {
6
- "@platforma-sdk/workflow-tengo": "^5.2.0",
6
+ "@platforma-sdk/workflow-tengo": "^5.3.2",
7
7
  "@platforma-open/milaboratories.software-mixcr": "4.7.0-233-develop"
8
8
  },
9
9
  "devDependencies": {
10
10
  "@milaboratories/ts-configs": "^1.0.6",
11
- "@platforma-sdk/tengo-builder": "^2.1.18",
12
- "@platforma-sdk/test": "^1.42.47",
11
+ "@platforma-sdk/tengo-builder": "^2.2.3",
12
+ "@platforma-sdk/test": "^1.43.27",
13
13
  "vitest": "~2.1.9",
14
14
  "typescript": "~5.6.3"
15
15
  },
@@ -166,6 +166,7 @@ wf.body(func(args) {
166
166
  logs: runMixcr.output("logs.data"),
167
167
  clns: runMixcr.output("clns.data"),
168
168
  clonotypes: pframes.exportFrame(runMixcr.output("clonotypes")),
169
+ clonotypeTables: pframes.exportFrame(runMixcr.output("clonotypeTables")),
169
170
  fileImports: smart.createMapResource(maps.mapValues(fileImports, func(im) {
170
171
  return im.handle
171
172
  })),
@@ -177,7 +178,7 @@ wf.body(func(args) {
177
178
  if !is_undefined(libraryImportHandle) {
178
179
  outputs.libraryImportHandle = libraryImportHandle
179
180
  }
180
-
181
+
181
182
  qcReportTable := runMixcr.output("qcReportTable")
182
183
 
183
184
  outputs.qcReportTable = pframes.exportFrame(qcReportTable)
@@ -319,6 +319,7 @@ self.body(func(inputs) {
319
319
  return schema
320
320
  }
321
321
 
322
+ clonotypeTables := pframes.pFrameBuilder()
322
323
  resultsToCache := {}
323
324
 
324
325
  for chain in chains {
@@ -335,7 +336,8 @@ self.body(func(inputs) {
335
336
  kind: "PColumn",
336
337
  name: "mixcr.com/clonotypeTable",
337
338
  domain: {
338
- "pl7.app/vdj/clonotypingRunId": blockId
339
+ "pl7.app/vdj/clonotypingRunId": blockId,
340
+ "pl7.app/vdj/chain": chain
339
341
  },
340
342
  valueType: "File"
341
343
  },
@@ -455,6 +457,7 @@ self.body(func(inputs) {
455
457
  }
456
458
 
457
459
  resultsToCache["clonotypeTable/" + chain] = exportResults.outputData("clonotypeTable")
460
+ clonotypeTables.add(chain, exportResults.outputSpec("clonotypeTable"), exportResults.outputData("clonotypeTable"))
458
461
 
459
462
  aggregateByCloneKey := pframes.processColumn(
460
463
  exportResults.output("clonotypeTable"),
@@ -714,6 +717,8 @@ self.body(func(inputs) {
714
717
 
715
718
  "resultsToCache": resultsToCache,
716
719
 
720
+ clonotypeTables: clonotypeTables.build(),
721
+
717
722
  clonotypes: clonotypes.build(),
718
723
  qcReportTable: qcReportTable.output("qcReportTable")
719
724
  }