@platforma-open/milaboratories.mixcr-shm-trees.workflow 3.6.0 → 3.6.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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/process.plj.gz +0 -0
- package/dist/tengo/tpl/reconstruct-shm-trees.plj.gz +0 -0
- package/dist/tengo/tpl/request-library.plj.gz +0 -0
- package/dist/tengo/tpl/soi.plj.gz +0 -0
- package/package.json +1 -1
- package/src/process.tpl.tengo +1 -0
- package/src/reconstruct-shm-trees.tpl.tengo +0 -6
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/mixcr-shm-trees/mixcr-shm-trees/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.mixcr-shm-trees.workflow@3.6.
|
|
3
|
+
> @platforma-open/milaboratories.mixcr-shm-trees.workflow@3.6.1 build /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow
|
|
4
4
|
> rm -rf dist && pl-tengo check && pl-tengo build
|
|
5
5
|
|
|
6
6
|
Processing "src/export-settings.lib.tengo"...
|
package/CHANGELOG.md
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/src/process.tpl.tengo
CHANGED
|
@@ -22,6 +22,7 @@ self.awaitState("datasets", { wildcard: "*" }, "data", "InputsLocked")
|
|
|
22
22
|
// but we need spec already
|
|
23
23
|
self.awaitState("datasets", { wildcard: "*" }, "spec", "ResourceReady")
|
|
24
24
|
self.awaitState("library", "spec", "ResourceReady")
|
|
25
|
+
self.awaitState("library", "data", "AllInputsSet") // change to InputsLocked after fix
|
|
25
26
|
self.awaitState("donorColumn", "ResourceReady")
|
|
26
27
|
self.awaitState("params", "ResourceReady")
|
|
27
28
|
|
|
@@ -36,10 +36,6 @@ self.body(func(inputs) {
|
|
|
36
36
|
library := inputs.library
|
|
37
37
|
libraryFormat := globalParams.libraryFormat
|
|
38
38
|
|
|
39
|
-
// ll.print("__THE_LOG__ " + json.encode(datasetTypes))
|
|
40
|
-
// ll.print("__THE_LOG__ " + json.encode(downsampling))
|
|
41
|
-
// ll.print("__THE_LOG__ " + json.encode(libraryFormat))
|
|
42
|
-
|
|
43
39
|
ll.assert(!is_undefined(datasetTypes), "datasetTypes undefined")
|
|
44
40
|
|
|
45
41
|
addLibraryFile := func(cmdBuilder) {
|
|
@@ -119,8 +115,6 @@ self.body(func(inputs) {
|
|
|
119
115
|
ll.panic("Unknown downsampling type: " + downsampling.type)
|
|
120
116
|
}
|
|
121
117
|
|
|
122
|
-
// ll.print("__THE_LOG__ " + downsamplingParam)
|
|
123
|
-
|
|
124
118
|
for input in toProcess {
|
|
125
119
|
if datasetTypes[input.clonotypingBlockId] == "bulk" {
|
|
126
120
|
downsamplingCmdBuilder := exec.builder().
|