protein_in_pathway(uniprot_id_list, mode = c("table", "raw"))

Arguments

uniprot_id_list

A list of protein UniProt IDs

mode

If mode = "table", returns a data frame (a tibble as per tidyverse convention). If mode = "raw", returns a raw response from EpiGraphDB API with minimal parsing done by httr.

Value

Data from POST /protein/in-pathway

Examples

# \dontrun{
protein_in_pathway(uniprot_id_list = c("014933", "060674", "P32455"))
#> # A tibble: 1 × 3
#>   uniprot_id pathway_count pathway_reactome_id
#>   <chr>              <int> <list>             
#> 1 P32455                 4 <chr [4]>          
# }