@platforma-open/milaboratories.mixcr-shm-trees.workflow 3.9.0 → 3.11.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/tables-aggregation.lib.tengo +1 -0
- 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 +5 -5
- package/src/mixcr-export.tpl.tengo +6 -3
- package/src/mixcr-shm-trees.tpl.tengo +6 -3
- package/src/soi.tpl.tengo +2 -0
- package/src/tables-aggregation.lib.tengo +1 -0
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.11.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
|
@@ -70,6 +70,7 @@ ensureUniqueness := func(inputTsv, params, ...aggParams) {
|
|
|
70
70
|
writeFile("wf.json", json.encode(aggregationWorkflow)).
|
|
71
71
|
arg("input.tsv").addFile("input.tsv", inputTsv).
|
|
72
72
|
arg("output.tsv").saveFile("output.tsv").
|
|
73
|
+
env("CIDADHOC", "123").
|
|
73
74
|
run()
|
|
74
75
|
|
|
75
76
|
return aggregateCmd.getFile("output.tsv")
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.mixcr-shm-trees.workflow",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Tengo-based template",
|
|
6
6
|
"//": {
|
|
7
7
|
"build": "node ./scripts/build-static.mjs src/pfconv_params.json src/pfconv_params.lib.tengo && rm -rf dist && pl-tengo check && pl-tengo build && ./create_tags.sh"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@platforma-sdk/workflow-tengo": "^4.
|
|
10
|
+
"@platforma-sdk/workflow-tengo": "^4.7.1"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@platforma-sdk/tengo-builder": "^2.1.
|
|
13
|
+
"@platforma-sdk/tengo-builder": "^2.1.7",
|
|
14
14
|
"@platforma-open/milaboratories.software-mixcr": "4.7.0-165-develop",
|
|
15
15
|
"@platforma-open/milaboratories.software-mitool": "2.3.1-5-main",
|
|
16
16
|
"@platforma-open/milaboratories.software-ptransform": "^1.4.3",
|
|
17
|
-
"@platforma-sdk/test": "
|
|
17
|
+
"@platforma-sdk/test": "1.31.13",
|
|
18
18
|
"vitest": "~2.1.8",
|
|
19
|
-
"typescript": "~5.
|
|
19
|
+
"typescript": "~5.5.4"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "rm -rf dist && pl-tengo check && pl-tengo build",
|
|
@@ -49,7 +49,8 @@ self.body(func(inputs) {
|
|
|
49
49
|
inLightQueue().
|
|
50
50
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
51
51
|
software(mixcrSw).
|
|
52
|
-
arg("exportShmTrees")
|
|
52
|
+
arg("exportShmTrees").
|
|
53
|
+
env("CIDADHOC", "123")
|
|
53
54
|
|
|
54
55
|
addLibraryFile(shmTreeExportsCmdBuilder)
|
|
55
56
|
|
|
@@ -75,7 +76,8 @@ self.body(func(inputs) {
|
|
|
75
76
|
inLightQueue().
|
|
76
77
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
77
78
|
software(mixcrSw).
|
|
78
|
-
arg("exportShmTreesWithNodes")
|
|
79
|
+
arg("exportShmTreesWithNodes").
|
|
80
|
+
env("CIDADHOC", "123")
|
|
79
81
|
|
|
80
82
|
addLibraryFile(shmTreeNodesExportsCmdBuilder)
|
|
81
83
|
|
|
@@ -103,7 +105,8 @@ self.body(func(inputs) {
|
|
|
103
105
|
software(mixcrSw).
|
|
104
106
|
arg("exportShmTreesWithNodes").
|
|
105
107
|
// don't export nodes that don't have clones
|
|
106
|
-
arg("--only-observed")
|
|
108
|
+
arg("--only-observed").
|
|
109
|
+
env("CIDADHOC", "123")
|
|
107
110
|
|
|
108
111
|
addLibraryFile(shmTreeNodesWithClonesExportsCmdBuilder)
|
|
109
112
|
|
|
@@ -63,7 +63,8 @@ self.body(func(inputs) {
|
|
|
63
63
|
arg("--json-report").arg("report.json").
|
|
64
64
|
saveFile("report.json").
|
|
65
65
|
// template specifies where result files will be written
|
|
66
|
-
arg("--output-template").arg("alleles/{file_name}.clns")
|
|
66
|
+
arg("--output-template").arg("alleles/{file_name}.clns").
|
|
67
|
+
env("CIDADHOC", "123")
|
|
67
68
|
|
|
68
69
|
addLibraryFile(allelesCmdBuilder)
|
|
69
70
|
|
|
@@ -133,7 +134,8 @@ self.body(func(inputs) {
|
|
|
133
134
|
arg(downsamplingParam).
|
|
134
135
|
arg("clones.clns").
|
|
135
136
|
addFile("clones.clns", entry.afterAlleles).
|
|
136
|
-
saveFile("clones.downsampled.clns")
|
|
137
|
+
saveFile("clones.downsampled.clns").
|
|
138
|
+
env("CIDADHOC", "123")
|
|
137
139
|
addLibraryFile(downsamplingCmdBuilder)
|
|
138
140
|
downsamplingCmd := downsamplingCmdBuilder.run()
|
|
139
141
|
|
|
@@ -156,7 +158,8 @@ self.body(func(inputs) {
|
|
|
156
158
|
arg("--report").arg("report.txt").
|
|
157
159
|
saveFile("report.txt").
|
|
158
160
|
arg("--json-report").arg("report.json").
|
|
159
|
-
saveFile("report.json")
|
|
161
|
+
saveFile("report.json").
|
|
162
|
+
env("CIDADHOC", "123")
|
|
160
163
|
|
|
161
164
|
if !is_undefined(globalParams.seed) {
|
|
162
165
|
shmTreesCmdBuilder.env("SEED", globalParams.seed)
|
package/src/soi.tpl.tengo
CHANGED
|
@@ -141,6 +141,7 @@ self.body(func(inputs) {
|
|
|
141
141
|
arg("--target-column").arg("query").
|
|
142
142
|
arg("input.tsv").addFile("input.tsv", inputTsv).
|
|
143
143
|
arg("output.tsv").saveFile("output.tsv").
|
|
144
|
+
env("CIDADHOC", "123").
|
|
144
145
|
run()
|
|
145
146
|
|
|
146
147
|
resultCsv := searchCmd.getFile("output.tsv")
|
|
@@ -182,6 +183,7 @@ self.body(func(inputs) {
|
|
|
182
183
|
writeFile("wf.json", json.encode(aggregationWorkflow)).
|
|
183
184
|
arg("input.tsv").addFile("input.tsv", resultCsv).
|
|
184
185
|
arg("output.tsv").saveFile("output.tsv").
|
|
186
|
+
env("CIDADHOC", "123").
|
|
185
187
|
run()
|
|
186
188
|
|
|
187
189
|
aggregatedCsv := aggregateCmd.getFile("output.tsv")
|
|
@@ -70,6 +70,7 @@ ensureUniqueness := func(inputTsv, params, ...aggParams) {
|
|
|
70
70
|
writeFile("wf.json", json.encode(aggregationWorkflow)).
|
|
71
71
|
arg("input.tsv").addFile("input.tsv", inputTsv).
|
|
72
72
|
arg("output.tsv").saveFile("output.tsv").
|
|
73
|
+
env("CIDADHOC", "123").
|
|
73
74
|
run()
|
|
74
75
|
|
|
75
76
|
return aggregateCmd.getFile("output.tsv")
|