Query structures across one or more installed datasets.
Returns a combined tibble with a dataset_id column identifying the source.
Examples
if (FALSE) { # \dontrun{
# Query all installed datasets
query_structures() |>
filter(mean_plddt > 90)
# Query specific datasets
query_structures(c(415123, 415124)) |>
filter(prediction_source == "alphafold3")
# Get only metadata (faster, smaller)
query_structures(include = "metadata")
# Get metadata joined with predictions
query_structures(include = "both")
} # }