File: radical-whitespace.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 (51 lines) | stat: -rw-r--r-- 841 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#NEXUS

BEGIN TAXA;
      dimensions ntax=7;
      taxlabels A 

B 
C 
             D      E     F      G;  
END;

BEGIN CHARACTERS;
      dimensions nchar=5;
      format datatype=protein missing=? gap=-;
      charlabels 1

 2

 3

 4

5

;
      matrix
A     -      -O      N E      
B             -   -  ON          E
C TWO        --               
D             TH               RE              E
E   F                         -OU R
F     F           I             V      E-
G            S             I         X-             -                 ;
END
;

BEGIN TREES;
       tree radical_whitespace = (
(
 (
  (
   (
    (A:1,
         B:1):1,
                C:2):1,
                       D:3):1,
                              E:4):1,
                                     F:5):1,
                                            G:6)
;
END;