protein ID convert to gene name ID
1
0
Entering edit mode
22 months ago
dew ▴ 10

Dear guys,

May I know if there is an R package for easily converting the protein ID to gene name?

Thanks a lot!

Best,

proteomics • 878 views
ADD COMMENT
1
Entering edit mode

I think it's easy by bash You can use

Grep -o -f {protein ID} {Gene ID}

ADD REPLY
1
Entering edit mode

That's hardly an answer, it's neither in R as requested, nor do you say where to get the conversion tables from that are required.

ADD REPLY
1
Entering edit mode

That depends a bit on the type of IDs you have, but the answer is most like biomaRt, can you post an example?

ADD REPLY
0
Entering edit mode

Thanks a lot! Left side is the protein ID, right side is the gene name by the online UniProt mapping tool. While the it shows more gene names were mapped than the protein ID numbers, so guess some protein ID also have multi mappings....

A0A075B6K4  IGLV3-10
A0A075B6S5  IGKV1-27
A0A0A0MRZ8  IGKV3D-11
A0A0B4J1V0  IGHV3-15
A0A0B4J1X5  IGHV3-74
A0A0C4DH42  IGHV3-66
A0A0C4DH69  IGKV1-9
A0A0C4DH73  IGKV1-12
A0A0J9YXX1  IGHV5-10-1
ADD REPLY
2
Entering edit mode
22 months ago
GenoMax 141k

Using EntrezDirect:

$ esearch -db protein -query A0A075B6K4 | elink -target gene | esummary | xtract -pattern DocumentSummary -element Name
IGLV3-10

For more than one ID (one per line in file test):

   $ for i in `cat test`; do printf ${i}"\t"; esearch -db protein -query ${i} | elink -target gene | esummary | xtract -pattern DocumentSummary -element Name; done
    A0A075B6K4      IGLV3-10
    A0A075B6S5      IGKV1-27
    A0A0A0MRZ8      IGKV3D-11
    A0A0B4J1V0      IGHV3-15
    A0A0B4J1X5      IGHV3-74
    A0A0C4DH42      IGHV3-66
    A0A0C4DH69      IGKV1-9
    A0A0C4DH73      IGKV1-12
    A0A0J9YXX1      IGHV5-10-1
ADD COMMENT
0
Entering edit mode

Amazing! Thanks a lot! :) Best regards!

ADD REPLY

Login before adding your answer.

Traffic: 2016 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6