File: quoted-strings2.nex

package info (click to toggle)
bioperl 1.7.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 35,788 kB
  • sloc: perl: 94,019; xml: 14,811; makefile: 20
file content (26 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (8)
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
#NEXUS

BEGIN TAXA;
      dimensions ntax=8;
      taxlabels A B 'OTU C' D E F G H;
END;

BEGIN CHARACTERS;
      dimensions nchar=5;
      format datatype=protein missing=? gap=-;
      charlabels One Two 'Char 3' Four Five;
      matrix
A     --ONE
B     --ONE
'OTU C'     TWO--
D     THREE
E     F-OUR
F     FIVE-
G     SIX--
H     SEVEN;
END;

BEGIN TREES;
       tree 'the ladder tree' =
       (((((((A:1,B:1):1,'OTU C':2):1,D:3):1,E:4):1,F:5):1,G:6):1,H:7);
END;