@platforma-open/milaboratories.top-antibodies.workflow 4.1.0 → 4.1.2
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
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@4.1.
|
|
3
|
+
> @platforma-open/milaboratories.top-antibodies.workflow@4.1.2 build /home/runner/work/antibody-tcr-lead-selection/antibody-tcr-lead-selection/workflow
|
|
4
4
|
> shx 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,23 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.top-antibodies.workflow
|
|
2
2
|
|
|
3
|
+
## 4.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6920645: Keep only subtitle in trace
|
|
8
|
+
|
|
9
|
+
## 4.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- c85f63a: SDK update
|
|
14
|
+
- Updated dependencies [c85f63a]
|
|
15
|
+
- @platforma-open/milaboratories.top-antibodies.anarci-kabat@1.4.5
|
|
16
|
+
- @platforma-open/milaboratories.top-antibodies.assembling-fasta@1.3.4
|
|
17
|
+
- @platforma-open/milaboratories.top-antibodies.sample-clonotypes@2.1.4
|
|
18
|
+
- @platforma-open/milaboratories.top-antibodies.spectratype@1.8.5
|
|
19
|
+
- @platforma-open/milaboratories.top-antibodies.umap@1.2.5
|
|
20
|
+
|
|
3
21
|
## 4.1.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.top-antibodies.workflow",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Block Workflow",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@platforma-sdk/workflow-tengo": "5.21.0",
|
|
8
8
|
"@platforma-open/milaboratories.software-anarci": "^0.0.3",
|
|
9
|
-
"@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "2.1.
|
|
10
|
-
"@platforma-open/milaboratories.top-antibodies.
|
|
11
|
-
"@platforma-open/milaboratories.top-antibodies.
|
|
12
|
-
"@platforma-open/milaboratories.top-antibodies.
|
|
13
|
-
"@platforma-open/milaboratories.top-antibodies.
|
|
9
|
+
"@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "2.1.4",
|
|
10
|
+
"@platforma-open/milaboratories.top-antibodies.spectratype": "1.8.5",
|
|
11
|
+
"@platforma-open/milaboratories.top-antibodies.umap": "1.2.5",
|
|
12
|
+
"@platforma-open/milaboratories.top-antibodies.anarci-kabat": "1.4.5",
|
|
13
|
+
"@platforma-open/milaboratories.top-antibodies.assembling-fasta": "1.3.4"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@platforma-sdk/tengo-builder": "2.5.26"
|
|
@@ -137,13 +137,13 @@ self.body(func(inputs) {
|
|
|
137
137
|
|
|
138
138
|
// Create trace with filter descriptions and inject into exported columns
|
|
139
139
|
traceLabel := inputs.filterTraceLabel
|
|
140
|
+
customBlockLabel := inputs.customBlockLabel
|
|
141
|
+
if !is_undefined(customBlockLabel) {
|
|
142
|
+
traceLabel = customBlockLabel
|
|
143
|
+
}
|
|
140
144
|
if is_undefined(traceLabel) || traceLabel == "" {
|
|
141
145
|
traceLabel = "Selected Leads"
|
|
142
146
|
}
|
|
143
|
-
customBlockLabel := inputs.customBlockLabel
|
|
144
|
-
if !is_undefined(customBlockLabel) && customBlockLabel != "" {
|
|
145
|
-
traceLabel = customBlockLabel + " / " + traceLabel
|
|
146
|
-
}
|
|
147
147
|
trace := pSpec.makeTrace(datasetSpec,
|
|
148
148
|
{
|
|
149
149
|
type: "milaboratories.antibody-tcr-lead-selection",
|