~jon-hill/supertree-toolkit/new_interface_gtk

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
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="">
  <define name="analysis">
    <choice>
      <element name="analysis">
        <attribute name="name">
          <data type="string"/>
        </attribute>
      </element>
      <element name="analysis">
        <attribute name="name">
          <value>Maximum Parsimony</value>
        </attribute>
      </element>
      <element name="analysis">
        <attribute name="name">
          <value>Maximum Likelihood</value>
        </attribute>
      </element>
      <element name="analysis">
        <attribute name="name">
          <value>Bayesian</value>
        </attribute>
      </element>
      <element name="analysis">
        <attribute name="name">
          <value>Neighbour Joining</value>
        </attribute>
      </element>
      <element name="analysis">
        <attribute name="name">
          <value>UPGMA</value>
        </attribute>
      </element>
    </choice>
  </define>
</grammar>