@platforma-open/milaboratories.rarefaction.workflow 1.1.7 → 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,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 1.1.7
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
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
11
|
"@platforma-sdk/tengo-builder": "2.4.14"
|
package/src/main.tpl.tengo
CHANGED
|
@@ -140,7 +140,8 @@ wf.body(func(args) {
|
|
|
140
140
|
return {
|
|
141
141
|
outputs: {
|
|
142
142
|
rarefactionPFrame: pframes.exportFrame(tracedPFrame),
|
|
143
|
-
rarefactionLogs: rarefactionRender.output("rarefactionLogs")
|
|
143
|
+
rarefactionLogs: rarefactionRender.output("rarefactionLogs"),
|
|
144
|
+
noData: rarefactionRender.output("noData")
|
|
144
145
|
},
|
|
145
146
|
exports: {}
|
|
146
147
|
}
|
|
@@ -17,7 +17,7 @@ self.validateInputs({
|
|
|
17
17
|
}
|
|
18
18
|
})
|
|
19
19
|
|
|
20
|
-
self.defineOutputs(["rarefactionOutput", "rarefactionLogs"])
|
|
20
|
+
self.defineOutputs(["rarefactionOutput", "rarefactionLogs", "noData"])
|
|
21
21
|
|
|
22
22
|
self.body(func(args) {
|
|
23
23
|
// Get input parameters
|
|
@@ -42,6 +42,7 @@ self.body(func(args) {
|
|
|
42
42
|
arg(numIterations).
|
|
43
43
|
arg(string(extrapolation)).
|
|
44
44
|
saveFile(outfile).
|
|
45
|
+
saveFileContent("noData.txt").
|
|
45
46
|
saveStdoutStream().
|
|
46
47
|
cacheMinutes(4*60).
|
|
47
48
|
printErrStreamToStdout().
|
|
@@ -49,6 +50,7 @@ self.body(func(args) {
|
|
|
49
50
|
|
|
50
51
|
return {
|
|
51
52
|
rarefactionOutput: rarefactionCmd.getFile(outfile),
|
|
52
|
-
rarefactionLogs: rarefactionCmd.getStdoutStream()
|
|
53
|
+
rarefactionLogs: rarefactionCmd.getStdoutStream(),
|
|
54
|
+
noData: rarefactionCmd.getFileContent("noData.txt")
|
|
53
55
|
}
|
|
54
56
|
})
|