@platforma-open/milaboratories.immune-assay-data.workflow 1.2.0 → 1.3.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/immune-assay-data/immune-assay-data/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.immune-assay-data.workflow@1.2.0 build /home/runner/work/immune-assay-data/immune-assay-data/workflow
3
+ > @platforma-open/milaboratories.immune-assay-data.workflow@1.3.0 build /home/runner/work/immune-assay-data/immune-assay-data/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  Processing "src/main.tpl.tengo"...
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @platforma-open/milaboratories.immune-assay-data.workflow
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b18f925: Update trace label and importance
8
+
3
9
  ## 1.2.0
4
10
 
5
11
  ### Minor Changes
Binary file
Binary file
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.immune-assay-data.workflow",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "type": "module",
5
5
  "description": "Block Workflow",
6
6
  "dependencies": {
7
- "@platforma-sdk/workflow-tengo": "^4.9.0",
7
+ "@platforma-sdk/workflow-tengo": "4.8.0",
8
8
  "@platforma-open/soedinglab.software-mmseqs2": "^1.0.0",
9
9
  "@platforma-open/milaboratories.immune-assay-data.prepare-fasta": "1.0.3",
10
10
  "@platforma-open/milaboratories.immune-assay-data.add-header": "1.0.2",
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "devDependencies": {
14
14
  "@platforma-sdk/tengo-builder": "^2.1.11",
15
- "@platforma-sdk/test": "^1.37.8",
15
+ "@platforma-sdk/test": "^1.37.9",
16
16
  "vitest": "^2.1.8"
17
17
  },
18
18
  "scripts": {
@@ -463,11 +463,18 @@ wf.body(func(args) {
463
463
  { splitDataAndSpec: true, cpu: 1, mem: "16GiB" }
464
464
  )
465
465
 
466
+ // Create informative label with relevant matching parameters
467
+ identityStr := string(args.settings.identity)
468
+ coverageStr := string(args.settings.coverageThreshold)
469
+ similarityTypeStr := args.settings.similarityType == "sequence-identity" ? "Exact Match" : "BLOSUM"
470
+
471
+ traceLabel := "Assay Data (sim:" + similarityTypeStr + ", ident:" + identityStr + ", cov:" + coverageStr + ")"
472
+
466
473
  trace := pSpec.makeTrace(datasetSpec,
467
474
  {
468
475
  type: "milaboratories.immune-assay-data",
469
- importance: 30,
470
- label: "Assay Data"
476
+ importance: 40,
477
+ label: traceLabel
471
478
  })
472
479
 
473
480
  epfB := pframes.pFrameBuilder()