@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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/tengo/lib/export-settings.lib.tengo +15 -15
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/mixcr-export.plj.gz +0 -0
- package/dist/tengo/tpl/mixcr-shm-trees.plj.gz +0 -0
- package/dist/tengo/tpl/process.plj.gz +0 -0
- package/dist/tengo/tpl/request-library.plj.gz +0 -0
- package/dist/tengo/tpl/soi.plj.gz +0 -0
- package/package.json +1 -1
- package/src/export-settings.lib.tengo +15 -15
package/.turbo/turbo-build.log
CHANGED
|
@@ -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.
|
|
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
|
@@ -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
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -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, {
|