@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 2.0.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 +30 -0
- package/.turbo/turbo-test.log +20 -0
- package/CHANGELOG.md +247 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +12 -0
- package/dist/index.mjs +13 -0
- package/dist/tengo/lib/calculate-export-specs.lib.tengo +576 -0
- 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.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/format.el +43 -0
- package/package.json +21 -0
- package/scripts/build-static.mjs +4 -0
- package/src/aggregate-by-clonotype-key.tpl.tengo +65 -0
- package/src/calculate-export-specs.lib.tengo +576 -0
- package/src/calculate-preset-info.tpl.tengo +74 -0
- package/src/list-presets.tpl.tengo +26 -0
- package/src/main.tpl.tengo +159 -0
- package/src/mixcr-analyze.tpl.tengo +171 -0
- package/src/mixcr-export.tpl.tengo +77 -0
- package/src/prerun.tpl.tengo +70 -0
- package/src/process.tpl.tengo +337 -0
- package/src/test/columns-calculate.tpl.tengo +16 -0
- package/src/test/columns.test.tpl.tengo +28 -0
- package/src/test/columns.test.ts +146 -0
- package/tsconfig.json +15 -0
- package/vitest.config.mts +10 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
|
|
2
|
+
> @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@2.0.0 build /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow
|
|
3
|
+
> rm -rf dist && pl-tengo check && pl-tengo build
|
|
4
|
+
|
|
5
|
+
Processing "src/aggregate-by-clonotype-key.tpl.tengo"...
|
|
6
|
+
Processing "src/calculate-export-specs.lib.tengo"...
|
|
7
|
+
Processing "src/calculate-preset-info.tpl.tengo"...
|
|
8
|
+
Processing "src/list-presets.tpl.tengo"...
|
|
9
|
+
Processing "src/main.tpl.tengo"...
|
|
10
|
+
Processing "src/mixcr-analyze.tpl.tengo"...
|
|
11
|
+
Processing "src/mixcr-export.tpl.tengo"...
|
|
12
|
+
Processing "src/prerun.tpl.tengo"...
|
|
13
|
+
Processing "src/process.tpl.tengo"...
|
|
14
|
+
Processing "src/test/columns-calculate.tpl.tengo"...
|
|
15
|
+
Processing "src/test/columns.test.tpl.tengo"...
|
|
16
|
+
No syntax errors found.
|
|
17
|
+
info: Compiling 'dist'...
|
|
18
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/lib/calculate-export-specs.lib.tengo
|
|
19
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/aggregate-by-clonotype-key.plj.gz
|
|
20
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/calculate-preset-info.plj.gz
|
|
21
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/list-presets.plj.gz
|
|
22
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/mixcr-analyze.plj.gz
|
|
23
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/mixcr-export.plj.gz
|
|
24
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/prerun.plj.gz
|
|
25
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/process.plj.gz
|
|
26
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/test.columns-calculate.plj.gz
|
|
27
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/test.columns.test.plj.gz
|
|
28
|
+
info: - writing /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow/dist/tengo/tpl/main.plj.gz
|
|
29
|
+
info:
|
|
30
|
+
info: Template Pack build done.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
> @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@2.0.0 test /home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow
|
|
3
|
+
> vitest
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
[1m[7m[36m RUN [39m[27m[22m [36mv2.1.8 [39m[90m/home/runner/work/mixcr-clonotyping-2/mixcr-clonotyping-2/workflow[39m
|
|
7
|
+
|
|
8
|
+
[32m✓[39m src/test/columns.test.ts [2m([22m[2m6 tests[22m[2m)[22m[33m 48242[2mms[22m[39m
|
|
9
|
+
[33m[2m✓[22m[39m checking preset for 'milab-human-dna-xcr-7genes-multiplex' [33m11740[2mms[22m[39m
|
|
10
|
+
[33m[2m✓[22m[39m checking preset for '10x-sc-xcr-vdj' [33m7636[2mms[22m[39m
|
|
11
|
+
[33m[2m✓[22m[39m checking preset for 'cellecta-human-rna-xcr-umi-drivermap-…' [33m7348[2mms[22m[39m
|
|
12
|
+
[33m[2m✓[22m[39m checking preset for 'takara-human-rna-bcr-umi-smartseq' [33m7318[2mms[22m[39m
|
|
13
|
+
[33m[2m✓[22m[39m checking preset for 'rna-seq' [33m7099[2mms[22m[39m
|
|
14
|
+
[33m[2m✓[22m[39m checking preset for 'generic-single-cell-gex' [33m7100[2mms[22m[39m
|
|
15
|
+
|
|
16
|
+
[2m Test Files [22m [1m[32m1 passed[39m[22m[90m (1)[39m
|
|
17
|
+
[2m Tests [22m [1m[32m6 passed[39m[22m[90m (6)[39m
|
|
18
|
+
[2m Start at [22m 16:45:52
|
|
19
|
+
[2m Duration [22m 48.98s[2m (transform 48ms, setup 0ms, collect 509ms, tests 48.24s, environment 0ms, prepare 63ms)[22m
|
|
20
|
+
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
# @platforma-open/milaboratories.mixcr-clonotyping.workflow
|
|
2
|
+
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- f3e6573: First build of MiXCR Clonotyping 2
|
|
8
|
+
- clonotypeKey based output
|
|
9
|
+
|
|
10
|
+
## 1.15.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 5ca4eb7: Check if custom library json file gzipped or not
|
|
15
|
+
- a4dc2aa: Columns annotation for descrete filtering
|
|
16
|
+
|
|
17
|
+
## 1.14.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- b049d9d: SDK upgrade to fix sporadic validation errors in workflow execution
|
|
22
|
+
|
|
23
|
+
## 1.14.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- c6b6860: library added to processColumns in precess tpl
|
|
28
|
+
|
|
29
|
+
## 1.13.0
|
|
30
|
+
|
|
31
|
+
### Minor Changes
|
|
32
|
+
|
|
33
|
+
- 95a3ac2: Migration to AggregateV2 API
|
|
34
|
+
|
|
35
|
+
## 1.12.0
|
|
36
|
+
|
|
37
|
+
### Minor Changes
|
|
38
|
+
|
|
39
|
+
- db3cc0a: Custom reference library from library builder block or file
|
|
40
|
+
|
|
41
|
+
## 1.11.0
|
|
42
|
+
|
|
43
|
+
### Minor Changes
|
|
44
|
+
|
|
45
|
+
- 53900ff: productive feature bug correction
|
|
46
|
+
|
|
47
|
+
## 1.10.0
|
|
48
|
+
|
|
49
|
+
### Minor Changes
|
|
50
|
+
|
|
51
|
+
- 8652c07: new columns added
|
|
52
|
+
|
|
53
|
+
## 1.9.8
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- 9454329: Update ui-vue to 1.21.21, model to 1.21.20
|
|
58
|
+
|
|
59
|
+
## 1.9.7
|
|
60
|
+
|
|
61
|
+
### Patch Changes
|
|
62
|
+
|
|
63
|
+
- e1fe8bf: revert exec braces
|
|
64
|
+
|
|
65
|
+
## 1.9.6
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- a6f9198: wf: escape braces or else backend will try to eval these expressions and fail with error
|
|
70
|
+
|
|
71
|
+
## 1.9.5
|
|
72
|
+
|
|
73
|
+
### Patch Changes
|
|
74
|
+
|
|
75
|
+
- 02b681a: use PlChartStackedBar component
|
|
76
|
+
|
|
77
|
+
## 1.9.4
|
|
78
|
+
|
|
79
|
+
### Patch Changes
|
|
80
|
+
|
|
81
|
+
- 2fbd0c8: Update workflow-sdk to new version (better deduplication and recovery)
|
|
82
|
+
|
|
83
|
+
## 1.9.3
|
|
84
|
+
|
|
85
|
+
### Patch Changes
|
|
86
|
+
|
|
87
|
+
- b2bf6b4: Fix for presets undefined assemlingFeature (i.e. rna-seq)
|
|
88
|
+
|
|
89
|
+
## 1.9.2
|
|
90
|
+
|
|
91
|
+
### Patch Changes
|
|
92
|
+
|
|
93
|
+
- 87757bd: SDK upgrade
|
|
94
|
+
|
|
95
|
+
## 1.9.1
|
|
96
|
+
|
|
97
|
+
### Patch Changes
|
|
98
|
+
|
|
99
|
+
- 54155d9: SDK upgrade
|
|
100
|
+
- 54155d9: Export clns column label correction
|
|
101
|
+
|
|
102
|
+
## 1.9.0
|
|
103
|
+
|
|
104
|
+
### Minor Changes
|
|
105
|
+
|
|
106
|
+
- 9ccb1fd: Support of trace annotations; SDK upgrade
|
|
107
|
+
|
|
108
|
+
## 1.8.2
|
|
109
|
+
|
|
110
|
+
### Patch Changes
|
|
111
|
+
|
|
112
|
+
- 1f25d8e: Output colums ordering. SDK upgrade, preset list fixes.
|
|
113
|
+
|
|
114
|
+
## 1.8.1
|
|
115
|
+
|
|
116
|
+
### Patch Changes
|
|
117
|
+
|
|
118
|
+
- af5b969: Fix for blinking dropdowns, align reports are now loaded as soon as possible, migration to new SDK.
|
|
119
|
+
|
|
120
|
+
## 1.8.0
|
|
121
|
+
|
|
122
|
+
### Minor Changes
|
|
123
|
+
|
|
124
|
+
- e6fb4f5: Fasta input support. Major SDK upgrade.
|
|
125
|
+
|
|
126
|
+
## 1.7.0
|
|
127
|
+
|
|
128
|
+
### Minor Changes
|
|
129
|
+
|
|
130
|
+
- fddc283: - Cache MiXCR results for 48h
|
|
131
|
+
- Migrate to new pfconv params & fix columns
|
|
132
|
+
|
|
133
|
+
## 1.6.2
|
|
134
|
+
|
|
135
|
+
### Patch Changes
|
|
136
|
+
|
|
137
|
+
- 204e8ff: Fix alphabet annotation
|
|
138
|
+
|
|
139
|
+
## 1.6.1
|
|
140
|
+
|
|
141
|
+
### Patch Changes
|
|
142
|
+
|
|
143
|
+
- 87eb0db: WF SDK Upgrade, PFrames export fix
|
|
144
|
+
- dc4c8c7: SDK upgrade
|
|
145
|
+
|
|
146
|
+
## 1.6.0
|
|
147
|
+
|
|
148
|
+
### Minor Changes
|
|
149
|
+
|
|
150
|
+
- 6ac0c86: "pl7.app/table/visibility" & "pl7.app/table/orderPriority" annotations added to export columns
|
|
151
|
+
- abd805e: Fix for export table columns for single-cell results
|
|
152
|
+
|
|
153
|
+
### Patch Changes
|
|
154
|
+
|
|
155
|
+
- 6ac0c86: Fix for dense annotation
|
|
156
|
+
|
|
157
|
+
## 1.5.1
|
|
158
|
+
|
|
159
|
+
### Patch Changes
|
|
160
|
+
|
|
161
|
+
- 6c574ab: SDK upgrade
|
|
162
|
+
|
|
163
|
+
## 1.5.0
|
|
164
|
+
|
|
165
|
+
### Minor Changes
|
|
166
|
+
|
|
167
|
+
- ba1094c: Multilate fastq support.
|
|
168
|
+
|
|
169
|
+
## 1.4.1
|
|
170
|
+
|
|
171
|
+
### Patch Changes
|
|
172
|
+
|
|
173
|
+
- 4e79c1d: Preset file support & SDK upgrade
|
|
174
|
+
|
|
175
|
+
## 1.4.0
|
|
176
|
+
|
|
177
|
+
### Minor Changes
|
|
178
|
+
|
|
179
|
+
- 5238326: Now block exports \*.assembledCells.clns for presets where cell assembly is applied to the data
|
|
180
|
+
|
|
181
|
+
### Patch Changes
|
|
182
|
+
|
|
183
|
+
- 5238326: SDK upgrade
|
|
184
|
+
|
|
185
|
+
## 1.3.0
|
|
186
|
+
|
|
187
|
+
### Minor Changes
|
|
188
|
+
|
|
189
|
+
- 50f6bae: mixcr software upgrade, new version should allocate 85% of available memory in container environment
|
|
190
|
+
|
|
191
|
+
### Patch Changes
|
|
192
|
+
|
|
193
|
+
- 11af733: workflow: bump wf, fix paths on windows in workdir lib
|
|
194
|
+
- 797f5bf: all preset-export / -list mixcr commands moved to ui execution queue to prevent blocking of initial execution setup and subsequent online deduplication
|
|
195
|
+
|
|
196
|
+
## 1.2.1
|
|
197
|
+
|
|
198
|
+
### Patch Changes
|
|
199
|
+
|
|
200
|
+
- 9a99a0d: SDK upgrade
|
|
201
|
+
- 9a99a0d: fixes error when using presets with floating assembling features
|
|
202
|
+
|
|
203
|
+
## 1.2.0
|
|
204
|
+
|
|
205
|
+
### Minor Changes
|
|
206
|
+
|
|
207
|
+
- ffe5dc0: - Update Platforma SDK
|
|
208
|
+
- Fix block deduplication bug
|
|
209
|
+
- Better styles for the table component
|
|
210
|
+
- Fix annotation of export counts
|
|
211
|
+
- Fix chain axis nature (scaleCompatible)
|
|
212
|
+
|
|
213
|
+
## 1.1.4
|
|
214
|
+
|
|
215
|
+
### Patch Changes
|
|
216
|
+
|
|
217
|
+
- 4b70a39: chore: fix software.mixcr pkg name
|
|
218
|
+
|
|
219
|
+
## 1.1.3
|
|
220
|
+
|
|
221
|
+
### Patch Changes
|
|
222
|
+
|
|
223
|
+
- be26771: Pass MI_LICENSE secret to mixcr commands
|
|
224
|
+
|
|
225
|
+
## 1.1.2
|
|
226
|
+
|
|
227
|
+
### Patch Changes
|
|
228
|
+
|
|
229
|
+
- Logo update
|
|
230
|
+
|
|
231
|
+
## 1.1.1
|
|
232
|
+
|
|
233
|
+
### Patch Changes
|
|
234
|
+
|
|
235
|
+
- 99b1a7f: SDK upgrade & secrets API usage in workflow
|
|
236
|
+
|
|
237
|
+
## 1.1.0
|
|
238
|
+
|
|
239
|
+
### Minor Changes
|
|
240
|
+
|
|
241
|
+
- db5308b: migration to pl-open
|
|
242
|
+
|
|
243
|
+
## 1.0.1
|
|
244
|
+
|
|
245
|
+
### Patch Changes
|
|
246
|
+
|
|
247
|
+
- 3a4df33: Initial release
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare type TemplateFromFile = { readonly type: "from-file"; readonly path: string; };
|
|
2
|
+
declare type TplName = "aggregate-by-clonotype-key" | "calculate-preset-info" | "list-presets" | "mixcr-analyze" | "mixcr-export" | "prerun" | "process" | "test.columns-calculate" | "test.columns.test" | "main";
|
|
3
|
+
declare const Templates: Record<TplName, TemplateFromFile>;
|
|
4
|
+
export { Templates };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
module.exports = { Templates: {
|
|
2
|
+
'aggregate-by-clonotype-key': { type: 'from-file', path: require.resolve('./tengo/tpl/aggregate-by-clonotype-key.plj.gz') },
|
|
3
|
+
'calculate-preset-info': { type: 'from-file', path: require.resolve('./tengo/tpl/calculate-preset-info.plj.gz') },
|
|
4
|
+
'list-presets': { type: 'from-file', path: require.resolve('./tengo/tpl/list-presets.plj.gz') },
|
|
5
|
+
'mixcr-analyze': { type: 'from-file', path: require.resolve('./tengo/tpl/mixcr-analyze.plj.gz') },
|
|
6
|
+
'mixcr-export': { type: 'from-file', path: require.resolve('./tengo/tpl/mixcr-export.plj.gz') },
|
|
7
|
+
'prerun': { type: 'from-file', path: require.resolve('./tengo/tpl/prerun.plj.gz') },
|
|
8
|
+
'process': { type: 'from-file', path: require.resolve('./tengo/tpl/process.plj.gz') },
|
|
9
|
+
'test.columns-calculate': { type: 'from-file', path: require.resolve('./tengo/tpl/test.columns-calculate.plj.gz') },
|
|
10
|
+
'test.columns.test': { type: 'from-file', path: require.resolve('./tengo/tpl/test.columns.test.plj.gz') },
|
|
11
|
+
'main': { type: 'from-file', path: require.resolve('./tengo/tpl/main.plj.gz') }
|
|
12
|
+
}};
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { resolve } from 'node:path';
|
|
2
|
+
export const Templates = {
|
|
3
|
+
'aggregate-by-clonotype-key': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/aggregate-by-clonotype-key.plj.gz') },
|
|
4
|
+
'calculate-preset-info': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/calculate-preset-info.plj.gz') },
|
|
5
|
+
'list-presets': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/list-presets.plj.gz') },
|
|
6
|
+
'mixcr-analyze': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/mixcr-analyze.plj.gz') },
|
|
7
|
+
'mixcr-export': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/mixcr-export.plj.gz') },
|
|
8
|
+
'prerun': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/prerun.plj.gz') },
|
|
9
|
+
'process': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/process.plj.gz') },
|
|
10
|
+
'test.columns-calculate': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/test.columns-calculate.plj.gz') },
|
|
11
|
+
'test.columns.test': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/test.columns.test.plj.gz') },
|
|
12
|
+
'main': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/main.plj.gz') }
|
|
13
|
+
};
|