@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 3.7.1 → 3.8.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 +12 -0
- package/dist/tengo/lib/calculate-export-specs.lib.tengo +12 -2
- 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/export-report.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 +3 -3
- package/src/calculate-export-specs.lib.tengo +12 -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@3.
|
|
3
|
+
> @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.8.0 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.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 48c8ea4: core features fixes
|
|
8
|
+
|
|
9
|
+
## 3.7.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 4c42a7a: Fix [blocks/mixcr-clonotyping] in the end of calculations results table starts to blink
|
|
14
|
+
|
|
3
15
|
## 3.7.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -64,13 +64,23 @@ assemblingFeatureInfo := func(assemblingFeature) {
|
|
|
64
64
|
productiveFeature = splittedFeature1[0] + "_TO_FR4(0,-1)"
|
|
65
65
|
coreVFeature = "{"+splittedFeature1[0]+"Begin:FR3End}"
|
|
66
66
|
coreJFeature = "FR4"
|
|
67
|
+
} else if splittedFeature1[0] == "CDR3" {
|
|
68
|
+
productiveFeature = assemblingFeature
|
|
67
69
|
} else {
|
|
68
70
|
productiveFeature = assemblingFeature
|
|
69
71
|
coreVFeature = "{"+splittedFeature1[0]+"Begin:FR3End}"
|
|
70
72
|
}
|
|
71
73
|
} else if len(splittedFeature2) == 2 {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
+
if splittedFeature2[0] == "{CDR3Begin" {
|
|
75
|
+
productiveFeature = assemblingFeature
|
|
76
|
+
} else {
|
|
77
|
+
productiveFeature = assemblingFeature
|
|
78
|
+
coreVFeature = "{"+splittedFeature2[0]+":FR3End}"
|
|
79
|
+
}
|
|
80
|
+
if splittedFeature2[1] == "FR4End}" {
|
|
81
|
+
coreJFeature = "FR4"
|
|
82
|
+
productiveFeature = splittedFeature2[0] + ":" + text.split(splittedFeature2[1], "}")[0] + "(-1)}"
|
|
83
|
+
}
|
|
74
84
|
}
|
|
75
85
|
} else {
|
|
76
86
|
productiveFeature = "CDR3"
|
|
Binary file
|
|
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.mixcr-clonotyping-2.workflow",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0",
|
|
4
4
|
"description": "Tengo-based template",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@platforma-sdk/workflow-tengo": "^5.3.2",
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@milaboratories/ts-configs": "^1.0.6",
|
|
11
|
-
"@platforma-sdk/tengo-builder": "^2.2.
|
|
12
|
-
"@platforma-sdk/test": "^1.
|
|
11
|
+
"@platforma-sdk/tengo-builder": "^2.2.4",
|
|
12
|
+
"@platforma-sdk/test": "^1.44.0",
|
|
13
13
|
"vitest": "~2.1.9",
|
|
14
14
|
"typescript": "~5.6.3"
|
|
15
15
|
},
|
|
@@ -64,13 +64,23 @@ assemblingFeatureInfo := func(assemblingFeature) {
|
|
|
64
64
|
productiveFeature = splittedFeature1[0] + "_TO_FR4(0,-1)"
|
|
65
65
|
coreVFeature = "{"+splittedFeature1[0]+"Begin:FR3End}"
|
|
66
66
|
coreJFeature = "FR4"
|
|
67
|
+
} else if splittedFeature1[0] == "CDR3" {
|
|
68
|
+
productiveFeature = assemblingFeature
|
|
67
69
|
} else {
|
|
68
70
|
productiveFeature = assemblingFeature
|
|
69
71
|
coreVFeature = "{"+splittedFeature1[0]+"Begin:FR3End}"
|
|
70
72
|
}
|
|
71
73
|
} else if len(splittedFeature2) == 2 {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
+
if splittedFeature2[0] == "{CDR3Begin" {
|
|
75
|
+
productiveFeature = assemblingFeature
|
|
76
|
+
} else {
|
|
77
|
+
productiveFeature = assemblingFeature
|
|
78
|
+
coreVFeature = "{"+splittedFeature2[0]+":FR3End}"
|
|
79
|
+
}
|
|
80
|
+
if splittedFeature2[1] == "FR4End}" {
|
|
81
|
+
coreJFeature = "FR4"
|
|
82
|
+
productiveFeature = splittedFeature2[0] + ":" + text.split(splittedFeature2[1], "}")[0] + "(-1)}"
|
|
83
|
+
}
|
|
74
84
|
}
|
|
75
85
|
} else {
|
|
76
86
|
productiveFeature = "CDR3"
|