View source: R/refseq_protein2RNA.R
refseq_protein2RNA | R Documentation |
refseq_protein2RNA()
Returns the transcript accession from a single protein accession.
Depending on the function, available accessions in refseqR
include RefSeq models with the prefixes XM_ (mRNA), XR_ (non-coding RNA), and XP_ (protein), as well as subsequently curated RefSeq records with NM_, NR_, or NP_ accession prefixes.
refseq_protein2RNA(protein)
protein |
A character string of the protein id. |
A character vector containing the transcript ids that encode the protein
.
Jose V. Die
refseq_RNA2protein
to obtain the protein ids encoded by a set of transcript ids.
## Not run:
# Get the transcript id from a single protein accession
protein <- "XP_020244413"
refseq_protein2RNA(protein)
# Get the transcript ids from a set of protein accessions
protein = c("XP_004487758", "XP_004488550")
sapply(protein, function(x) refseq_protein2RNA(x), USE.NAMES = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.