@platforma-open/milaboratories.top-antibodies.workflow 1.13.0 → 1.13.1
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 +8 -0
- package/dist/tengo/tpl/assembling-fasta.plj.gz +0 -0
- package/dist/tengo/tpl/filter-and-sample.plj.gz +0 -0
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/prerun.plj.gz +0 -0
- package/package.json +4 -4
- package/src/prerun.tpl.tengo +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/antibody-tcr-lead-selection/antibody-tcr-lead-selection/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.top-antibodies.workflow@1.13.
|
|
3
|
+
> @platforma-open/milaboratories.top-antibodies.workflow@1.13.1 build /home/runner/work/antibody-tcr-lead-selection/antibody-tcr-lead-selection/workflow
|
|
4
4
|
> rm -rf dist && pl-tengo check && pl-tengo build
|
|
5
5
|
|
|
6
6
|
Processing "src/assembling-fasta.tpl.tengo"...
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.top-antibodies.workflow
|
|
2
2
|
|
|
3
|
+
## 1.13.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9245274: Fix filter issues related to data types
|
|
8
|
+
- Updated dependencies [9245274]
|
|
9
|
+
- @platforma-open/milaboratories.top-antibodies.sample-clonotypes@1.6.1
|
|
10
|
+
|
|
3
11
|
## 1.13.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.top-antibodies.workflow",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Block Workflow",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@platforma-sdk/workflow-tengo": "^5.5.
|
|
7
|
+
"@platforma-sdk/workflow-tengo": "^5.5.9",
|
|
8
8
|
"@platforma-open/milaboratories.software-anarci": "^0.0.3",
|
|
9
|
+
"@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "1.6.1",
|
|
9
10
|
"@platforma-open/milaboratories.top-antibodies.spectratype": "1.6.0",
|
|
10
11
|
"@platforma-open/milaboratories.top-antibodies.umap": "1.1.4",
|
|
11
12
|
"@platforma-open/milaboratories.top-antibodies.assembling-fasta": "1.1.0",
|
|
12
|
-
"@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "1.6.0",
|
|
13
13
|
"@platforma-open/milaboratories.top-antibodies.anarci-kabat": "1.1.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@platforma-sdk/tengo-builder": "^2.3.3",
|
|
17
|
-
"@platforma-sdk/test": "^1.45.
|
|
17
|
+
"@platforma-sdk/test": "^1.45.11",
|
|
18
18
|
"vitest": "^2.1.8"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
package/src/prerun.tpl.tengo
CHANGED
|
@@ -143,6 +143,7 @@ wf.body(func(args) {
|
|
|
143
143
|
addedCols = true
|
|
144
144
|
// Store reference value and filter type associated to this column
|
|
145
145
|
filterMap["Filter_" + string(i)] = filter.filter
|
|
146
|
+
filterMap["Filter_" + string(i)]["valueType"] = columns.getSpec(filter.value.column).valueType
|
|
146
147
|
|
|
147
148
|
// If column does not have main anchor axis we have to include theirs
|
|
148
149
|
colsSpec := columns.getSpec(filter.value.column)
|