This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Get whole gene number in Kegg

Hi,

How can we list\ get all gene number in KEGG using KEGG REST , i tried :

genes = urlread('http://rest.kegg.jp/list/genes'); genes = urlread('http://rest.kegg.jp/link/genes');

but does not work ??

please any suggestion

gene

1 answer

One way is to get list of organisms:

http://rest.kegg.jp/list/organism

and then list their genes one by one, e.g.:

http://rest.kegg.jp/list/T01001

Although this approach probably still misses some genes like those in viruses and metagenomes..

Log in to answer this question.