-
Notifications
You must be signed in to change notification settings - Fork 3
/
PRespTitle.m
71 lines (60 loc) · 2.28 KB
/
PRespTitle.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
% Copyright Xin-Guang Zhu and Stephen P. Long, University of Illinois
% Copyright © 2007
% This file is part of CarbonMetabolism.
% CarbonMetabolism is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 3 of the License, or
% (at your option) any later version.
% CarbonMetabolism is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
% You should have received a copy of the GNU General Public License (GPL)
% along with this program. If not, see <http://www.gnu.org/licenses/>.
function suc = PRespTitle(m,p,n)
if n==1
if m ==1
title('Glycerate');
elseif m==2
title('Glycolate');
elseif m==3
title('PGA');
elseif m==4
title('PGCA');
elseif m==5
title('C-glycolate');
elseif m==6
title('C-glyoxylate');
elseif m==7
title('C-Serine');
elseif m==8
title('C-Glycine');
elseif m==9
title('C-HPR');
else m==10
title('C-glycerate');
end
elseif n ==2
if m ==1
title('Rubisco oxygenation');
elseif m==2
title('Pglycolate phosphatase');
elseif m==3
title('Glycerate kinase');
elseif m==4
title('Pglycolate oxidase');
elseif m==5
title('Serine Glyoxylate transaminase');
elseif m==6
title('HOpyruvate oxidase');
elseif m==7
title('Glu glyoxylate transaminase');
elseif m==8
title('Glycine decarboxylase');
elseif m==9
title('Glycerate uptake');
else m==10
title('Glycolate export');
end
end
suc = 1;