@platforma-open/milaboratories.vj-usage.model 2.1.6 → 2.1.7
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 +3 -3
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/bundle.js +6 -6
- package/dist/bundle.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/vj-gene-usage/vj-gene-usage/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.vj-usage.model@2.1.
|
|
3
|
+
> @platforma-open/milaboratories.vj-usage.model@2.1.7 build /home/runner/work/vj-gene-usage/vj-gene-usage/model
|
|
4
4
|
> ts-builder build --target block-model && block-tools build-model
|
|
5
5
|
|
|
6
6
|
Building block-model project...
|
|
@@ -11,6 +11,6 @@ Building block-model project...
|
|
|
11
11
|
[36m
|
|
12
12
|
[1m./src/index.ts[22m → [1mdist[22m...[39m
|
|
13
13
|
[1m[33m(!) Circular dependency[39m[22m
|
|
14
|
-
../node_modules/.pnpm/@platforma-sdk+model@1.53.
|
|
15
|
-
[32mcreated [1mdist[22m in [1m3.
|
|
14
|
+
../node_modules/.pnpm/@platforma-sdk+model@1.53.11/node_modules/@platforma-sdk/model/dist/components/PFrameForGraphs.js -> ../node_modules/.pnpm/@platforma-sdk+model@1.53.11/node_modules/@platforma-sdk/model/dist/pframe_utils/columns.js -> ../node_modules/.pnpm/@platforma-sdk+model@1.53.11/node_modules/@platforma-sdk/model/dist/components/PFrameForGraphs.js
|
|
15
|
+
[32mcreated [1mdist[22m in [1m3.3s[22m[39m
|
|
16
16
|
Build completed successfully
|
package/.turbo/turbo-lint.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/vj-gene-usage/vj-gene-usage/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.vj-usage.model@2.1.
|
|
3
|
+
> @platforma-open/milaboratories.vj-usage.model@2.1.7 lint /home/runner/work/vj-gene-usage/vj-gene-usage/model
|
|
4
4
|
> eslint .
|
|
5
5
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/vj-gene-usage/vj-gene-usage/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.vj-usage.model@2.1.
|
|
3
|
+
> @platforma-open/milaboratories.vj-usage.model@2.1.7 type-check /home/runner/work/vj-gene-usage/vj-gene-usage/model
|
|
4
4
|
> ts-builder types --target block-model
|
|
5
5
|
|
|
6
6
|
↳ tsc --noEmit --project ./tsconfig.json --customConditions ,
|
package/CHANGELOG.md
CHANGED
package/dist/bundle.js
CHANGED
|
@@ -7515,7 +7515,7 @@
|
|
|
7515
7515
|
}
|
|
7516
7516
|
}
|
|
7517
7517
|
|
|
7518
|
-
var version = "1.53.
|
|
7518
|
+
var version = "1.53.11";
|
|
7519
7519
|
|
|
7520
7520
|
const PlatformaSDKVersion = version;
|
|
7521
7521
|
|
|
@@ -8022,7 +8022,7 @@
|
|
|
8022
8022
|
// if current block doesn't produce own columns then use all columns from result pool
|
|
8023
8023
|
const columns = new PColumnCollection();
|
|
8024
8024
|
columns.addColumnProvider(ctx.resultPool);
|
|
8025
|
-
const allColumns = columns.
|
|
8025
|
+
const allColumns = columns.getColumns(predicate, { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? [];
|
|
8026
8026
|
const allAxes = new Map(allColumns
|
|
8027
8027
|
.flatMap((column) => getNormalizedAxesList(column.spec.axesSpec))
|
|
8028
8028
|
.map((axisSpec) => {
|
|
@@ -8050,7 +8050,7 @@
|
|
|
8050
8050
|
}
|
|
8051
8051
|
}
|
|
8052
8052
|
// all linker columns always go to pFrame - even it's impossible to use some of them they all are hidden
|
|
8053
|
-
const linkerColumns = columns.
|
|
8053
|
+
const linkerColumns = columns.getColumns((spec) => predicate(spec) && isLinkerColumn(spec), { dontWaitAllData: true }) ?? [];
|
|
8054
8054
|
const availableWithLinkersAxes = getAvailableWithLinkersAxes(linkerColumns, blockAxes);
|
|
8055
8055
|
// all possible axes from connected linkers
|
|
8056
8056
|
for (const item of availableWithLinkersAxes) {
|
|
@@ -8059,7 +8059,7 @@
|
|
|
8059
8059
|
}
|
|
8060
8060
|
const blockAxesArr = Array.from(blockAxes.values());
|
|
8061
8061
|
// all compatible with block columns but without label columns
|
|
8062
|
-
let compatibleWithoutLabels = (columns.
|
|
8062
|
+
let compatibleWithoutLabels = (columns.getColumns((spec) => predicate(spec) && spec.axesSpec.some((axisSpec) => {
|
|
8063
8063
|
const axisId = getAxisId(axisSpec);
|
|
8064
8064
|
return blockAxesArr.some((selectorAxisSpec) => matchAxisId(getAxisId(selectorAxisSpec), axisId));
|
|
8065
8065
|
}), { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? []).filter((column) => !isLabelColumn(column.spec));
|
|
@@ -8072,12 +8072,12 @@
|
|
|
8072
8072
|
}
|
|
8073
8073
|
const allAxesArr = Array.from(allAxes.values());
|
|
8074
8074
|
// extend allowed columns - add columns thad doesn't have axes from block, but have all axes in 'allAxes' list (that means all axes from linkers or from 'hanging' of other selected columns)
|
|
8075
|
-
compatibleWithoutLabels = (columns.
|
|
8075
|
+
compatibleWithoutLabels = (columns.getColumns((spec) => predicate(spec) && spec.axesSpec.every((axisSpec) => {
|
|
8076
8076
|
const axisId = getAxisId(axisSpec);
|
|
8077
8077
|
return allAxesArr.some((selectorAxisSpec) => matchAxisId(getAxisId(selectorAxisSpec), axisId));
|
|
8078
8078
|
}), { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? []).filter((column) => !isLabelColumn(column.spec));
|
|
8079
8079
|
// label columns must be compatible with full set of axes - block axes and axes from compatible columns from result pool
|
|
8080
|
-
const compatibleLabels = (columns.
|
|
8080
|
+
const compatibleLabels = (columns.getColumns((spec) => predicate(spec) && spec.axesSpec.some((axisSpec) => {
|
|
8081
8081
|
const axisId = getAxisId(axisSpec);
|
|
8082
8082
|
return allAxesArr.some((selectorAxisSpec) => matchAxisId(getAxisId(selectorAxisSpec), axisId));
|
|
8083
8083
|
}), { dontWaitAllData: true, overrideLabelAnnotation: false }) ?? []).filter((column) => isLabelColumn(column.spec));
|