@platforma-open/milaboratories.mixcr-shm-trees.workflow 3.8.1 → 3.9.0

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-shm-trees/mixcr-shm-trees/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.mixcr-shm-trees.workflow@3.8.1 build /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow
3
+ > @platforma-open/milaboratories.mixcr-shm-trees.workflow@3.9.0 build /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  Processing "src/export-settings.lib.tengo"...
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @platforma-open/milaboratories.mixcr-shm-trees.workflow
2
2
 
3
+ ## 3.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1ba80e7: Fix for basket feature with new axis structure
8
+
3
9
  ## 3.8.1
4
10
 
5
11
  ### Patch Changes
@@ -717,6 +717,21 @@ shmTreeNodesWithClones := func(dataDescription, donorColumn) {
717
717
  }
718
718
  })
719
719
 
720
+ cmdArgs = append(cmdArgs, "-cloneId")
721
+ axes = append(axes, {
722
+ column: "cloneId",
723
+ id: "clone-id",
724
+
725
+
726
+ filterOutRegex: "^$",
727
+ spec: {
728
+ name: "pl7.app/vdj/cloneId",
729
+ type: "Long",
730
+
731
+ annotations: addTableAnnotations(70000, true, "Clone id", {})
732
+ }
733
+ })
734
+
720
735
  cmdArgs = append(cmdArgs, "-fileName")
721
736
  axes = append(axes, {
722
737
  column: "fileName",
@@ -735,21 +750,6 @@ shmTreeNodesWithClones := func(dataDescription, donorColumn) {
735
750
  })
736
751
  })
737
752
 
738
- cmdArgs = append(cmdArgs, "-cloneId")
739
- axes = append(axes, {
740
- column: "cloneId",
741
- id: "clone-id",
742
-
743
-
744
- filterOutRegex: "^$",
745
- spec: {
746
- name: "pl7.app/vdj/cloneId",
747
- type: "Long",
748
-
749
- annotations: addTableAnnotations(70000, true, "Clone id", {})
750
- }
751
- })
752
-
753
753
  if dataDescription.hasCellTags {
754
754
  cmdArgs = append(cmdArgs, "-uniqueTagCount", "Cell")
755
755
  columns = append(columns, {
Binary file
Binary file
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": "3.8.1",
3
+ "version": "3.9.0",
4
4
  "type": "module",
5
5
  "description": "Tengo-based template",
6
6
  "//": {
@@ -717,6 +717,21 @@ shmTreeNodesWithClones := func(dataDescription, donorColumn) {
717
717
  }
718
718
  })
719
719
 
720
+ cmdArgs = append(cmdArgs, "-cloneId")
721
+ axes = append(axes, {
722
+ column: "cloneId",
723
+ id: "clone-id",
724
+ // allowNA: true,
725
+ // filtering off records without clones because we are not interested in them here
726
+ filterOutRegex: "^$",
727
+ spec: {
728
+ name: "pl7.app/vdj/cloneId",
729
+ type: "Long",
730
+ // TODO domain with blockId
731
+ annotations: addTableAnnotations(70000, true, "Clone id", {})
732
+ }
733
+ })
734
+
720
735
  cmdArgs = append(cmdArgs, "-fileName")
721
736
  axes = append(axes, {
722
737
  column: "fileName",
@@ -735,21 +750,6 @@ shmTreeNodesWithClones := func(dataDescription, donorColumn) {
735
750
  })
736
751
  })
737
752
 
738
- cmdArgs = append(cmdArgs, "-cloneId")
739
- axes = append(axes, {
740
- column: "cloneId",
741
- id: "clone-id",
742
- // allowNA: true,
743
- // filtering off records without clones because we are not interested in them here
744
- filterOutRegex: "^$",
745
- spec: {
746
- name: "pl7.app/vdj/cloneId",
747
- type: "Long",
748
- // TODO domain with blockId
749
- annotations: addTableAnnotations(70000, true, "Clone id", {})
750
- }
751
- })
752
-
753
753
  if dataDescription.hasCellTags {
754
754
  cmdArgs = append(cmdArgs, "-uniqueTagCount", "Cell")
755
755
  columns = append(columns, {