@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow 1.21.3 → 1.21.4
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/prerun.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 +1 -1
- package/src/export-report.tpl.tengo +3 -3
- package/src/process.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.21.
|
|
3
|
+
> @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow@1.21.4 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
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@ ptablerSw := assets.importSoftware("@platforma-open/milaboratories.software-ptab
|
|
|
24
24
|
|
|
25
25
|
self.body(func(inputs) {
|
|
26
26
|
clnsData := inputs.clnsData
|
|
27
|
-
|
|
27
|
+
perProcessMemGB := inputs.perProcessMemGB
|
|
28
28
|
presetSpecForBack := inputs.presetSpecForBack
|
|
29
29
|
sampleIdAxisSpec := inputs.sampleIdAxisSpec
|
|
30
30
|
chains := inputs.chains
|
|
@@ -200,8 +200,8 @@ self.body(func(inputs) {
|
|
|
200
200
|
|
|
201
201
|
// Memory for downstream operations, linked to user override with hardcoded floors
|
|
202
202
|
baseMemGB := 64
|
|
203
|
-
if !is_undefined(
|
|
204
|
-
baseMemGB =
|
|
203
|
+
if !is_undefined(perProcessMemGB) {
|
|
204
|
+
baseMemGB = perProcessMemGB
|
|
205
205
|
}
|
|
206
206
|
memGB := func(floorGB, divisor) {
|
|
207
207
|
return string(int(math.max(floorGB, baseMemGB / divisor))) + "GB"
|
package/src/process.tpl.tengo
CHANGED
|
@@ -357,6 +357,7 @@ self.body(func(inputs) {
|
|
|
357
357
|
clonotypeTablesData: clonotypeTablesData,
|
|
358
358
|
hasUmi: hasUMI,
|
|
359
359
|
umiTags: umiTags,
|
|
360
|
+
perProcessMemGB: perProcessMemGB,
|
|
360
361
|
productiveFeature: productiveFeature,
|
|
361
362
|
stopCodonTypes: params.stopCodonTypes,
|
|
362
363
|
stopCodonReplacements: params.stopCodonReplacements
|