@platforma-open/milaboratories.top-antibodies.workflow 1.12.0 → 1.13.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 +12 -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 +5 -5
- package/src/prerun.tpl.tengo +7 -7
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.
|
|
3
|
+
> @platforma-open/milaboratories.top-antibodies.workflow@1.13.0 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,17 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.top-antibodies.workflow
|
|
2
2
|
|
|
3
|
+
## 1.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3825a42: Fix errors related to numeric properties that apply only to a subset of clonotypes and to multiple clustering blocks upstream
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [3825a42]
|
|
12
|
+
- @platforma-open/milaboratories.top-antibodies.sample-clonotypes@1.6.0
|
|
13
|
+
- @platforma-open/milaboratories.top-antibodies.spectratype@1.6.0
|
|
14
|
+
|
|
3
15
|
## 1.12.0
|
|
4
16
|
|
|
5
17
|
### 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.
|
|
3
|
+
"version": "1.13.0",
|
|
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.5",
|
|
8
8
|
"@platforma-open/milaboratories.software-anarci": "^0.0.3",
|
|
9
|
-
"@platforma-open/milaboratories.top-antibodies.
|
|
10
|
-
"@platforma-open/milaboratories.top-antibodies.spectratype": "1.5.0",
|
|
9
|
+
"@platforma-open/milaboratories.top-antibodies.spectratype": "1.6.0",
|
|
11
10
|
"@platforma-open/milaboratories.top-antibodies.umap": "1.1.4",
|
|
12
11
|
"@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.6",
|
|
18
18
|
"vitest": "^2.1.8"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
package/src/prerun.tpl.tengo
CHANGED
|
@@ -127,7 +127,7 @@ wf.body(func(args) {
|
|
|
127
127
|
////////// Clonotype Filtering //////////
|
|
128
128
|
// Build clonotype table
|
|
129
129
|
cloneTable := pframes.csvFileBuilder()
|
|
130
|
-
cloneTable.setAxisHeader(datasetSpec.axesSpec[1]
|
|
130
|
+
cloneTable.setAxisHeader(datasetSpec.axesSpec[1], "clonotypeKey")
|
|
131
131
|
|
|
132
132
|
// Add Filters to table
|
|
133
133
|
addedAxes := []
|
|
@@ -150,7 +150,7 @@ wf.body(func(args) {
|
|
|
150
150
|
if !slices.hasElement(axesNames, datasetSpec.axesSpec[1].name) {
|
|
151
151
|
for na, ax in colsSpec.axesSpec {
|
|
152
152
|
if ax.name != datasetSpec.axesSpec[1].name {
|
|
153
|
-
cloneTable.setAxisHeader(ax
|
|
153
|
+
cloneTable.setAxisHeader(ax, "cluster_" + string(i) + string(na))
|
|
154
154
|
addedAxes = append(addedAxes, ax.name)
|
|
155
155
|
}
|
|
156
156
|
}
|
|
@@ -176,7 +176,7 @@ wf.body(func(args) {
|
|
|
176
176
|
if !slices.hasElement(axesNames, datasetSpec.axesSpec[1].name) {
|
|
177
177
|
for na, ax in colsSpec.axesSpec {
|
|
178
178
|
if ax.name != datasetSpec.axesSpec[1].name && !slices.hasElement(addedAxes, ax.name) {
|
|
179
|
-
cloneTable.setAxisHeader(ax
|
|
179
|
+
cloneTable.setAxisHeader(ax, "cluster_" + string(i) + string(na))
|
|
180
180
|
}
|
|
181
181
|
}
|
|
182
182
|
}
|
|
@@ -200,7 +200,7 @@ wf.body(func(args) {
|
|
|
200
200
|
if !slices.hasElement(axesNames, datasetSpec.axesSpec[1].name) {
|
|
201
201
|
for na, ax in colsSpec.axesSpec {
|
|
202
202
|
if ax.name != datasetSpec.axesSpec[1].name {
|
|
203
|
-
cloneTable.setAxisHeader(ax
|
|
203
|
+
cloneTable.setAxisHeader(ax, "cluster_" + string(i) + string(na))
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
}
|
|
@@ -213,11 +213,11 @@ wf.body(func(args) {
|
|
|
213
213
|
for i, col in columns.getColumns("linkers") {
|
|
214
214
|
if datasetSpec.axesSpec[1].name == col.spec.axesSpec[1].name {
|
|
215
215
|
cloneTable.add(col, {header: "linker." + string(i)})
|
|
216
|
-
cloneTable.setAxisHeader(col.spec.axesSpec[0]
|
|
216
|
+
cloneTable.setAxisHeader(col.spec.axesSpec[0], "cluster_" + string(i))
|
|
217
217
|
linkerAxisSpec["cluster_" + string(i)] = col.spec.axesSpec[0]
|
|
218
218
|
} else if datasetSpec.axesSpec[1].name == col.spec.axesSpec[0].name {
|
|
219
219
|
cloneTable.add(col, {header: "linker." + string(i)})
|
|
220
|
-
cloneTable.setAxisHeader(col.spec.axesSpec[1]
|
|
220
|
+
cloneTable.setAxisHeader(col.spec.axesSpec[1], "cluster_" + string(i))
|
|
221
221
|
linkerAxisSpec["cluster_" + string(i)] = col.spec.axesSpec[1]
|
|
222
222
|
}
|
|
223
223
|
addedCols = true
|
|
@@ -232,7 +232,7 @@ wf.body(func(args) {
|
|
|
232
232
|
// Add the cluster axis header
|
|
233
233
|
for axisIdx, axis in col.spec.axesSpec {
|
|
234
234
|
if axis.name != datasetSpec.axesSpec[1].name {
|
|
235
|
-
cloneTable.setAxisHeader(axis
|
|
235
|
+
cloneTable.setAxisHeader(axis, "clusterAxis_" + string(i) + "_" + string(axisIdx))
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
}
|