Add tests for memory leaks and weaken for Issue #81
[bioperl-live.git] / t / data / basic-ladder.nex
blobdf8edc164637689e6da6009ba15e7c5d58597eff
1 #NEXUS
3 BEGIN TAXA;
4       dimensions ntax=8;
5       taxlabels A B C D E F G H;  
6 END;
8 BEGIN CHARACTERS;
9       dimensions nchar=5;
10       format datatype=protein missing=? gap=-;
11       charlabels one two three four five;
12       matrix
13 A     --ONE
14 B     --ONE
15 C     TWO--
16 D     THREE
17 E     F-OUR
18 F     FIVE-
19 G     SIX--
20 H     SEVEN;
21 END;
23 BEGIN TREES;
24        tree basic_ladder = (((((((A:1,B:1):1,C:2):1,D:3):1,E:4):1,F:5):1,G:6):1,H:7);
25 END;