@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 3.5.2 → 3.6.0

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-clonotyping/mixcr-clonotyping/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.5.2 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
3
+ > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.6.0 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  info: Skipping unknown file type: test/columns.test.ts
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @platforma-open/milaboratories.mixcr-clonotyping.workflow
2
2
 
3
+ ## 3.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9965185: add library files to qc report command
8
+
3
9
  ## 3.5.2
4
10
 
5
11
  ### Patch Changes
Binary file
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-clonotyping-2.workflow",
3
- "version": "3.5.2",
3
+ "version": "3.6.0",
4
4
  "description": "Tengo-based template",
5
5
  "dependencies": {
6
6
  "@platforma-sdk/workflow-tengo": "^5.2.0",
@@ -27,6 +27,8 @@ self.body(func(inputs) {
27
27
  presetSpecForBack := inputs.presetSpecForBack
28
28
  sampleIdAxisSpec := inputs.sampleIdAxisSpec
29
29
  chains := inputs.chains
30
+ library := inputs.library
31
+ isLibraryFileGzipped := inputs.isLibraryFileGzipped
30
32
 
31
33
  isSingleCell := len(presetSpecForBack.cellTags) > 0
32
34
  hasUmi := !is_undefined(presetSpecForBack.umiTags) && len(presetSpecForBack.umiTags) > 0
@@ -64,6 +66,13 @@ self.body(func(inputs) {
64
66
  }
65
67
 
66
68
  exportReportCmd.arg("qc-report.tsv").saveFile("qc-report.tsv")
69
+ if library {
70
+ if isLibraryFileGzipped {
71
+ exportReportCmd.addFile("library.json.gz", library)
72
+ } else {
73
+ exportReportCmd.addFile("library.json", library)
74
+ }
75
+ }
67
76
 
68
77
  // Run the command
69
78
  result := exportReportCmd.run()
@@ -694,7 +694,9 @@ self.body(func(inputs) {
694
694
  clnsData: mixcrResults.outputData("clns"),
695
695
  presetSpecForBack: presetSpecForBack,
696
696
  sampleIdAxisSpec: sampleIdAxisSpec,
697
- chains: chains
697
+ chains: chains,
698
+ library: library,
699
+ isLibraryFileGzipped: isLibraryFileGzipped
698
700
  })
699
701
 
700
702
  return {