Merge pull request #168 from bioperl/fix-remote-taxonomy-test
[bioperl-live.git] / t / data / quoted-strings2.nex
blobd5e427e0118798f01ee404e5a1fb2fff32fcd1ec
1 #NEXUS
3 BEGIN TAXA;
4       dimensions ntax=8;
5       taxlabels A B 'OTU 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 'Char 3' Four Five;
12       matrix
13 A     --ONE
14 B     --ONE
15 'OTU 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 'the ladder tree' =
25        (((((((A:1,B:1):1,'OTU C':2):1,D:3):1,E:4):1,F:5):1,G:6):1,H:7);
26 END;