Add tests for memory leaks and weaken for Issue #81
[bioperl-live.git] / t / data / basic-bush.nex
blob2b6b747c428e03c83b602106fa7a7c7c70b7d51f
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=6;
10       format datatype=protein missing=? gap=-;
11       charlabels one two three four five six;
12       matrix
13 A     WITH-B
14 B     WITH-A
15 C     WITH-D
16 D     WITH-C
17 E     WITH-F
18 F     WITH-E
19 G     WITH-H
20 H     WITH-G;
21 END;
23 BEGIN TREES;
24        tree basic_bush = (((A:1,B:1):1,(C:1,D:1):1):1,((E:1,F:1):1,(G:1,H:1):1):1);
25 END;