@platforma-open/milaboratories.rarefaction.workflow 1.1.8 → 1.1.9

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.
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/work/rarefaction/rarefaction/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.rarefaction.workflow@1.1.8 build /home/runner/work/rarefaction/rarefaction/workflow
3
+ > @platforma-open/milaboratories.rarefaction.workflow@1.1.9 build /home/runner/work/rarefaction/rarefaction/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  Processing "src/main.tpl.tengo"...
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @platforma-open/milaboratories.rarefaction.workflow
2
2
 
3
+ ## 1.1.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 0075c7e: Propagate user memory setting to TSV builder to prevent OOM on large datasets
8
+ - 1573d0e: Update SDK dependencies to latest versions
9
+
3
10
  ## 1.1.8
4
11
 
5
12
  ### Patch Changes
Binary file
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.rarefaction.workflow",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "type": "module",
5
5
  "description": "Tengo-based template",
6
6
  "dependencies": {
7
- "@platforma-sdk/workflow-tengo": "5.8.1",
7
+ "@platforma-sdk/workflow-tengo": "5.11.0",
8
8
  "@platforma-open/milaboratories.rarefaction.software": "1.2.6"
9
9
  },
10
10
  "devDependencies": {
11
- "@platforma-sdk/tengo-builder": "2.4.14"
11
+ "@platforma-sdk/tengo-builder": "2.5.5"
12
12
  },
13
13
  "scripts": {
14
14
  "build": "rm -rf dist && pl-tengo check && pl-tengo build",
@@ -100,7 +100,11 @@ wf.prepare(func(args) {
100
100
  wf.body(func(args) {
101
101
 
102
102
  datasetSpec := args.columns.getSpec(args.datasetRef)
103
+ convMem := string(args.mem) + "GiB"
104
+
103
105
  tsvBuilder := pframes.tsvFileBuilder()
106
+ tsvBuilder.mem(convMem)
107
+ tsvBuilder.cpu(1)
104
108
  tsvBuilder.add(args.columns.getColumn("abundance"), {header: "abundance"})
105
109
  tsvBuilder.setAxisHeader(datasetSpec.axesSpec[1].name, "clonotypeKey")
106
110
  tsv := tsvBuilder.build()