rba_uniprot_proteomes_search {rbioapi}R Documentation

Search Proteomes in UniProt

Description

UniProt collects and annotates proteomes (Protein sets expressed in an organism). Using this function you can search UniProt for available proteomes. see What are proteomes? for more information. You may also refine your search with modifiers such as keyword, taxon id etc. See "Arguments section" for more information.

Usage

rba_uniprot_proteomes_search(
  name = NULL,
  upid = NULL,
  taxid = NULL,
  keyword = NULL,
  xref = NULL,
  genome_acc = NULL,
  is_ref_proteome = NULL,
  is_redundant = NULL,
  ...
)

Arguments

name

a keyword in proteome's name

upid

UniProt Proteome identifier (UPID). You can supply up to 100 UPIDs.

taxid

NIH-NCBI Taxon ID. You can supply up to 20 taxon IDs.

keyword

Limit the search to entries that contain your supplied keyword. see: UniProt Keywords

xref

Proteome cross-references such as Genome assembly ID or Biosample ID. You can supply up to 20 cross-reference IDs.

genome_acc

Genome accession associated with the proteome's components.

is_ref_proteome

(logical) If TRUE, only return reference proteomes; If FALSE, only returns non-reference proteomes; If NULL (default), the results will not be filtered by this criteria see 'What are reference proteomes?' for more information.

is_redundant

(logical) If TRUE, only return redundant proteomes; If FALSE, only returns non-redundant proteomes; If NULL (default), the results will not be filtered by redundancy. see 'Reducing proteome redundancy' for more information.

...

rbioapi option(s). See rba_options's arguments manual for more information on available options.

Details

Note that this is a search function. Thus, you are not required to fill every argument; You may use whatever combinations of arguments you see fit for your query.

Value

A list where each element is a list that corresponds to a single proteome (search hit) and contains informations pertinent to that proteome.

Corresponding API Resources

"GET https://ebi.ac.uk/proteins/api/proteomes"

References

See Also

Other "UniProt - Proteomes": rba_uniprot_genecentric(), rba_uniprot_genecentric_search(), rba_uniprot_proteomes()

Examples


rba_uniprot_proteomes_search(name = "SARS-CoV")


rba_uniprot_proteomes_search(name = "SARS-CoV", is_ref_proteome = TRUE)


rba_uniprot_proteomes_search(name = "SARS-CoV", is_ref_proteome = TRUE)


rba_uniprot_proteomes_search(genome_acc = "AY274119")



[Package rbioapi version 0.8.1 Index]