parse_uniprot_data | R Documentation |
This function parses the data retrieved from the UniProt API to extract the entry name, protein name, and gene name.
parse_uniprot_data(uniprot_data)
uniprot_data |
A list returned by the UniProt API query. |
A list containing 'entry_name', 'protein_name', and 'gene_name'.
# Example usage:
# Retrieve UniProt data
test_result <- retrieve_uniprot_data("O88737")
# Parse the UniProt data
parsed_result <- parse_uniprot_data(test_result)
# Print the parsed result
print(parsed_result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.