Skip to contents

Convenience function to find all structures for a given protein.

Usage

find_protein(protein_id, record_ids = NULL, exact = TRUE)

Arguments

protein_id

Protein identifier(s) to search for

record_ids

Zenodo record IDs to search. Default searches all installed.

exact

If TRUE (default), match exactly. If FALSE, match as substring.

Value

Tibble of matching structures

Examples

if (FALSE) { # \dontrun{
# Find all structures for a protein
find_protein("P00571")

# Find structures for multiple proteins
find_protein(c("P00571", "Q9LPW0"))
} # }