Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolotin committed Aug 25, 2024
1 parent d5a1fda commit f2e3fc6
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 39 deletions.
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,14 @@
"pnpm1": {
"overrides": {
"@milaboratory/pl-middle-layer": "1.9.30",
"@milaboratory/tengo-sdk": "file:/Volumes/Data/Projects/MiLaboratory/blocks-beta/tengo-sdk"
"@milaboratory/tengo-sdk": "file:/Volumes/Data/Projects/MiLaboratory/blocks-beta/tengo-sdk/milaboratory-tengo-sdk-1.0.14.tgz",
"@milaboratory/tengo-template-builder": "file:/Volumes/Data/Projects/MiLaboratory/blocks-beta/tengo-template-builder"
}
}
},
"pnpm": {
"overrides": {
"@milaboratory/tengo-sdk": "file:/Volumes/Data/Projects/MiLaboratory/blocks-beta/tengo-sdk"
}
}
}
70 changes: 35 additions & 35 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ packages:
- test

catalog:
'@milaboratory/tengo-template-builder': ^1.10.1
'@milaboratory/tengo-template-builder': ^1.11.1
'@milaboratory/pl-block-tools': ^2.1.5
'@milaboratory/block-builder': ^1.2.3

'@milaboratory/sdk-ui': ^0.12.18
'@milaboratory/sdk-test': ^1.4.12
'@milaboratory/sdk-test': ^1.4.13

'@milaboratory/tengo-sdk': ^1.0.15

Expand Down
5 changes: 4 additions & 1 deletion workflow/src/process.tpl.tengo
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ self.body(func(inputs) {

mixcrResults := llPFrames.aggregate(
self.rawInputs().inputData, [1], mixcrAnalyzeTpl,
["qc"],
[{
type: "Resource",
name: "qc"
}],
false,
{
params: smart.createJsonResource({
Expand Down
36 changes: 36 additions & 0 deletions workflow/src/pvconf_params.lib.tengo
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
export {
"axes": [
{
"column": "cloneId",
"spec": {
"name": "pl7.app/vdj/cloneId",
"type": "Long"
}
}
],
"columns": [
{
"column": "readCount",
"id": "read-count",
"name": "pl7.app/vdj/readCount",
"type": "Long",
"annotations": {
"pl7.app/label": "Number Of Reads"
}
},
{
"column": "nSeqCDR3",
"id": "n-seq-cdr3",
"type": "String",
"name": "pl7.app/vdj/nucleotideSequence",
"domain": {
"pl7.app/vdj/feature": "CDR3"
},
"annotations": {
"pl7.app/label": "CDR3 Nucleotide Sequence"
}
}
],
"storageFormat": "Binary",
"partitionKeyLength": 0
}

0 comments on commit f2e3fc6

Please sign in to comment.