File: spaces.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 (29 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (7)
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
#NEXUS
BEGIN TREES;

   TRANSLATE
   1   'Allium drummondii',
   2   'Allium cernuum',
   3    A.cyaneum     
   ;
   TREE onion = [&R] ((1,2),3);
END;

#NEXUS
BEGIN TREES;

   TRANSLATE
   1   'Allium drummondii, USA',
   2   'Allium drummondii, Russia',
   3    A.cyaneum
   ;
   TREE onion = [&R] ((1,2),3);
END;

#NEXUS
BEGIN TREES;

   TRANSLATE 1   'Allium drummondii, Russia', 2   'Allium drummondii, USA', 3    A.cyaneum ;
   TREE onion = [&R] ((1,2),3);
END;