@platforma-open/milaboratories.rarefaction.workflow 1.1.6 → 1.1.8
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
CHANGED
|
@@ -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.
|
|
3
|
+
> @platforma-open/milaboratories.rarefaction.workflow@1.1.8 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,21 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.rarefaction.workflow
|
|
2
2
|
|
|
3
|
+
## 1.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 770f778: Show warning when selected dataset contains no clonotypes
|
|
8
|
+
- Updated dependencies [770f778]
|
|
9
|
+
- @platforma-open/milaboratories.rarefaction.software@1.2.6
|
|
10
|
+
|
|
11
|
+
## 1.1.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- ab9a4ca: Optimized rarefaction computation performance and added periodic execution logs that propagate to the UI GraphMaker component.
|
|
16
|
+
- Updated dependencies [ab9a4ca]
|
|
17
|
+
- @platforma-open/milaboratories.rarefaction.software@1.2.5
|
|
18
|
+
|
|
3
19
|
## 1.1.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.rarefaction.workflow",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
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.
|
|
8
|
+
"@platforma-open/milaboratories.rarefaction.software": "1.2.6"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@platforma-sdk/tengo-builder": "2.4.
|
|
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",
|
package/src/main.tpl.tengo
CHANGED
|
@@ -139,7 +139,9 @@ 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"),
|
|
144
|
+
noData: rarefactionRender.output("noData")
|
|
143
145
|
},
|
|
144
146
|
exports: {}
|
|
145
147
|
}
|
|
@@ -17,7 +17,7 @@ self.validateInputs({
|
|
|
17
17
|
}
|
|
18
18
|
})
|
|
19
19
|
|
|
20
|
-
self.defineOutputs("rarefactionOutput")
|
|
20
|
+
self.defineOutputs(["rarefactionOutput", "rarefactionLogs", "noData"])
|
|
21
21
|
|
|
22
22
|
self.body(func(args) {
|
|
23
23
|
// Get input parameters
|
|
@@ -42,11 +42,15 @@ self.body(func(args) {
|
|
|
42
42
|
arg(numIterations).
|
|
43
43
|
arg(string(extrapolation)).
|
|
44
44
|
saveFile(outfile).
|
|
45
|
+
saveFileContent("noData.txt").
|
|
46
|
+
saveStdoutStream().
|
|
45
47
|
cacheMinutes(4*60).
|
|
46
48
|
printErrStreamToStdout().
|
|
47
49
|
run()
|
|
48
50
|
|
|
49
51
|
return {
|
|
50
|
-
rarefactionOutput: rarefactionCmd.getFile(outfile)
|
|
52
|
+
rarefactionOutput: rarefactionCmd.getFile(outfile),
|
|
53
|
+
rarefactionLogs: rarefactionCmd.getStdoutStream(),
|
|
54
|
+
noData: rarefactionCmd.getFileContent("noData.txt")
|
|
51
55
|
}
|
|
52
56
|
})
|