@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 3.19.0 → 3.21.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.
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/work/mixcr-clonotyping/mixcr-clonotyping/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.19.0 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
3
+ > @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.21.0 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  info: Skipping unknown file type: test/columns.test.ts
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @platforma-open/milaboratories.mixcr-clonotyping.workflow
2
2
 
3
+ ## 3.21.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 075b011: custom library bug fix
8
+
9
+ ## 3.20.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 984f9d8: Support custom block title and running status
14
+
3
15
  ## 3.19.0
4
16
 
5
17
  ### Minor Changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,22 +1,17 @@
1
1
  {
2
2
  "name": "@platforma-open/milaboratories.mixcr-clonotyping-2.workflow",
3
- "version": "3.19.0",
3
+ "version": "3.21.0",
4
4
  "description": "Tengo-based template",
5
5
  "dependencies": {
6
- "@platforma-sdk/workflow-tengo": "^5.6.6",
6
+ "@platforma-sdk/workflow-tengo": "5.8.0",
7
7
  "@platforma-open/milaboratories.software-mixcr": "4.7.0-254-develop"
8
8
  },
9
9
  "devDependencies": {
10
- "@milaboratories/ts-configs": "^1.1.0",
11
- "@platforma-sdk/tengo-builder": "^2.4.1",
12
- "@platforma-sdk/test": "^1.47.6",
13
- "vitest": "~4.0.15",
14
- "typescript": "~5.6.3"
10
+ "@platforma-sdk/tengo-builder": "2.4.8"
15
11
  },
16
12
  "scripts": {
17
13
  "build": "rm -rf dist && pl-tengo check && pl-tengo build",
18
14
  "format": "/usr/bin/env emacs --script ./format.el",
19
- "test": "vitest",
20
15
  "do-pack": "rm -f *.tgz && pnpm pack && mv *.tgz package.tgz"
21
16
  }
22
17
  }
@@ -149,15 +149,21 @@ self.body(func(inputs) {
149
149
  if mixcrChainsArg != "" {
150
150
  exportFiltersCmd.arg("--chains").arg(mixcrChainsArg)
151
151
  }
152
- exportFiltersResult := exportFiltersCmd.
152
+ exportFiltersCmd = exportFiltersCmd.
153
153
  arg("-isOOF").arg(featureForFlags).
154
154
  arg("-hasStops").arg(featureForFlags).
155
155
  arg("clones.clns").
156
156
  addFile("clones.clns", clnsFile).
157
157
  arg("clones.tsv").
158
- saveFile("clones.tsv").
159
- cacheHours(3).
160
- run()
158
+ saveFile("clones.tsv")
159
+ if library {
160
+ if isLibraryFileGzipped {
161
+ exportFiltersCmd.addFile("library.json.gz", library)
162
+ } else {
163
+ exportFiltersCmd.addFile("library.json", library)
164
+ }
165
+ }
166
+ exportFiltersResult := exportFiltersCmd.cacheHours(3).run()
161
167
  filterTsv := exportFiltersResult.getFile("clones.tsv")
162
168
  dfFilters := wf.frame(filterTsv, { xsvType: "tsv", inferSchema: false, schema: [ { column: isOOFColumn, type: "String" }, { column: hasStopsColumn, type: "String" } ] })
163
169
  dfFilters = dfFilters.withColumns(
package/tsconfig.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "@milaboratories/ts-configs/tsconfig.node.json",
3
- "compilerOptions": {
4
- "outDir": "./dist",
5
- "rootDir": "./src",
6
- },
7
- "include": ["src/**/*"],
8
- "exclude": ["node_modules", "dist"]
9
- }
package/vitest.config.mts DELETED
@@ -1,10 +0,0 @@
1
- import { defineConfig } from 'vitest/config';
2
-
3
- export default defineConfig({
4
- test: {
5
- watch: false,
6
- maxConcurrency: 3,
7
- testTimeout: 10000,
8
- retry: 2
9
- }
10
- });