Skip to contents

Convenience function to load and join metadata with prediction scores.

Usage

load_dataset(record_id, lazy = TRUE)

Arguments

record_id

Zenodo record ID of an installed dataset

lazy

If TRUE (default), return joined Arrow Tables. If FALSE, collect into a tibble immediately.

Value

Arrow Table or tibble with combined data

Examples

if (FALSE) { # \dontrun{
data <- load_dataset(415123)
data |>
  filter(plddt_mean > 80, n_residues > 100) |>
  collect()
} # }