@platforma-open/milaboratories.immune-assay-data.workflow 1.5.0 → 1.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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +17 -0
- package/dist/tengo/tpl/build-outputs.plj.gz +0 -0
- package/dist/tengo/tpl/extract-unique-values.plj.gz +0 -0
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/run-alignment.plj.gz +0 -0
- package/package.json +10 -12
- package/src/build-outputs.tpl.tengo +3 -1
- package/src/main.tpl.tengo +3 -1
- package/index.d.ts +0 -4
- package/index.js +0 -3
- package/tsconfig.json +0 -16
- package/vitest.config.mts +0 -9
package/.turbo/turbo-build.log
CHANGED
|
@@ -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.
|
|
3
|
+
> @platforma-open/milaboratories.immune-assay-data.workflow@1.6.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/build-outputs.tpl.tengo"...
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.immune-assay-data.workflow
|
|
2
2
|
|
|
3
|
+
## 1.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a47580b: Support custom block title
|
|
8
|
+
|
|
9
|
+
## 1.5.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 35cde6e: Show running state for tables and graphs
|
|
14
|
+
- Updated dependencies [35cde6e]
|
|
15
|
+
- @platforma-open/milaboratories.immune-assay-data.coverage-mode-calc@1.1.3
|
|
16
|
+
- @platforma-open/milaboratories.immune-assay-data.prepare-fasta@1.1.3
|
|
17
|
+
- @platforma-open/milaboratories.immune-assay-data.add-header@1.1.3
|
|
18
|
+
- @platforma-open/milaboratories.immune-assay-data.fasta-to-tsv@1.1.3
|
|
19
|
+
|
|
3
20
|
## 1.5.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.immune-assay-data.workflow",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Tengo-based template",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@platforma-sdk/workflow-tengo": "
|
|
7
|
+
"@platforma-sdk/workflow-tengo": "5.8.0",
|
|
8
8
|
"@platforma-open/soedinglab.software-mmseqs2": "^1.17.2",
|
|
9
|
-
"@platforma-open/milaboratories.immune-assay-data.
|
|
10
|
-
"@platforma-open/milaboratories.immune-assay-data.
|
|
11
|
-
"@platforma-open/milaboratories.immune-assay-data.coverage-mode-calc": "1.1.
|
|
12
|
-
"@platforma-open/milaboratories.immune-assay-data.fasta
|
|
9
|
+
"@platforma-open/milaboratories.immune-assay-data.add-header": "1.1.3",
|
|
10
|
+
"@platforma-open/milaboratories.immune-assay-data.fasta-to-tsv": "1.1.3",
|
|
11
|
+
"@platforma-open/milaboratories.immune-assay-data.coverage-mode-calc": "1.1.3",
|
|
12
|
+
"@platforma-open/milaboratories.immune-assay-data.prepare-fasta": "1.1.3"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@platforma-sdk/tengo-builder": "
|
|
16
|
-
"@platforma-sdk/test": "^1.46.0",
|
|
17
|
-
"vitest": "^2.1.8"
|
|
15
|
+
"@platforma-sdk/tengo-builder": "2.4.8"
|
|
18
16
|
},
|
|
19
17
|
"scripts": {
|
|
20
18
|
"build": "rm -rf dist && pl-tengo check && pl-tengo build",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
19
|
+
"format": "/usr/bin/env emacs --script ./format.el",
|
|
20
|
+
"do-pack": "rm -f *.tgz && pnpm pack && mv *.tgz package.tgz"
|
|
23
21
|
}
|
|
24
22
|
}
|
|
@@ -206,7 +206,9 @@ self.body(func(inputs) {
|
|
|
206
206
|
coverageStr := string(inputs.settings.coverageThreshold)
|
|
207
207
|
similarityTypeStr := inputs.settings.similarityType == "sequence-identity" ? "Exact Match" : "BLOSUM"
|
|
208
208
|
|
|
209
|
-
|
|
209
|
+
// Use block label if provided, otherwise fall back to default technical label
|
|
210
|
+
blockLabel := inputs.customBlockLabel || inputs.defaultBlockLabel || ""
|
|
211
|
+
traceLabel := blockLabel != "" ? blockLabel : "Assay Data (sim:" + similarityTypeStr + ", ident:" + identityStr + ", cov:" + coverageStr + ")"
|
|
210
212
|
|
|
211
213
|
trace := pSpec.makeTrace(inputs.datasetSpec,
|
|
212
214
|
{
|
package/src/main.tpl.tengo
CHANGED
|
@@ -377,7 +377,9 @@ wf.body(func(args) {
|
|
|
377
377
|
assayDataTsv: ptw.getFile("assayData.tsv"),
|
|
378
378
|
clonesDataTsv: ptw.getFile("clonesData.tsv"),
|
|
379
379
|
uniqueValuesMap: uniqueValuesMap,
|
|
380
|
-
settings: args.settings
|
|
380
|
+
settings: args.settings,
|
|
381
|
+
customBlockLabel: args.customBlockLabel,
|
|
382
|
+
defaultBlockLabel: args.defaultBlockLabel
|
|
381
383
|
})
|
|
382
384
|
assayPframe = buildOutputsResult.output("assayPframe")
|
|
383
385
|
epf = buildOutputsResult.output("epf")
|
package/index.d.ts
DELETED
package/index.js
DELETED
package/tsconfig.json
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es2022",
|
|
4
|
-
"module": "commonjs",
|
|
5
|
-
"moduleResolution": "node",
|
|
6
|
-
"esModuleInterop": true,
|
|
7
|
-
"strict": true,
|
|
8
|
-
"outDir": "./dist",
|
|
9
|
-
"rootDir": "./src",
|
|
10
|
-
"sourceMap": true,
|
|
11
|
-
"declaration": true
|
|
12
|
-
},
|
|
13
|
-
"types": [],
|
|
14
|
-
"include": ["src/**/*"],
|
|
15
|
-
"exclude": ["node_modules", "dist"]
|
|
16
|
-
}
|