@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 3.11.0 → 3.12.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.11.0 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
3
+ > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.12.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.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a5e2509: sdk update
8
+
9
+ ## 3.12.0
10
+
11
+ ### Minor Changes
12
+
13
+ - fa19090: clonotypeLabel in export raw data
14
+
3
15
  ## 3.11.0
4
16
 
5
17
  ### Minor 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.11.0",
3
+ "version": "3.12.1",
4
4
  "description": "Tengo-based template",
5
5
  "dependencies": {
6
- "@platforma-sdk/workflow-tengo": "^5.4.4",
6
+ "@platforma-sdk/workflow-tengo": "^5.5.9",
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.3.2",
12
- "@platforma-sdk/test": "^1.44.21",
11
+ "@platforma-sdk/tengo-builder": "^2.3.3",
12
+ "@platforma-sdk/test": "^1.45.9",
13
13
  "vitest": "~2.1.9",
14
14
  "typescript": "~5.6.3"
15
15
  },
@@ -8,6 +8,7 @@ slices := import("@platforma-sdk/workflow-tengo:slices")
8
8
  assets := import("@platforma-sdk/workflow-tengo:assets")
9
9
  exec := import("@platforma-sdk/workflow-tengo:exec")
10
10
  pt := import("@platforma-sdk/workflow-tengo:pt")
11
+ clonotypeLabel := import(":clonotype-label")
11
12
 
12
13
  json := import("json")
13
14
 
@@ -133,6 +134,9 @@ self.body(func(inputs) {
133
134
  hashKeyDerivationExpressionPt(clonotypeKeyColumns).alias("clonotypeKey")
134
135
  )
135
136
 
137
+ // Generate clonotypeLabel (C-XXXXX or C-XXXXX-RANK) from clonotypeKey for bulk data
138
+ dfMain = clonotypeLabel.addClonotypeLabelColumnsPt(dfMain, "clonotypeKey", "clonotypeLabel", pt)
139
+
136
140
  dfMain.save("output.tsv")
137
141
  ptablerResultMain := wfMain.run()
138
142
  processedTsv := ptablerResultMain.getFile("output.tsv")