File: intrablock-comment.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 (30 lines) | stat: -rw-r--r-- 547 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
27
28
29
30
#NEXUS

BEGIN TAXA;
[block-level comment in the TAXA block]
      dimensions ntax=8;
      taxlabels A B C D E F G H;  
END;

BEGIN CHARACTERS;
[block-level comment in the CHARACTERS block]

      dimensions nchar=5;
      format datatype=protein missing=? gap=-;
      charlabels 1 2 3 4 5;
      matrix
A     --ONE
B     --ONE
C     TWO--
D     THREE
E     F-OUR
F     FIVE-
G     SIX--
H     SEVEN;
END;

BEGIN TREES;
[block-level comment in the TREES block]

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