@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow 1.21.7 → 1.21.9
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 +12 -0
- package/dist/tengo/tpl/aggregate-by-clonotype-key.plj.gz +0 -0
- package/dist/tengo/tpl/export-report.plj.gz +0 -0
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/mixcr-analyze.plj.gz +0 -0
- package/dist/tengo/tpl/mixcr-export.plj.gz +0 -0
- package/dist/tengo/tpl/prerun.plj.gz +0 -0
- package/dist/tengo/tpl/process.plj.gz +0 -0
- package/dist/tengo/tpl/repseqio-library.plj.gz +0 -0
- package/package.json +2 -2
- package/src/repseqio-library.tpl.tengo +9 -9
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/mixcr-amplicon-alignment/mixcr-amplicon-alignment/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow@1.21.
|
|
3
|
+
> @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow@1.21.9 build /home/runner/work/mixcr-amplicon-alignment/mixcr-amplicon-alignment/workflow
|
|
4
4
|
> rm -rf dist && pl-tengo check && pl-tengo build
|
|
5
5
|
|
|
6
6
|
Processing "src/aggregate-by-clonotype-key.tpl.tengo"...
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.mixcr-amplicon-alignment.workflow
|
|
2
2
|
|
|
3
|
+
## 1.21.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b3d0382: Fix `FileNotFoundException: referenceLibrary.json (Permission denied)` when running on the localfs backend. The reference-library workflow invoked `repseqio inferPoints` and `repseqio compile` with the same path for input and output (`referenceLibrary.json`). On localfs, input files are mounted read-only, so the tool could read them but the final write back failed. The output is now written to a separate file (`referenceLibrary.out.json`).
|
|
8
|
+
|
|
9
|
+
## 1.21.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2ac36c0: Bump mixr version to 4.7.0-347-develop (switch back to default GC)
|
|
14
|
+
|
|
3
15
|
## 1.21.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.9",
|
|
4
4
|
"description": "MiXCR Amplicon Alignment Workflow",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@platforma-sdk/workflow-tengo": "5.11.0",
|
|
8
|
-
"@platforma-open/milaboratories.software-mixcr": "4.7.0-
|
|
8
|
+
"@platforma-open/milaboratories.software-mixcr": "4.7.0-347-develop",
|
|
9
9
|
"@platforma-open/milaboratories.software-repseqio": "^2.5.0-13-master"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
@@ -74,13 +74,13 @@ self.body(func(inputs) {
|
|
|
74
74
|
arg("--force").
|
|
75
75
|
addFile("referenceLibrary.json", referenceLibrary).
|
|
76
76
|
arg("referenceLibrary.json").
|
|
77
|
-
arg("referenceLibrary.json").
|
|
78
|
-
saveFile("referenceLibrary.json").
|
|
77
|
+
arg("referenceLibrary.out.json").
|
|
78
|
+
saveFile("referenceLibrary.out.json").
|
|
79
79
|
addFile("vGene.fasta", vGeneFasta).
|
|
80
80
|
cpu(1).mem("4GB")
|
|
81
81
|
|
|
82
82
|
repseqioInferPointsVResult := repseqioInferPointsVCmd.run()
|
|
83
|
-
referenceLibraryV := repseqioInferPointsVResult.getFile("referenceLibrary.json")
|
|
83
|
+
referenceLibraryV := repseqioInferPointsVResult.getFile("referenceLibrary.out.json")
|
|
84
84
|
|
|
85
85
|
repseqioInferPointsJCmd := exec.builder().
|
|
86
86
|
software(repseqioSw).
|
|
@@ -90,13 +90,13 @@ self.body(func(inputs) {
|
|
|
90
90
|
arg("--force").
|
|
91
91
|
addFile("referenceLibrary.json", referenceLibraryV).
|
|
92
92
|
arg("referenceLibrary.json").
|
|
93
|
-
arg("referenceLibrary.json").
|
|
94
|
-
saveFile("referenceLibrary.json").
|
|
93
|
+
arg("referenceLibrary.out.json").
|
|
94
|
+
saveFile("referenceLibrary.out.json").
|
|
95
95
|
addFile("jGene.fasta", jGeneFasta).
|
|
96
96
|
cpu(1).mem("4GB")
|
|
97
97
|
|
|
98
98
|
repseqioInferPointsJResult := repseqioInferPointsJCmd.run()
|
|
99
|
-
referenceLibraryJ := repseqioInferPointsJResult.getFile("referenceLibrary.json")
|
|
99
|
+
referenceLibraryJ := repseqioInferPointsJResult.getFile("referenceLibrary.out.json")
|
|
100
100
|
|
|
101
101
|
repseqioCompileCmd := exec.builder().
|
|
102
102
|
software(repseqioSw).
|
|
@@ -104,14 +104,14 @@ self.body(func(inputs) {
|
|
|
104
104
|
arg("--force").
|
|
105
105
|
addFile("referenceLibrary.json", referenceLibraryJ).
|
|
106
106
|
arg("referenceLibrary.json").
|
|
107
|
-
arg("referenceLibrary.json").
|
|
108
|
-
saveFile("referenceLibrary.json").
|
|
107
|
+
arg("referenceLibrary.out.json").
|
|
108
|
+
saveFile("referenceLibrary.out.json").
|
|
109
109
|
addFile("vGene.fasta", vGeneFasta).
|
|
110
110
|
addFile("jGene.fasta", jGeneFasta).
|
|
111
111
|
cpu(1).mem("4GB")
|
|
112
112
|
|
|
113
113
|
repseqioCompileResult := repseqioCompileCmd.run()
|
|
114
|
-
referenceLibraryCompiled := repseqioCompileResult.getFile("referenceLibrary.json")
|
|
114
|
+
referenceLibraryCompiled := repseqioCompileResult.getFile("referenceLibrary.out.json")
|
|
115
115
|
|
|
116
116
|
repseqioDebugCmd := exec.builder().
|
|
117
117
|
software(repseqioSw).
|