Skip to content

Commit 6b43f26

Browse files
committed
Simplify input data selector
1 parent 86065fc commit 6b43f26

4 files changed

Lines changed: 294 additions & 686 deletions

File tree

model/src/index.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,11 @@ export const platforma = BlockModelV3.create(dataModel)
129129
isPColumnSpec(spec) &&
130130
spec.name === "pl7.app/structure/pdb" &&
131131
spec.annotations?.["pl7.app/isAnchor"] === "true",
132-
filter: (spec: PObjectSpec): boolean =>
133-
isPColumnSpec(spec) &&
134-
(spec.name === "pl7.app/structure/predictionSuccessful" ||
135-
spec.name === "pl7.app/structure/confident"),
132+
// No subset filter: the PDB map is already confident-only, so the dataset
133+
// is picked directly. `() => false` is required — omitting `filter`
134+
// defaults to accept-all, which would attach unrelated `isSubset` columns
135+
// on the clonotype axis (e.g. Lead Selection's subsets).
136+
filter: () => false,
136137
}),
137138
)
138139
// Dataset-level mode, consumed by the mode-specific histogram page and the

0 commit comments

Comments
 (0)