@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 2.20.5 → 2.20.7

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@2.20.5 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
3
+ > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@2.20.7 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
+ ## 2.20.7
4
+
5
+ ### Patch Changes
6
+
7
+ - da51497: Fix for missing C gene and null clonotype key as a result
8
+
9
+ ## 2.20.6
10
+
11
+ ### Patch Changes
12
+
13
+ - 47f13d9: Fix for multiple clonotype label columns in SC analysis
14
+
3
15
  ## 2.20.5
4
16
 
5
17
  ### Patch Changes
@@ -747,7 +747,11 @@ calculateExportSpecs := func(presetSpecForBack, blockId) {
747
747
  [ "-topChains" ]
748
748
  ]
749
749
 
750
- columnsSpecPerClonotypeNoAggregates += [ clonotypeLabelColumn ]
750
+ if isSingleCell {
751
+ columnsSpecPerClonotypeAggregates += [ clonotypeLabelColumn ]
752
+ } else {
753
+ columnsSpecPerClonotypeNoAggregates += [ clonotypeLabelColumn ]
754
+ }
751
755
 
752
756
 
753
757
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.mixcr-clonotyping-2.workflow",
3
- "version": "2.20.5",
3
+ "version": "2.20.7",
4
4
  "description": "Tengo-based template",
5
5
  "dependencies": {
6
6
  "@platforma-sdk/workflow-tengo": "^4.8.0",
7
- "@platforma-open/milaboratories.software-mixcr": "4.7.0-183-develop"
7
+ "@platforma-open/milaboratories.software-mixcr": "4.7.0-185-develop"
8
8
  },
9
9
  "devDependencies": {
10
10
  "@platforma-sdk/tengo-builder": "^2.1.10",
11
- "@platforma-sdk/test": "^1.34.6",
11
+ "@platforma-sdk/test": "^1.34.14",
12
12
  "vitest": "~2.1.9",
13
13
  "typescript": "~5.5.4"
14
14
  },
@@ -747,7 +747,11 @@ calculateExportSpecs := func(presetSpecForBack, blockId) {
747
747
  [ "-topChains" ]
748
748
  ]
749
749
 
750
- columnsSpecPerClonotypeNoAggregates += [ clonotypeLabelColumn ]
750
+ if isSingleCell {
751
+ columnsSpecPerClonotypeAggregates += [ clonotypeLabelColumn ]
752
+ } else {
753
+ columnsSpecPerClonotypeNoAggregates += [ clonotypeLabelColumn ]
754
+ }
751
755
 
752
756
  // All columns are added
753
757
 
@@ -32,8 +32,8 @@ self.body(func(inputs) {
32
32
 
33
33
  hashKeyDerivationExpressionPt := func(sourceColumns) {
34
34
  return pt.concatStr(
35
- slices.map(sourceColumns, func(colName) { return pt.col(colName) }),
36
- {delimiter: "#"}
35
+ slices.map(sourceColumns, func(colName) { return pt.col(colName).fillNull("") }),
36
+ { delimiter: "#" }
37
37
  ).hash("sha256", "base64_alphanumeric", 120)
38
38
  }
39
39