@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 2.23.0 → 2.23.2
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 +12 -0
- package/dist/tengo/lib/calculate-export-specs.lib.tengo +1 -1
- package/dist/tengo/tpl/aggregate-by-clonotype-key.plj.gz +0 -0
- package/dist/tengo/tpl/calculate-preset-info.plj.gz +0 -0
- package/dist/tengo/tpl/list-presets.plj.gz +0 -0
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/mixcr-analyze.plj.gz +0 -0
- package/dist/tengo/tpl/mixcr-export.plj.gz +0 -0
- package/dist/tengo/tpl/prerun.plj.gz +0 -0
- package/dist/tengo/tpl/process-single-cell.plj.gz +0 -0
- package/dist/tengo/tpl/process.plj.gz +0 -0
- package/dist/tengo/tpl/test.columns-calculate.plj.gz +0 -0
- package/dist/tengo/tpl/test.columns.test.plj.gz +0 -0
- package/package.json +1 -1
- package/src/calculate-export-specs.lib.tengo +1 -1
- package/src/process.tpl.tengo +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -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.23.
|
|
3
|
+
> @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@2.23.2 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.23.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 81ac330: Bugfix TCR Gamma export
|
|
8
|
+
|
|
9
|
+
## 2.23.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 5fcc5ba: Updated top chains discrete values formatting in export specifications.
|
|
14
|
+
|
|
3
15
|
## 2.23.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -738,7 +738,7 @@ calculateExportSpecs := func(presetSpecForBack, blockId) {
|
|
|
738
738
|
annotations: a(orderP, false, {
|
|
739
739
|
"pl7.app/label": "Chain",
|
|
740
740
|
"pl7.app/isDiscreteFilter": "true",
|
|
741
|
-
"pl7.app/discreteValues": "
|
|
741
|
+
"pl7.app/discreteValues": string(json.encode(["TRA", "TRB", "TRG", "TRD", "IGH", "IGK", "IGL"]))
|
|
742
742
|
})
|
|
743
743
|
}
|
|
744
744
|
} ]
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -738,7 +738,7 @@ calculateExportSpecs := func(presetSpecForBack, blockId) {
|
|
|
738
738
|
annotations: a(orderP, false, {
|
|
739
739
|
"pl7.app/label": "Chain",
|
|
740
740
|
"pl7.app/isDiscreteFilter": "true",
|
|
741
|
-
"pl7.app/discreteValues": "
|
|
741
|
+
"pl7.app/discreteValues": string(json.encode(["TRA", "TRB", "TRG", "TRD", "IGH", "IGK", "IGL"]))
|
|
742
742
|
})
|
|
743
743
|
}
|
|
744
744
|
} ]
|
package/src/process.tpl.tengo
CHANGED
|
@@ -31,8 +31,8 @@ chainInfos := {
|
|
|
31
31
|
"IGLight": { mixcrFilter: "IGK,IGL", name: "IG Light", shortName: "Light" },
|
|
32
32
|
"TCRAlpha": { mixcrFilter: "TRA", name: "TCR Alpha", shortName: "Alpha" },
|
|
33
33
|
"TCRBeta": { mixcrFilter: "TRB", name: "TCR Beta", shortName: "Beta" },
|
|
34
|
-
"TCRGamma": { mixcrFilter: "
|
|
35
|
-
"TCRDelta": { mixcrFilter: "
|
|
34
|
+
"TCRGamma": { mixcrFilter: "TRG", name: "TCR Gamma", shortName: "Gamma" },
|
|
35
|
+
"TCRDelta": { mixcrFilter: "TRD", name: "TCR Delta", shortName: "Delta" }
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
// Chain with higher diversity go first
|