Skip to contents

Check if a list column of predictors contains ALL of the specified values.

Usage

has_all_predictors(predictors, values)

Arguments

predictors

A list column from list_datasets(full = TRUE)

values

Character vector of predictor names that must ALL be present

Value

Logical vector, TRUE where all values match

Examples

if (FALSE) { # \dontrun{
# Datasets with BOTH alphafold3 AND boltz2
list_datasets(full = TRUE) |>
  filter(has_all_predictors(predictors, c("alphafold3", "boltz2")))
} # }