@platforma-open/milaboratories.rarefaction.workflow 1.0.2 → 1.1.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.
@@ -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.0.2 build /home/runner/work/rarefaction/rarefaction/workflow
3
+ > @platforma-open/milaboratories.rarefaction.workflow@1.1.1 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,23 @@
1
1
  # @platforma-open/milaboratories.rarefaction.workflow
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8c2a02a]
8
+ - @platforma-open/milaboratories.rarefaction.software@1.2.1
9
+
10
+ ## 1.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 56727cb: Added extrapolation viz
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [56727cb]
19
+ - @platforma-open/milaboratories.rarefaction.software@1.2.0
20
+
3
21
  ## 1.0.2
4
22
 
5
23
  ### Patch Changes
Binary file
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.rarefaction.workflow",
3
- "version": "1.0.2",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "description": "Block Workflow",
6
6
  "dependencies": {
7
- "@platforma-sdk/workflow-tengo": "^5.2.2",
8
- "@platforma-open/milaboratories.rarefaction.software": "1.1.0"
7
+ "@platforma-sdk/workflow-tengo": "^5.2.3",
8
+ "@platforma-open/milaboratories.rarefaction.software": "1.2.1"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@platforma-sdk/tengo-builder": "^2.2.0",
12
- "@platforma-sdk/test": "^1.43.14",
12
+ "@platforma-sdk/test": "^1.43.16",
13
13
  "vitest": "^2.1.8"
14
14
  },
15
15
  "scripts": {
@@ -52,6 +52,23 @@ getSpec := func(abundanceSpec, args) {
52
52
  "pl7.app/format": ".2f"
53
53
  }
54
54
  }
55
+ },
56
+ {
57
+ column: "type",
58
+ spec: {
59
+ name: "pl7.app/vdj/rarefaction/type",
60
+ valueType: "String",
61
+ domain: maps.merge(
62
+ abundanceSpec.domain,
63
+ {
64
+ "pl7.app/vdj/rarefaction/numPoints": args.numPoints,
65
+ "pl7.app/vdj/rarefaction/numIterations": args.numIterations
66
+ }
67
+ ),
68
+ annotations: {
69
+ "pl7.app/label": "Type"
70
+ }
71
+ }
55
72
  }
56
73
  ]
57
74
  }
@@ -90,11 +107,14 @@ wf.body(func(args) {
90
107
 
91
108
  rarefactionCmd := exec.builder().
92
109
  software(rarefactionSw).
110
+ mem(string(args.mem) + "GiB").
111
+ cpu(args.cpu).
93
112
  arg(infile).
94
113
  addFile(infile, tsv).
95
114
  arg(outfile).
96
115
  arg(args.numPoints).
97
116
  arg(args.numIterations).
117
+ arg(string(args.extrapolation)).
98
118
  saveFile(outfile).
99
119
  dontSaveStdoutOrStderr().
100
120
  cacheMinutes(24*60).