rba_uniprot_coordinates_sequence {rbioapi}R Documentation

Get Genome coordinate by Protein Sequence position

Description

Using this function you can retrieve genome coordinates of a given UniProt protein by providing protein position or position range. You can either supply 'p_position' alone or supply 'p_start' and 'p_end' together.

Usage

rba_uniprot_coordinates_sequence(
  accession,
  p_position = NULL,
  p_start = NULL,
  p_end = NULL,
  ...
)

Arguments

accession

UniProtKB primary or secondary accession.

p_position

(numeric) Protein sequence position

p_start

(numeric) Protein sequence position start

p_end

(numeric) Protein sequence position end

...

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

Details

For more information about how UniProt imports and calculates genomic coordinates data, see:
McGarvey, P. B., Nightingale, A., Luo, J., Huang, H., Martin, M. J., Wu, C., & UniProt Consortium (2019). UniProt genomic mapping for deciphering functional effects of missense variants. Human mutation, 40(6), 694–705. https://doi.org/10.1002/humu.23738

Value

Genome coordinates of your supplied proteins.

Corresponding API Resources

"GET https://ebi.ac.uk/proteins/api/coordinates/location /{accession}:{pPosition}"
"GET https://ebi.ac.uk/proteins/api/coordinates/location /{accession}:{pStart}-{pEnd}"

References

See Also

Other "UniProt - Coordinates": rba_uniprot_coordinates(), rba_uniprot_coordinates_location(), rba_uniprot_coordinates_search()

Examples


rba_uniprot_coordinates_sequence(accession = "P25942", p_position = 1)


rba_uniprot_coordinates_sequence(accession = "P25942",
    p_start = 1, p_end = 277)



[Package rbioapi version 0.8.1 Index]