@platforma-open/milaboratories.rarefaction.workflow 1.1.6 → 1.1.7

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.6 build /home/runner/work/rarefaction/rarefaction/workflow
3
+ > @platforma-open/milaboratories.rarefaction.workflow@1.1.7 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,13 @@
1
1
  # @platforma-open/milaboratories.rarefaction.workflow
2
2
 
3
+ ## 1.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - ab9a4ca: Optimized rarefaction computation performance and added periodic execution logs that propagate to the UI GraphMaker component.
8
+ - Updated dependencies [ab9a4ca]
9
+ - @platforma-open/milaboratories.rarefaction.software@1.2.5
10
+
3
11
  ## 1.1.6
4
12
 
5
13
  ### 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.6",
3
+ "version": "1.1.7",
4
4
  "type": "module",
5
5
  "description": "Tengo-based template",
6
6
  "dependencies": {
7
7
  "@platforma-sdk/workflow-tengo": "5.8.1",
8
- "@platforma-open/milaboratories.rarefaction.software": "1.2.4"
8
+ "@platforma-open/milaboratories.rarefaction.software": "1.2.5"
9
9
  },
10
10
  "devDependencies": {
11
- "@platforma-sdk/tengo-builder": "2.4.12"
11
+ "@platforma-sdk/tengo-builder": "2.4.14"
12
12
  },
13
13
  "scripts": {
14
14
  "build": "rm -rf dist && pl-tengo check && pl-tengo build",
@@ -139,7 +139,8 @@ wf.body(func(args) {
139
139
 
140
140
  return {
141
141
  outputs: {
142
- rarefactionPFrame: pframes.exportFrame(tracedPFrame)
142
+ rarefactionPFrame: pframes.exportFrame(tracedPFrame),
143
+ rarefactionLogs: rarefactionRender.output("rarefactionLogs")
143
144
  },
144
145
  exports: {}
145
146
  }
@@ -17,7 +17,7 @@ self.validateInputs({
17
17
  }
18
18
  })
19
19
 
20
- self.defineOutputs("rarefactionOutput")
20
+ self.defineOutputs(["rarefactionOutput", "rarefactionLogs"])
21
21
 
22
22
  self.body(func(args) {
23
23
  // Get input parameters
@@ -42,11 +42,13 @@ self.body(func(args) {
42
42
  arg(numIterations).
43
43
  arg(string(extrapolation)).
44
44
  saveFile(outfile).
45
+ saveStdoutStream().
45
46
  cacheMinutes(4*60).
46
47
  printErrStreamToStdout().
47
48
  run()
48
49
 
49
50
  return {
50
- rarefactionOutput: rarefactionCmd.getFile(outfile)
51
+ rarefactionOutput: rarefactionCmd.getFile(outfile),
52
+ rarefactionLogs: rarefactionCmd.getStdoutStream()
51
53
  }
52
54
  })