@platforma-open/milaboratories.top-antibodies.workflow 2.0.0 → 2.0.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 +6 -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/package.json +2 -2
- package/src/filter-and-sample.tpl.tengo +4 -0
- package/src/main.tpl.tengo +2 -1
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@2.0.
|
|
3
|
+
> @platforma-open/milaboratories.top-antibodies.workflow@2.0.1 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
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-open/milaboratories.top-antibodies.workflow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Block Workflow",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@platforma-sdk/workflow-tengo": "5.8.2",
|
|
8
8
|
"@platforma-open/milaboratories.software-anarci": "^0.0.3",
|
|
9
9
|
"@platforma-open/milaboratories.top-antibodies.sample-clonotypes": "2.0.0",
|
|
10
|
-
"@platforma-open/milaboratories.top-antibodies.umap": "1.2.1",
|
|
11
10
|
"@platforma-open/milaboratories.top-antibodies.assembling-fasta": "1.3.0",
|
|
11
|
+
"@platforma-open/milaboratories.top-antibodies.umap": "1.2.1",
|
|
12
12
|
"@platforma-open/milaboratories.top-antibodies.anarci-kabat": "1.3.0",
|
|
13
13
|
"@platforma-open/milaboratories.top-antibodies.spectratype": "1.8.1"
|
|
14
14
|
},
|
|
@@ -105,6 +105,10 @@ self.body(func(inputs) {
|
|
|
105
105
|
if is_undefined(traceLabel) || traceLabel == "" {
|
|
106
106
|
traceLabel = "Selected Leads"
|
|
107
107
|
}
|
|
108
|
+
customBlockLabel := inputs.customBlockLabel
|
|
109
|
+
if !is_undefined(customBlockLabel) && customBlockLabel != "" {
|
|
110
|
+
traceLabel = customBlockLabel + " / " + traceLabel
|
|
111
|
+
}
|
|
108
112
|
trace := pSpec.makeTrace(datasetSpec,
|
|
109
113
|
{
|
|
110
114
|
type: "milaboratories.antibody-tcr-lead-selection",
|
package/src/main.tpl.tengo
CHANGED
|
@@ -164,7 +164,8 @@ wf.body(func(args) {
|
|
|
164
164
|
datasetSpec: datasetSpec,
|
|
165
165
|
topClonotypes: args.topClonotypes,
|
|
166
166
|
diversificationColumn: clusterColumnHeader,
|
|
167
|
-
filterTraceLabel: filterTraceLabel
|
|
167
|
+
filterTraceLabel: filterTraceLabel,
|
|
168
|
+
customBlockLabel: args.customBlockLabel
|
|
168
169
|
})
|
|
169
170
|
|
|
170
171
|
// Get the filtered clonotypes from the template result
|