Skip to contents

Load PAE (Predicted Aligned Error) matrix for a structure.

Usage

get_pae(id, record_id, as = "matrix")

Arguments

id

Structure ID (the id column from metadata)

record_id

Zenodo record ID of an installed dataset

as

Return format: "matrix" (default), "data.frame" (long format), or "list" (raw JSON structure)

Value

Matrix, data.frame, or list depending on as parameter

Examples

if (FALSE) { # \dontrun{
# Get as matrix
pae <- get_pae("P00571_AF3_1", 415123)

# Get as long-format data.frame
pae_df <- get_pae("P00571_AF3_1", 415123, as = "data.frame")
} # }