KEGG database query
1
0
Entering edit mode
6.5 years ago

Dear all I have 1900 KEGG KO Ids like K03821, k21699 and so on . I have retrieved it for my genome using BLASTKoala. I want to retrieve corresponding pathway name, substrate, product, enzyme name, enzyme class, interacting pathways, reaction type and source.

please let me know how to use kegg api for this purpose or using some per or bioperl code.

KEGG database query • 1.9k views
ADD COMMENT
0
Entering edit mode
6.5 years ago

using togogws:

 for A in K03821 K21699 ; do wget -q -O - "http://togows.org/entry/kegg-orthology/${A}/pathways" | sed "s/\$/ ${A}/" ; done

ko00650  Butanoate metabolism K03821
ADD COMMENT
0
Entering edit mode

Thanks for sending your reply. It really works but what if I have a file of 1900 KO. How to use multiple KO for this purpose.

ADD REPLY
0
Entering edit mode

And why single KO ID gives multiple pathway name?

ADD REPLY
0
Entering edit mode
cat yourfile | while read A ; do wget ....

??

ADD REPLY
0
Entering edit mode

Really thanks it works..thankyou so much

ADD REPLY
1
Entering edit mode

Click on the pale green check mark on the left to validate+close please.

ADD REPLY

Login before adding your answer.

Traffic: 2279 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