@platforma-open/milaboratories.mixcr-shm-trees.workflow 3.7.0 → 3.8.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.
@@ -1,24 +1,26 @@
1
1
   WARN  Issue while reading "/home/runner/work/mixcr-shm-trees/mixcr-shm-trees/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @platforma-open/milaboratories.mixcr-shm-trees.workflow@3.7.0 build /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow
3
+ > @platforma-open/milaboratories.mixcr-shm-trees.workflow@3.8.1 build /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow
4
4
  > rm -rf dist && pl-tengo check && pl-tengo build
5
5
 
6
6
  Processing "src/export-settings.lib.tengo"...
7
7
  Processing "src/main.tpl.tengo"...
8
+ Processing "src/mixcr-export.tpl.tengo"...
9
+ Processing "src/mixcr-shm-trees.tpl.tengo"...
8
10
  Processing "src/prepare-donor-column.lib.tengo"...
9
11
  Processing "src/process.tpl.tengo"...
10
- Processing "src/reconstruct-shm-trees.tpl.tengo"...
11
12
  Processing "src/request-library.tpl.tengo"...
12
13
  Processing "src/soi-export.lib.tengo"...
13
14
  Processing "src/soi.tpl.tengo"...
14
- Processing "src/tablesAggregation.lib.tengo"...
15
+ Processing "src/tables-aggregation.lib.tengo"...
15
16
  No syntax errors found.
16
17
  info: Compiling 'dist'...
17
18
  info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/lib/export-settings.lib.tengo
18
19
  info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/lib/prepare-donor-column.lib.tengo
19
20
  info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/lib/soi-export.lib.tengo
20
- info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/lib/tablesAggregation.lib.tengo
21
- info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/tpl/reconstruct-shm-trees.plj.gz
21
+ info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/lib/tables-aggregation.lib.tengo
22
+ info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/tpl/mixcr-export.plj.gz
23
+ info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/tpl/mixcr-shm-trees.plj.gz
22
24
  info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/tpl/request-library.plj.gz
23
25
  info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/tpl/soi.plj.gz
24
26
  info: - writing /home/runner/work/mixcr-shm-trees/mixcr-shm-trees/workflow/dist/tengo/tpl/process.plj.gz
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @platforma-open/milaboratories.mixcr-shm-trees.workflow
2
2
 
3
+ ## 3.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - b992b42: Fix for bug introduced in "Sequence Search" after migrating to new processColumn API
8
+
9
+ ## 3.8.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 2f828e7: Migration to processColumn API
14
+
3
15
  ## 3.7.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.cjs CHANGED
@@ -1,5 +1,6 @@
1
1
  module.exports = { Templates: {
2
- 'reconstruct-shm-trees': { type: 'from-file', path: require.resolve('./tengo/tpl/reconstruct-shm-trees.plj.gz') },
2
+ 'mixcr-export': { type: 'from-file', path: require.resolve('./tengo/tpl/mixcr-export.plj.gz') },
3
+ 'mixcr-shm-trees': { type: 'from-file', path: require.resolve('./tengo/tpl/mixcr-shm-trees.plj.gz') },
3
4
  'request-library': { type: 'from-file', path: require.resolve('./tengo/tpl/request-library.plj.gz') },
4
5
  'soi': { type: 'from-file', path: require.resolve('./tengo/tpl/soi.plj.gz') },
5
6
  'process': { type: 'from-file', path: require.resolve('./tengo/tpl/process.plj.gz') },
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  declare type TemplateFromFile = { readonly type: "from-file"; readonly path: string; };
2
- declare type TplName = "reconstruct-shm-trees" | "request-library" | "soi" | "process" | "main";
2
+ declare type TplName = "mixcr-export" | "mixcr-shm-trees" | "request-library" | "soi" | "process" | "main";
3
3
  declare const Templates: Record<TplName, TemplateFromFile>;
4
4
  export { Templates };
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { resolve } from 'node:path';
2
2
  export const Templates = {
3
- 'reconstruct-shm-trees': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/reconstruct-shm-trees.plj.gz') },
3
+ 'mixcr-export': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/mixcr-export.plj.gz') },
4
+ 'mixcr-shm-trees': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/mixcr-shm-trees.plj.gz') },
4
5
  'request-library': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/request-library.plj.gz') },
5
6
  'soi': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/soi.plj.gz') },
6
7
  'process': { type: 'from-file', path: resolve(import.meta.dirname, './tengo/tpl/process.plj.gz') },