@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 2.20.4 → 2.20.5
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/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-preset-info.tpl.tengo +2 -2
- package/src/list-presets.tpl.tengo +2 -2
- package/src/mixcr-analyze.tpl.tengo +10 -3
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.20.
|
|
3
|
+
> @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@2.20.5 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
|
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
|
@@ -25,7 +25,7 @@ self.body(func(inputs) {
|
|
|
25
25
|
|
|
26
26
|
mixcrExportPresetCmdBuilder := exec.builder().
|
|
27
27
|
inUiQueue().
|
|
28
|
-
mem("
|
|
28
|
+
mem("1GiB").
|
|
29
29
|
software(mixcrSw).
|
|
30
30
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
31
31
|
printErrStreamToStdout().
|
|
@@ -56,7 +56,7 @@ self.body(func(inputs) {
|
|
|
56
56
|
|
|
57
57
|
mixcrForBackCmd := exec.builder().
|
|
58
58
|
inUiQueue().
|
|
59
|
-
mem("
|
|
59
|
+
mem("1GiB").
|
|
60
60
|
software(mixcrSw).
|
|
61
61
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
62
62
|
printErrStreamToStdout().
|
|
@@ -15,8 +15,8 @@ self.body(func(inputs) {
|
|
|
15
15
|
// ll.print("__THE_LOG__ feats.computeLimits " + feats.computeLimits)
|
|
16
16
|
ll.print("__THE_LOG__ asdhjkajsdjasdjk")
|
|
17
17
|
listPresets := exec.builder().
|
|
18
|
-
|
|
19
|
-
mem("
|
|
18
|
+
inUiQueue().
|
|
19
|
+
mem("1GiB").
|
|
20
20
|
software(mixcrSw).
|
|
21
21
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
22
22
|
arg("listPresetSpecificationsForUI").
|
|
@@ -10,6 +10,7 @@ exec := import("@platforma-sdk/workflow-tengo:exec")
|
|
|
10
10
|
assets := import("@platforma-sdk/workflow-tengo:assets")
|
|
11
11
|
pcolumn := import("@platforma-sdk/workflow-tengo:pframes.pcolumn")
|
|
12
12
|
times := import("times")
|
|
13
|
+
text := import("text")
|
|
13
14
|
maps := import("@platforma-sdk/workflow-tengo:maps")
|
|
14
15
|
|
|
15
16
|
json := import("json")
|
|
@@ -44,11 +45,14 @@ self.body(func(inputs) {
|
|
|
44
45
|
|
|
45
46
|
hasAssembleContigs := false
|
|
46
47
|
hasAssembleCells := false
|
|
48
|
+
hasMiToolSteps := false
|
|
47
49
|
for stage in presetContent.pipeline {
|
|
48
50
|
if stage == "assembleContigs" {
|
|
49
51
|
hasAssembleContigs = true
|
|
50
52
|
} else if stage == "assembleCells" {
|
|
51
53
|
hasAssembleCells = true
|
|
54
|
+
} else if text.has_prefix(stage, "mitool-") {
|
|
55
|
+
hasMiToolSteps = true
|
|
52
56
|
}
|
|
53
57
|
}
|
|
54
58
|
|
|
@@ -64,13 +68,16 @@ self.body(func(inputs) {
|
|
|
64
68
|
printErrStreamToStdout().
|
|
65
69
|
env("MI_PROGRESS_PREFIX", progressPrefix).
|
|
66
70
|
software(mixcrSw).
|
|
67
|
-
cpu(
|
|
71
|
+
cpu(16).
|
|
68
72
|
secret("MI_LICENSE", "MI_LICENSE").
|
|
69
73
|
arg("analyze").arg("--use-local-temp")
|
|
70
74
|
|
|
71
|
-
if
|
|
75
|
+
if hasMiToolSteps {
|
|
76
|
+
// allow to use more memory for single cell analysis with mitool pre-
|
|
77
|
+
mixcrCmdBuilder.mem("192GiB")
|
|
78
|
+
} else if hasAssembleContigs || hasAssembleCells {
|
|
72
79
|
// allow to use more memory for single cell analysis
|
|
73
|
-
mixcrCmdBuilder.mem("
|
|
80
|
+
mixcrCmdBuilder.mem("110GiB")
|
|
74
81
|
} else {
|
|
75
82
|
mixcrCmdBuilder.mem("64GiB")
|
|
76
83
|
}
|