@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow 1.21.8 → 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.
@@ -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.8 build /home/runner/work/mixcr-amplicon-alignment/mixcr-amplicon-alignment/workflow
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,11 @@
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
+
3
9
  ## 1.21.8
4
10
 
5
11
  ### Patch Changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.mixcr-amplicon-alignment.workflow",
3
- "version": "1.21.8",
3
+ "version": "1.21.9",
4
4
  "description": "MiXCR Amplicon Alignment Workflow",
5
5
  "type": "module",
6
6
  "dependencies": {
@@ -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).