@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow 1.18.0 → 1.18.1
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/tpl/aggregate-by-clonotype-key.plj.gz +0 -0
- package/dist/tengo/tpl/export-report.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/process.plj.gz +0 -0
- package/dist/tengo/tpl/repseqio-library.plj.gz +0 -0
- package/package.json +4 -4
- package/src/export-report.tpl.tengo +2 -0
- package/src/mixcr-analyze.tpl.tengo +3 -1
- package/src/mixcr-export.tpl.tengo +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/mixcr-amplicon-alignment/mixcr-amplicon-alignment/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow@1.18.
|
|
3
|
+
> @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow@1.18.1 build /home/runner/work/mixcr-amplicon-alignment/mixcr-amplicon-alignment/workflow
|
|
4
4
|
> rm -rf dist && pl-tengo check && pl-tengo build
|
|
5
5
|
|
|
6
6
|
Processing "src/aggregate-by-clonotype-key.tpl.tengo"...
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow
|
|
2
2
|
|
|
3
|
+
## 1.18.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5198666: Upgrade MiXCR to 4.7.0-300-develop, add MI_LICENSE_DEBUG env, use --use-local-temp, show loading spinner while sample list loads
|
|
8
|
+
|
|
3
9
|
## 1.18.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.1",
|
|
4
4
|
"description": "MiXCR Amplicon Alignment Workflow",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@platforma-sdk/workflow-tengo": "5.8.
|
|
8
|
-
"@platforma-open/milaboratories.software-mixcr": "4.7.0-
|
|
7
|
+
"@platforma-sdk/workflow-tengo": "5.8.2",
|
|
8
|
+
"@platforma-open/milaboratories.software-mixcr": "4.7.0-300-develop",
|
|
9
9
|
"@platforma-open/milaboratories.software-repseqio": "^2.5.0-13-master",
|
|
10
10
|
"@platforma-open/milaboratories.mixcr-amplicon-alignment.software": "1.1.0"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@platforma-sdk/tengo-builder": "2.4.
|
|
13
|
+
"@platforma-sdk/tengo-builder": "2.4.17"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "rm -rf dist && pl-tengo check && pl-tengo build",
|
|
@@ -125,6 +125,7 @@ self.body(func(inputs) {
|
|
|
125
125
|
software(mixcrSw).
|
|
126
126
|
env("MI_USE_SYSTEM_CA", "true").
|
|
127
127
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
128
|
+
env("MI_LICENSE_DEBUG", "MI_LICENSE_DEBUG").
|
|
128
129
|
arg("exportReportsTable")
|
|
129
130
|
|
|
130
131
|
// Add all clns files as input
|
|
@@ -205,6 +206,7 @@ self.body(func(inputs) {
|
|
|
205
206
|
software(mixcrSw).
|
|
206
207
|
env("MI_USE_SYSTEM_CA", "true").
|
|
207
208
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
209
|
+
env("MI_LICENSE_DEBUG", "MI_LICENSE_DEBUG").
|
|
208
210
|
arg("exportClones").
|
|
209
211
|
arg("--dont-split-files").
|
|
210
212
|
arg("--drop-default-fields").
|
|
@@ -58,7 +58,9 @@ self.body(func(inputs) {
|
|
|
58
58
|
env("MI_PROGRESS_PREFIX", progressPrefix).
|
|
59
59
|
software(mixcrSw).
|
|
60
60
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
61
|
-
|
|
61
|
+
env("MI_LICENSE_DEBUG", "MI_LICENSE_DEBUG").
|
|
62
|
+
arg("analyze").
|
|
63
|
+
arg("--use-local-temp")
|
|
62
64
|
|
|
63
65
|
// Select preset based on UMI presence
|
|
64
66
|
if !is_undefined(params.hasUMI) && params.hasUMI {
|
|
@@ -191,6 +191,7 @@ self.body(func(inputs) {
|
|
|
191
191
|
printErrStreamToStdout().
|
|
192
192
|
software(mixcrSw).
|
|
193
193
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
194
|
+
env("MI_LICENSE_DEBUG", "MI_LICENSE_DEBUG").
|
|
194
195
|
arg("exportClones").
|
|
195
196
|
arg("--dont-split-files").
|
|
196
197
|
arg("--drop-default-fields").
|