Entering edit mode
8.9 years ago
naving2uk
▴
10
Hi,
How can we define the number of gene in KEGG human metabolic pathway ?
I used KEGG API "Rest":
operation = 'list/';
database = 'pathway/';
organismCode1 = 'hsa';
pathway_list1 = urlread(strcat(base,operation,database,organismCode1));
pathway_list1 = regexpi(pathway_list1,'[^\n]+','match')';
This is will return the all the pathway for human, how can I define the metabolic pathway with their genes?