-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMBEDEMO.m
42 lines (39 loc) · 1.03 KB
/
MBEDEMO.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
%% MBEToolbox DEMO
%
% Molecular Biology and Evolution Toolbox (MBEToolbox)
% Author: James Cai
% Email: jcai@tamu.edu
% Website: http://bioinformatics.org/mbetoolbox/
%
% $LastChangedDate: 2013-01-05 12:04:29 -0600 (Sat, 05 Jan 2013) $
% $LastChangedRevision: 327 $
% $LastChangedBy: jcai $
clc;
disp(' ')
disp(' ')
disp('%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%')
disp('%% %%')
disp('%% Welcome to MBEToolbox DEMO %%')
disp('%% %%')
disp('%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%')
disp(' ')
disp('(1) DEMO 1 - Alignment file IO')
disp('(2) DEMO 2 - Basic sequence statistics')
disp('(3) DEMO 3 - Genetic distances estimation')
disp('(4) DEMO 4 - Phylogenetic inferences')
disp('(5) DEMO 5 - New features in version 2')
disp('(6) EXIT')
disp(' ')
pickI = input('Please select: ');
switch (pickI)
case (1)
playshow mbe_demo1;
case (2)
playshow mbe_demo2;
case (3)
playshow mbe_demo3;
case (4)
playshow mbe_demo4;
case (5)
playshow mbe_demo5;
end