@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 3.13.0 → 3.14.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.13.0 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
3
+ > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.14.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.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 4fcd94b: relaxed mixcr assemble parameters for high diversity datasets
8
+
3
9
  ## 3.13.0
4
10
 
5
11
  ### Minor 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.13.0",
3
+ "version": "3.14.0",
4
4
  "description": "Tengo-based template",
5
5
  "dependencies": {
6
6
  "@platforma-sdk/workflow-tengo": "^5.5.9",
@@ -117,6 +117,7 @@ wf.body(func(args) {
117
117
  limitInput: limitInput,
118
118
  perProcessMemGB: perProcessMemGB,
119
119
  perProcessCPUs: perProcessCPUs,
120
+ highDiversityLibrary: args.highDiversityLibrary,
120
121
  blockId: blockId,
121
122
  libraryId: libraryId,
122
123
  presetCommonName: args.presetCommonName,
@@ -121,6 +121,16 @@ self.body(func(inputs) {
121
121
  arg(preset.name)
122
122
  }
123
123
 
124
+ // High diversity library tuning
125
+ highDiversityLibrary := params.highDiversityLibrary
126
+ if !is_undefined(highDiversityLibrary) && highDiversityLibrary {
127
+ mixcrCmdBuilder.
128
+ arg("-Massemble.cloneAssemblerParameters.minimalQuality=20").
129
+ arg("-Massemble.cloneAssemblerParameters.badQualityThreshold=10").
130
+ arg("-Massemble.cloneAssemblerParameters.cloneClusteringParameters.searchParameters=oneMismatchOrIndel").
131
+ arg("-Massemble.cloneAssemblerParameters.cloneClusteringParameters.searchDepth=1")
132
+ }
133
+
124
134
  inputMap := inputData.inputs()
125
135
  if inputDataMeta.keyLength == 0 {
126
136
  ll.assert(aggregationAxesNames == [], "unexpected aggregation axes names")
@@ -267,7 +267,8 @@ self.body(func(inputs) {
267
267
  limitInput: limitInput,
268
268
  fileExtension: fileExtension,
269
269
  reports: reports,
270
- isLibraryFileGzipped: isLibraryFileGzipped
270
+ isLibraryFileGzipped: isLibraryFileGzipped,
271
+ highDiversityLibrary: params.highDiversityLibrary
271
272
  },
272
273
  library: library,
273
274
  presetContent: presetContent