--- /dev/null
+.xmlverb-default { color: #333333; background-color: #ffffff;
+ font-family: monospace }
+.xmlverb-element-name { color: #990000 }
+.xmlverb-element-nsprefix { color: #666600 }
+.xmlverb-attr-name { color: #660000 }
+.xmlverb-attr-content { color: #000099; font-weight: bold }
+.xmlverb-ns-name { color: #666600 }
+.xmlverb-ns-uri { color: #330099 }
+.xmlverb-text { color: #000000; font-weight: bold }
+.xmlverb-comment { color: #006600; font-style: italic }
+.xmlverb-pi-name { color: #006600; font-style: italic }
+.xmlverb-pi-content { color: #006666; font-style: italic }
+
--- /dev/null
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+ XML to HTML Verbatim Formatter with Syntax Highlighting
+ Version 1.1
+ Contributors: Doug Dicks, added auto-indent (parameter indent-elements)
+ for pretty-print
+
+ Copyright 2002 Oliver Becker
+ ob@obqo.de
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software distributed
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations under the License.
+
+ Alternatively, this software may be used under the terms of the
+ GNU Lesser General Public License (LGPL).
+-->
+
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:verb="http://informatik.hu-berlin.de/xmlverbatim"
+ exclude-result-prefixes="verb">
+
+ <xsl:output method="html" omit-xml-declaration="yes" indent="no"/>
+
+ <xsl:param name="indent-elements" select="false()" />
+
+ <xsl:template match="/">
+ <xsl:apply-templates select="." mode="xmlverb" />
+ </xsl:template>
+
+ <!-- root -->
+ <xsl:template match="/" mode="xmlverb">
+ <xsl:text>
</xsl:text>
+ <xsl:comment>
+ <xsl:text> converted by xmlverbatim.xsl 1.1, (c) O. Becker </xsl:text>
+ </xsl:comment>
+ <xsl:text>
</xsl:text>
+ <div class="xmlverb-default">
+ <xsl:apply-templates mode="xmlverb">
+ <xsl:with-param name="indent-elements" select="$indent-elements" />
+ </xsl:apply-templates>
+ </div>
+ <xsl:text>
</xsl:text>
+ </xsl:template>
+
+ <!-- wrapper -->
+ <xsl:template match="verb:wrapper">
+ <xsl:apply-templates mode="xmlverb">
+ <xsl:with-param name="indent-elements" select="$indent-elements" />
+ </xsl:apply-templates>
+ </xsl:template>
+
+ <xsl:template match="verb:wrapper" mode="xmlverb">
+ <xsl:apply-templates mode="xmlverb">
+ <xsl:with-param name="indent-elements" select="$indent-elements" />
+ </xsl:apply-templates>
+ </xsl:template>
+
+ <!-- element nodes -->
+ <xsl:template match="*" mode="xmlverb">
+ <xsl:param name="indent-elements" select="false()" />
+ <xsl:param name="indent" select="''" />
+ <xsl:param name="indent-increment" select="'   '" />
+ <xsl:if test="$indent-elements">
+ <br/>
+ <xsl:value-of select="$indent" />
+ </xsl:if>
+ <xsl:text><</xsl:text>
+ <xsl:variable name="ns-prefix"
+ select="substring-before(name(),':')" />
+ <xsl:if test="$ns-prefix != ''">
+ <span class="xmlverb-element-nsprefix">
+ <xsl:value-of select="$ns-prefix"/>
+ </span>
+ <xsl:text>:</xsl:text>
+ </xsl:if>
+ <span class="xmlverb-element-name">
+ <xsl:value-of select="local-name()"/>
+ </span>
+ <xsl:variable name="pns" select="../namespace::*"/>
+ <xsl:if test="$pns[name()=''] and not(namespace::*[name()=''])">
+ <span class="xmlverb-ns-name">
+ <xsl:text> xmlns</xsl:text>
+ </span>
+ <xsl:text>=""</xsl:text>
+ </xsl:if>
+ <xsl:for-each select="namespace::*">
+ <xsl:if test="not($pns[name()=name(current()) and
+ .=current()])">
+ <xsl:call-template name="xmlverb-ns" />
+ </xsl:if>
+ </xsl:for-each>
+ <xsl:for-each select="@*">
+ <xsl:call-template name="xmlverb-attrs" />
+ </xsl:for-each>
+ <xsl:choose>
+ <xsl:when test="node()">
+ <xsl:text>></xsl:text>
+ <xsl:apply-templates mode="xmlverb">
+ <xsl:with-param name="indent-elements"
+ select="$indent-elements"/>
+ <xsl:with-param name="indent"
+ select="concat($indent, $indent-increment)"/>
+ <xsl:with-param name="indent-increment"
+ select="$indent-increment"/>
+ </xsl:apply-templates>
+ <xsl:if test="* and $indent-elements">
+ <br/>
+ <xsl:value-of select="$indent" />
+ </xsl:if>
+ <xsl:text></</xsl:text>
+ <xsl:if test="$ns-prefix != ''">
+ <span class="xmlverb-element-nsprefix">
+ <xsl:value-of select="$ns-prefix"/>
+ </span>
+ <xsl:text>:</xsl:text>
+ </xsl:if>
+ <span class="xmlverb-element-name">
+ <xsl:value-of select="local-name()"/>
+ </span>
+ <xsl:text>></xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text> /></xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ <xsl:if test="not(parent::*)"><br /><xsl:text>
</xsl:text></xsl:if>
+ </xsl:template>
+
+ <!-- attribute nodes -->
+ <xsl:template name="xmlverb-attrs">
+ <xsl:text> </xsl:text>
+ <span class="xmlverb-attr-name">
+ <xsl:value-of select="name()"/>
+ </span>
+ <xsl:text>="</xsl:text>
+ <span class="xmlverb-attr-content">
+ <xsl:call-template name="html-replace-entities">
+ <xsl:with-param name="text" select="normalize-space(.)" />
+ <xsl:with-param name="attrs" select="true()" />
+ </xsl:call-template>
+ </span>
+ <xsl:text>"</xsl:text>
+ </xsl:template>
+
+ <!-- namespace nodes -->
+ <xsl:template name="xmlverb-ns">
+ <xsl:if test="name()!='xml'">
+ <span class="xmlverb-ns-name">
+ <xsl:text> xmlns</xsl:text>
+ <xsl:if test="name()!=''">
+ <xsl:text>:</xsl:text>
+ </xsl:if>
+ <xsl:value-of select="name()"/>
+ </span>
+ <xsl:text>="</xsl:text>
+ <span class="xmlverb-ns-uri">
+ <xsl:value-of select="."/>
+ </span>
+ <xsl:text>"</xsl:text>
+ </xsl:if>
+ </xsl:template>
+
+ <!-- text nodes -->
+ <xsl:template match="text()" mode="xmlverb">
+ <span class="xmlverb-text">
+ <xsl:call-template name="preformatted-output">
+ <xsl:with-param name="text">
+ <xsl:call-template name="html-replace-entities">
+ <xsl:with-param name="text" select="." />
+ </xsl:call-template>
+ </xsl:with-param>
+ </xsl:call-template>
+ </span>
+ </xsl:template>
+
+ <!-- comments -->
+ <xsl:template match="comment()" mode="xmlverb">
+ <xsl:text><!--</xsl:text>
+ <span class="xmlverb-comment">
+ <xsl:call-template name="preformatted-output">
+ <xsl:with-param name="text" select="." />
+ </xsl:call-template>
+ </span>
+ <xsl:text>--></xsl:text>
+ <xsl:if test="not(parent::*)"><br /><xsl:text>
</xsl:text></xsl:if>
+ </xsl:template>
+
+ <!-- processing instructions -->
+ <xsl:template match="processing-instruction()" mode="xmlverb">
+ <xsl:text><?</xsl:text>
+ <span class="xmlverb-pi-name">
+ <xsl:value-of select="name()"/>
+ </span>
+ <xsl:if test=".!=''">
+ <xsl:text> </xsl:text>
+ <span class="xmlverb-pi-content">
+ <xsl:value-of select="."/>
+ </span>
+ </xsl:if>
+ <xsl:text>?></xsl:text>
+ <xsl:if test="not(parent::*)"><br /><xsl:text>
</xsl:text></xsl:if>
+ </xsl:template>
+
+
+ <!-- =========================================================== -->
+ <!-- Procedures / Functions -->
+ <!-- =========================================================== -->
+
+ <!-- generate entities by replacing &, ", < and > in $text -->
+ <xsl:template name="html-replace-entities">
+ <xsl:param name="text" />
+ <xsl:param name="attrs" />
+ <xsl:variable name="tmp">
+ <xsl:call-template name="replace-substring">
+ <xsl:with-param name="from" select="'>'" />
+ <xsl:with-param name="to" select="'&gt;'" />
+ <xsl:with-param name="value">
+ <xsl:call-template name="replace-substring">
+ <xsl:with-param name="from" select="'<'" />
+ <xsl:with-param name="to" select="'&lt;'" />
+ <xsl:with-param name="value">
+ <xsl:call-template name="replace-substring">
+ <xsl:with-param name="from"
+ select="'&'" />
+ <xsl:with-param name="to"
+ select="'&amp;'" />
+ <xsl:with-param name="value"
+ select="$text" />
+ </xsl:call-template>
+ </xsl:with-param>
+ </xsl:call-template>
+ </xsl:with-param>
+ </xsl:call-template>
+ </xsl:variable>
+ <xsl:choose>
+ <!-- $text is an attribute value -->
+ <xsl:when test="$attrs">
+ <xsl:call-template name="replace-substring">
+ <xsl:with-param name="from" select="'
'" />
+ <xsl:with-param name="to" select="'&#xA;'" />
+ <xsl:with-param name="value">
+ <xsl:call-template name="replace-substring">
+ <xsl:with-param name="from"
+ select="'"'" />
+ <xsl:with-param name="to"
+ select="'&quot;'" />
+ <xsl:with-param name="value" select="$tmp" />
+ </xsl:call-template>
+ </xsl:with-param>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$tmp" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <!-- replace in $value substring $from with $to -->
+ <xsl:template name="replace-substring">
+ <xsl:param name="value" />
+ <xsl:param name="from" />
+ <xsl:param name="to" />
+ <xsl:choose>
+ <xsl:when test="contains($value,$from)">
+ <xsl:value-of select="substring-before($value,$from)" />
+ <xsl:value-of select="$to" />
+ <xsl:call-template name="replace-substring">
+ <xsl:with-param name="value"
+ select="substring-after($value,$from)" />
+ <xsl:with-param name="from" select="$from" />
+ <xsl:with-param name="to" select="$to" />
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$value" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <!-- preformatted output: space as , tab as 8
+ nl as <br> -->
+ <xsl:template name="preformatted-output">
+ <xsl:param name="text" />
+ <xsl:call-template name="output-nl">
+ <xsl:with-param name="text">
+ <xsl:call-template name="replace-substring">
+ <xsl:with-param name="value"
+ select="translate($text,' ',' ')" />
+ <xsl:with-param name="from" select="'	'" />
+ <xsl:with-param name="to"
+ select="'        '" />
+ </xsl:call-template>
+ </xsl:with-param>
+ </xsl:call-template>
+ </xsl:template>
+
+ <!-- output nl as <br> -->
+ <xsl:template name="output-nl">
+ <xsl:param name="text" />
+ <xsl:choose>
+ <xsl:when test="contains($text,'
')">
+ <xsl:value-of select="substring-before($text,'
')" />
+ <br />
+ <xsl:text>
</xsl:text>
+ <xsl:call-template name="output-nl">
+ <xsl:with-param name="text"
+ select="substring-after($text,'
')" />
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$text" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+</xsl:stylesheet>
--- /dev/null
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+ XML to HTML Verbatim Formatter with Syntax Highlighting
+ Version 1.1
+
+ Copyright 2002 Oliver Becker
+ ob@obqo.de
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software distributed
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations under the License.
+
+ Alternatively, this software may be used under the terms of the
+ GNU Lesser General Public License (LGPL).
+-->
+
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+ <xsl:import href="xmlverbatim.xsl" />
+
+ <xsl:output method="html"
+ doctype-public="-//W3C//DTD HTML 4.0 Transitional//EN" />
+
+ <!-- select the name of an element that should be formatted
+ (print only these elements and their contents) -->
+ <xsl:param name="select" />
+
+ <!-- CSS Stylesheet -->
+ <xsl:param name="css-stylesheet" select="'xmlverbatim.css'" />
+
+ <!-- root -->
+ <xsl:template match="/">
+ <xsl:apply-templates select="/" mode="xmlverbwrapper" />
+ </xsl:template>
+
+ <xsl:template match="/" mode="xmlverbwrapper">
+ <html>
+ <head>
+ <title>XML source view</title>
+ <link rel="stylesheet" type="text/css"
+ href="{$css-stylesheet}" />
+ </head>
+ <body class="xmlverb-default">
+ <tt>
+ <xsl:choose>
+ <!-- "select" parameter present? -->
+ <xsl:when test="$select">
+ <xsl:apply-templates mode="xmlverbwrapper" />
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:apply-templates select="." mode="xmlverb" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </tt>
+ </body>
+ </html>
+ <xsl:text>
</xsl:text>
+ </xsl:template>
+
+ <xsl:template match="*" mode="xmlverbwrapper">
+ <xsl:choose>
+ <xsl:when test="name()=$select">
+ <!-- switch to render mode -->
+ <!-- print indent -->
+ <span class="xmlverb-text">
+ <xsl:call-template name="preformatted-output">
+ <xsl:with-param name="text">
+ <xsl:call-template name="find-last-line">
+ <xsl:with-param name="text"
+ select="preceding-sibling::node()[1][self::text()]" />
+ </xsl:call-template>
+ </xsl:with-param>
+ </xsl:call-template>
+ </span>
+ <!-- print element -->
+ <xsl:apply-templates select="." mode="xmlverb" />
+ <br /><br />
+ </xsl:when>
+ <xsl:otherwise>
+ <!-- look for the selected element among the children -->
+ <xsl:apply-templates select="*" mode="xmlverbwrapper" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+ <!-- return the last line (after newline) in parameter $text -->
+ <xsl:template name="find-last-line">
+ <xsl:param name="text" />
+ <xsl:choose>
+ <xsl:when test="contains($text,'
')">
+ <xsl:call-template name="find-last-line">
+ <xsl:with-param name="text"
+ select="substring-after($text,'
')" />
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$text" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
+</xsl:stylesheet>
--- /dev/null
+
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>phyloXML 0.90 - phyloxml.xsd</title>
+ <meta http-equiv="Content-Type" content="text/xml; charset=UTF-8"/>
+ <style type="text/css">
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* More-configurable styles */
+
+/******** General ********/
+
+/* Document body */
+body {
+ color: Black;
+ background-color: White;
+ font-family: Arial, sans-serif;
+ font-size: 10pt;
+}
+
+/* Horizontal rules */
+hr {
+ color: black;
+}
+/* Document title */
+h1 {
+ font-size: 18pt;
+ letter-spacing: 2px;
+ border-bottom: 1px #ccc solid;
+ padding-top: 5px;
+ padding-bottom: 5px;
+}
+/* Main section headers */
+h2 {
+ font-size: 14pt;
+ letter-spacing: 1px;
+}
+/* Sub-section headers */
+h3, h3 a, h3 span {
+ font-size: 12pt;
+ font-weight: bold;
+ color: black;
+}
+/* Table displaying the properties of the schema components or the
+ schema document itself */
+table.properties th, table.properties th a {
+ color: black;
+ background-color: #F99; /* Pink */
+}
+table.properties td {
+ background-color: #eee; /* Gray */
+}
+
+img{
+ border: 0;
+}
+
+/********* Documentation style *************/
+p.documentation {
+ color:black;
+ font-style:italic;
+ background-color: #EEEEFF;
+ border: 1px solid #DDDDFF;
+ padding-top: 1px;
+ margin-right: 30px;
+ margin-top: 1px;
+}
+
+
+/******** Table of Contents Section ********/
+
+/* Controls for switching between printing and viewing modes */
+div#printerControls {
+ color: #963; /* Orange-brown */
+}
+/* Controls that can collapse or expand all XML Instance
+ Representation and Schema Component Representation boxes */
+div#globalControls {
+ border: 2px solid #999;
+}
+
+
+/******** Schema Document Properties Section ********/
+
+/* Table displaying the namespaces declared in the schema */
+table.namespaces th {
+ background-color: #ccc;
+}
+table.namespaces td {
+ background-color: #eee;
+}
+/* Target namespace of the schema */
+span.targetNS {
+ color: #06C;
+ font-weight: bold;
+}
+
+
+/******** Schema Components' Sections ********/
+
+/* Name of schema component */
+.name {
+ color: #F93; /* Orange */
+}
+
+/* Hierarchy table */
+table.hierarchy {
+ border: 2px solid #999; /* Gray */
+}
+
+/* XML Instance Representation table */
+div.sample div.contents {
+ border: 1px dashed black;
+}
+
+
+/* Schema Component Representation table */
+div.schemaComponent div.contents {
+ border: 2px black solid;
+}
+
+
+/******** Glossary Section ********/
+
+/* Glossary Terms */
+.glossaryTerm {
+ color: #036; /* Blue */
+}
+
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* Printer-version styles */
+
+@media print {
+
+/* Ensures that controls are hidden when printing */
+div#printerControls {
+ visibility: hidden;
+}
+div#globalControls {
+ visibility: hidden;
+}
+#legend {
+ display: none;
+}
+#legendTOC {
+ display: none;
+}
+#glossary {
+ display: none;
+}
+#glossaryTOC {
+ display: none;
+}
+
+}
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* Base styles */
+
+/******** General ********/
+
+/* Unordered lists */
+ul {
+ margin-left: 1.5em;
+ margin-bottom: 0em;
+}
+/* Tables */
+table {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+table th, table td {
+ font-size: 10pt;
+ vertical-align: top;
+ padding-top: 3px;
+ padding-bottom: 3px;
+ padding-left: 10px;
+ padding-right: 10px;
+}
+table th {
+ font-weight: bold;
+ text-align: left;
+}
+/* Table displaying the properties of the schema components or the
+ schema document itself */
+table.properties {
+ width: 90%;
+}
+table.properties th {
+ width: 30%;
+}
+/* Boxes that can make its content appear and disappear*/
+div.box {
+ margin: 1em;
+}
+ /* Box caption */
+div.box span.caption {
+ font-weight: bold;
+}
+ /* Button to open and close the box */
+div.box input.control {
+ width: 1.4em;
+ height: 1.4em;
+ text-align: center;
+ vertical-align: middle;
+ font-size: 11pt;
+}
+ /* Box contents */
+div.box div.contents {
+ margin-top: 3px;
+}
+
+
+/******** Table of Contents Section ********/
+
+/* Controls for switching between printing and viewing modes */
+div#printerControls {
+ white-space: nowrap;
+ font-weight: bold;
+ padding: 5px;
+ margin: 5px;
+}
+/* Controls that can collapse or expand all XML Instance
+ Representation and Schema Component Representation boxes */
+div#globalControls {
+ padding: 10px;
+ margin: 5px;
+}
+
+
+/******** Schema Document Properties Section ********/
+
+/* Table displaying the namespaces declared in the schema */
+table.namespaces th {
+}
+table.namespaces td {
+}
+/* Target namespace of the schema */
+span.targetNS {
+}
+
+
+/******** Schema Components' Sections ********/
+
+/* Name of schema component */
+.name {
+}
+
+/* Hierarchy table */
+table.hierarchy {
+ width: 90%;
+}
+table.hierarchy th {
+ font-weight: normal;
+ font-style: italic;
+ width: 20%;
+}
+table.hierarchy th, table.hierarchy td {
+ padding: 5px;
+}
+
+/* XML Instance Representation table */
+div.sample {
+ width: 90%;
+}
+div.sample div.contents {
+ padding: 5px;
+ font-family: Courier New, sans-serif;
+ font-size: 10pt;
+}
+ /* Normal elements and attributes */
+div.sample div.contents, div.sample div.contents a {
+ color: black;
+}
+ /* Group Headers */
+div.sample div.contents .group, div.sample div.contents .group a {
+ color: #999; /* Light gray */
+}
+ /* Type Information */
+div.sample div.contents .type, div.sample div.contents .type a {
+ color: #999; /* Light gray */
+}
+ /* Occurrence Information */
+div.sample div.contents .occurs, div.sample div.contents .occurs a {
+ color: #999; /* Light gray */
+}
+ /* Fixed values */
+div.sample div.contents .fixed {
+ color: #063; /* Green */
+ font-weight: bold;
+}
+ /* Simple type constraints */
+div.sample div.contents .constraint, div.sample div.contents .constraint a {
+ color: #999; /* Light gray */
+}
+ /* Elements and attributes inherited from base type */
+div.sample div.contents .inherited, div.sample div.contents .inherited a {
+ color: #666; /* Dark gray */
+}
+ /* Elements and attributes added to or changed from base type */
+div.sample div.contents .newFields {
+ font-weight: bold;
+}
+ /* Other type of information */
+div.sample div.contents .other, div.sample div.contents .other a {
+ color: #369; /* Blue */
+ font-style: italic;
+}
+ /* Link to open up window displaying documentation */
+div.sample div.contents a.documentation {
+ text-decoration: none;
+ padding-left: 3px;
+ padding-right: 3px;
+ padding-top: 0px;
+ padding-bottom: 0px;
+ font-weight: bold;
+ font-size: 11pt;
+ background-color: #FFD;
+ color: #069;
+}
+ /* Invert colors when hovering over link to open up window
+ displaying documentation */
+div.sample div.contents a.documentation:hover {
+ color: #FFD;
+ background-color: #069;
+}
+
+/* Schema Component Representation table */
+div.schemaComponent {
+ width: 90%;
+}
+div.schemaComponent div.contents {
+ font-family: Courier New, sans-serif;
+ font-size: 10pt;
+ padding: 5px;
+}
+ /* Syntax characters */
+div.schemaComponent div.contents {
+ color: #00f; /* blue */
+}
+ /* Element and attribute tags */
+div.schemaComponent div.contents .scTag {
+ color: #933; /* maroon */
+}
+ /* Element and attribute content */
+div.schemaComponent div.contents .scContent, div.schemaComponent div.contents .scContent a {
+ color: black;
+ font-weight: bold;
+}
+ /* Comments */
+div.schemaComponent div.contents .comment {
+ color: #999; /* Light gray */
+}
+
+/******** Legend Section ********/
+
+div#legend table, div#legend div {
+ margin-bottom: 3px;
+}
+div#legend div.hint {
+ color: #999; /* Light gray */
+ width: 90%;
+ margin-left: 1em;
+ margin-bottom: 2em;
+}
+
+
+/******** Glossary Section ********/
+
+/* Glossary Terms */
+.glossaryTerm {
+ font-weight: bold;
+}
+
+/********* Details *************/
+.detailsToc {
+ color: #666; /* Light gray */
+}
+
+.details {
+ color: #666; /* Light gray */
+ text-decoration:none;
+}
+
+/******** Footer ********/
+
+.footer {
+ font-size: 8pt;
+}
+</style>
+ <script type="text/javascript">
+<!--
+ /* IDs of XML Instance Representation boxes */
+var xiBoxes = new Array('h270234806_xibox', 'h155831896_xibox', 'h535307528_xibox', 'h-1124608460_xibox', 'h888650454_xibox', 'h712147427_xibox', 'h518348337_xibox', 'h-1794244794_xibox', 'h-213750342_xibox', 'h259010940_xibox', 'h-1389097534_xibox', 'h-1122459339_xibox', 'h1358103055_xibox', 'h-1514309680_xibox', 'h1535743041_xibox', 'h917087604_xibox', 'h-494260170_xibox', 'h890448016_xibox', 'h-1670259669_xibox', 'h-676012345_xibox', 'h-993584945_xibox', 'h-853091232_xibox', 'h-979596407_xibox', 'h-1691165380_xibox', 'h-802965662_xibox', 'h519911868_xibox', 'h192331856_xibox', 'h-1482113798_xibox', 'h577349652_xibox');
+/* IDs of diagram boxes */
+var diagramBoxes = new Array('h270234806_diagram', 'h155831896_diagram', 'h535307528_diagram', 'h-1124608460_diagram', 'h888650454_diagram', 'h712147427_diagram', 'h518348337_diagram', 'h-1794244794_diagram', 'h-213750342_diagram', 'h259010940_diagram', 'h-1389097534_diagram', 'h-1122459339_diagram', 'h1358103055_diagram', 'h-1514309680_diagram', 'h1535743041_diagram', 'h917087604_diagram', 'h-494260170_diagram', 'h890448016_diagram', 'h-1670259669_diagram', 'h-676012345_diagram', 'h-993584945_diagram', 'h-853091232_diagram', 'h-979596407_diagram', 'h-1691165380_diagram', 'h-802965662_diagram', 'h519911868_diagram', 'h192331856_diagram', 'h-1482113798_diagram', 'h577349652_diagram');
+/* IDs of logical diagram boxes */
+var logicalDiagramBoxes = new Array('h270234806_logicalDiagram');
+/* IDs of Schema Component Representation boxes */
+var scBoxes = new Array('schema_scbox', 'h270234806_scbox', 'h155831896_scbox', 'h535307528_scbox', 'h-1124608460_scbox', 'h888650454_scbox', 'h712147427_scbox', 'h518348337_scbox', 'h-1794244794_scbox', 'h-213750342_scbox', 'h259010940_scbox', 'h-1389097534_scbox', 'h-1122459339_scbox', 'h1358103055_scbox', 'h-1514309680_scbox', 'h1535743041_scbox', 'h917087604_scbox', 'h-494260170_scbox', 'h890448016_scbox', 'h-1670259669_scbox', 'h-676012345_scbox', 'h-993584945_scbox', 'h-853091232_scbox', 'h-979596407_scbox', 'h-1691165380_scbox', 'h-802965662_scbox', 'h519911868_scbox', 'h192331856_scbox', 'h-1482113798_scbox', 'h577349652_scbox');
+
+/**
+ * Can get the ID of the button controlling
+ * a collapseable box by concatenating
+ * this string onto the ID of the box itself.
+ */
+var B_SFIX = "_button";
+
+
+/**
+ * Returns an element in the current HTML document.
+ *
+ * @param elementID Identifier of HTML element
+ * @return HTML element object
+ */
+function getElementObject(elementID) {
+ var elemObj = null;
+ if (document.getElementById) {
+ elemObj = document.getElementById(elementID);
+ }
+ return elemObj;
+}
+
+/**
+ * Closes a collapseable box.
+ *
+ * @param boxObj Collapseable box
+ * @param buttonObj Button controlling box
+ */
+function closeBox(boxObj, buttonObj) {
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else {
+ // Change 'display' CSS property of box
+ boxObj.style.display="none";
+
+ // Change text of button
+ if (boxObj.style.display=="none") {
+ buttonObj.value=" + ";
+ }
+ }
+}
+
+/**
+ * Opens a collapseable box.
+ *
+ * @param boxObj Collapseable box
+ * @param buttonObj Button controlling box
+ */
+function openBox(boxObj, buttonObj) {
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else {
+ // Change 'display' CSS property of box
+ boxObj.style.display="block";
+
+ // Change text of button
+ if (boxObj.style.display=="block") {
+ buttonObj.value=" - ";
+ }
+ }
+}
+
+/**
+ * Sets the state of a collapseable box.
+ *
+ * @param boxID Identifier of box
+ * @param open If true, box is "opened",
+ * Otherwise, box is "closed".
+ */
+function setState(boxID, open) {
+ var boxObj = getElementObject(boxID);
+ var buttonObj = getElementObject(boxID+B_SFIX);
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else if (open) {
+ openBox(boxObj, buttonObj);
+ // Make button visible
+ buttonObj.style.display="inline";
+ } else {
+ closeBox(boxObj, buttonObj);
+ // Make button visible
+ buttonObj.style.display="inline";
+ }
+}
+
+/**
+ * Switches the state of a collapseable box, e.g.
+ * if it's opened, it'll be closed, and vice versa.
+ *
+ * @param boxID Identifier of box
+ */
+function switchState(boxID) {
+ var boxObj = getElementObject(boxID);
+ var buttonObj = getElementObject(boxID+B_SFIX);
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else if (boxObj.style.display=="none") {
+ // Box is closed, so open it
+ openBox(boxObj, buttonObj);
+ } else if (boxObj.style.display=="block") {
+ // Box is opened, so close it
+ closeBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Closes all boxes in a given list.
+ *
+ * @param boxList Array of box IDs
+ */
+function collapseAll(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ var boxObj = getElementObject(boxList[idx]);
+ var buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ closeBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Open all boxes in a given list.
+ *
+ * @param boxList Array of box IDs
+ */
+function expandAll(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ var boxObj = getElementObject(boxList[idx]);
+ var buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ openBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Makes all the control buttons of boxes appear.
+ *
+ * @param boxList Array of box IDs
+ */
+function viewControlButtons(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ if (buttonObj != null) {
+ buttonObj.style.display = "inline";
+ }
+ }
+}
+
+/**
+ * Makes all the control buttons of boxes disappear.
+ *
+ * @param boxList Array of box IDs
+ */
+function hideControlButtons(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ if (buttonObj != null) {
+ buttonObj.style.display = "none";
+ }
+ }
+}
+
+/**
+ * Sets the page for either printing mode
+ * or viewing mode. In printing mode, the page
+ * is made to be more readable when printing it out.
+ * In viewing mode, the page is more browsable.
+ *
+ * @param isPrinterVersion If true, display in
+ * printing mode; otherwise,
+ * in viewing mode
+ */
+function displayMode(isPrinterVersion) {
+ var obj;
+ if (isPrinterVersion) {
+ // Hide global control buttons
+ obj = getElementObject("globalControls");
+ if (obj != null) {
+ obj.style.visibility = "hidden";
+ }
+ // Hide Legend
+ obj = getElementObject("legend");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ obj = getElementObject("legendTOC");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ // Hide Glossary
+ obj = getElementObject("glossary");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ obj = getElementObject("glossaryTOC");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+
+ // Expand all diagrams
+ expandAll(diagramBoxes);
+ // Expand all logical diagrams
+ expandAll(logicalDiagramBoxes);
+ // Expand all XML Instance Representation tables
+ expandAll(xiBoxes);
+ // Expand all Schema Component Representation tables
+ expandAll(scBoxes);
+
+ // Hide Control buttons
+ hideControlButtons(diagramBoxes);
+ hideControlButtons(logicalDiagramBoxes);
+ hideControlButtons(xiBoxes);
+ hideControlButtons(scBoxes);
+ } else {
+ // View global control buttons
+ obj = getElementObject("globalControls");
+ if (obj != null) {
+ obj.style.visibility = "visible";
+ }
+ // View Legend
+ obj = getElementObject("legend");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ obj = getElementObject("legendTOC");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ // View Glossary
+ obj = getElementObject("glossary");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ obj = getElementObject("glossaryTOC");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+
+ // Expand all diagram boxes
+ expandAll(diagramBoxes);
+ // Collapse all logical diagram boxes.
+ collapseAll(logicalDiagramBoxes);
+ // Expand all XML Instance Representation tables
+ expandAll(xiBoxes);
+ // Collapse all Schema Component Representation tables
+ collapseAll(scBoxes);
+
+ // View Control buttons
+ viewControlButtons(diagramBoxes);
+ viewControlButtons(logicalDiagramBoxes);
+ viewControlButtons(xiBoxes);
+ viewControlButtons(scBoxes);
+ }
+}
+
+
+
+// -->
+</script>
+ <script type="text/javascript">
+<!--
+
+
+/**
+ * Counter of documentation windows
+ * Used to give each window a unique name
+ */
+var windowCount = 0;
+
+/**
+ * Opens up a window displaying the documentation
+ * of a schema component in the XML Instance
+ * Representation table.
+ *
+ * @param compDesc Description of schema component
+ * @param compName Name of schema component
+ * @param docTextArray Array containing the paragraphs
+ * of the new document
+ */
+function viewDocumentation(compDesc, compName, docTextArray) {
+ var width = 400;
+ var height = 200;
+ var locX = 100;
+ var locY = 200;
+
+ /* Generate content */
+ var actualText = "<html>";
+ actualText += "<head><title>";
+ actualText += compDesc;
+ if (compName != '') {
+ actualText += ": " + compName;
+ }
+ actualText += "</title></head>";
+ actualText += "<body bgcolor=\"#FFFFEE\">";
+ // Title
+ actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 12pt; font-weight: bold; letter-spacing:1px;\">";
+ actualText += compDesc;
+ if (compName != '') {
+ actualText += ": <span style=\"color:#006699\">" + compName + "</span>";
+ }
+ actualText += "</p>";
+ // Documentation
+ var idx;
+ for (idx = 0; idx < docTextArray.length; idx++) {
+ actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 10pt;\">" + docTextArray[idx] + "</p>";
+ }
+ // Link to close window
+ actualText += "<a href=\"javascript:void(0)\" onclick=\"window.close();\" style=\"font-family: Arial, sans-serif; font-size: 8pt;\">Close</a>";
+ actualText += "</body></html>";
+
+ /* Display window */
+ windowCount++;
+ var docWindow = window.open("", "documentation"+windowCount, "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable,alwaysRaised,dependent,titlebar=no,width="+width+",height="+height+",screenX="+locX+",left="+locX+",screenY="+locY+",top="+locY);
+ docWindow.document.write(actualText);
+}
+
+// -->
+</script>
+ </head>
+ <body>
+ <h1>
+ <a name="top">phyloXML 0.90</a>
+ </h1>
+ <div style="float: right;">
+ <div id="printerControls" style="display:none;">
+ <input type="checkbox" onclick="displayMode(this.checked)"/>Printer-friendly Version</div>
+ <script type="text/javascript">
+<!--
+
+var pc = getElementObject("printerControls");
+if (pc != null) {
+ pc.style.display="block";
+}
+
+// -->
+</script>
+ <div id="globalControls" style="display:none">
+ <strong>Logical Diagram:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(logicalDiagramBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(logicalDiagramBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>XML Instance Representation:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(xiBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(xiBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>Diagram:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(diagramBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(diagramBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>Schema Component Representation:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(scBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(scBoxes)">Collapse All</a> ]</span>
+ </div>
+ <script type="text/javascript">
+<!--
+
+var gc = getElementObject("globalControls");
+if (gc != null) {
+ gc.style.display="block";
+}
+
+// -->
+</script>
+ </div>
+ <h2>Table of Contents</h2>
+ <ul>
+ <li>
+ <a href="#SchemaProperties">Schema Document Properties</a>
+ </li>
+ <li>
+ <a href="#SchemaDeclarations">Global Declarations</a>
+ <ul>
+ <li>
+ <a href="#h270234806">Element: <strong>phyloxml</strong>
+ </a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="#SchemaDefinitions">Global Definitions</a>
+ <ul>
+ <li>
+ <a href="#h917087604">Complex Type: <strong>Annotation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h1535743041">Complex Type: <strong>BinaryCharacterList</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1514309680">Complex Type: <strong>BinaryCharacters</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1691165380">Complex Type: <strong>BranchColor</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1124608460">Complex Type: <strong>Clade</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h192331856">Complex Type: <strong>CladeRelation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-993584945">Complex Type: <strong>Confidence</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-494260170">Complex Type: <strong>Custom</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h259010940">Complex Type: <strong>DomainArchitecture</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1122459339">Complex Type: <strong>Event</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-853091232">Complex Type: <strong>Id</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h535307528">Complex Type: <strong>Phylogeny</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h155831896">Complex Type: <strong>Phyloxml</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1389097534">Complex Type: <strong>ProteinDomain</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1794244794">Complex Type: <strong>Sequence</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-802965662">Complex Type: <strong>SequenceRelation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h888650454">Complex Type: <strong>Taxonomy</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-676012345">Complex Type: <strong>Uri</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1670259669">Simple Type: <strong>CustomProperty</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h890448016">Simple Type: <strong>CustomType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-979596407">Simple Type: <strong>Distribution</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h1358103055">Simple Type: <strong>EventType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-213750342">Simple Type: <strong>MolSeq</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h518348337">Simple Type: <strong>Rank</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h519911868">Simple Type: <strong>SequenceRelationType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h712147427">Simple Type: <strong>TaxonomyCode</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h577349652">Simple Type: <strong>id_ref</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1482113798">Simple Type: <strong>id_source</strong>
+ </a>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ <ul id="legendTOC" style="margin-top: 0em">
+ <li>
+ <a href="#Legend">Legend</a>
+ </li>
+ </ul>
+ <ul id="glossaryTOC" style="margin-top: 0em">
+ <li>
+ <a href="#Glossary">Glossary</a>
+ </li>
+ </ul>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaProperties">Schema Document Properties</a>
+ </h2>
+ <table class="properties">
+ <tr>
+ <th>
+ <a title="Look up 'Target Namespace' in glossary"
+ href="phyloxml.xsd.html#term_TargetNS">Target Namespace</a>
+ </th>
+ <td>
+ <span class="targetNS">http://www.phyloxml.org</span>
+ </td>
+ </tr>
+ <tr>
+ <th>Element and Attribute Namespaces</th>
+ <td>
+ <ul>
+ <li>Global element and attribute declarations belong to this schema's target namespace.</li>
+ <li>By default, local element declarations belong to this schema's target namespace.</li>
+ <li>By default, local attribute declarations have no namespace.</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <h3>Declared Namespaces</h3>
+ <table class="namespaces">
+ <tr>
+ <th>Prefix</th>
+ <th>Namespace</th>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_xml">xml</a>
+ </td>
+ <td>http://www.w3.org/XML/1998/namespace</td>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_phy">phy</a>
+ </td>
+ <td>
+ <span class="targetNS">http://www.phyloxml.org</span>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_xs">xs</a>
+ </td>
+ <td>http://www.w3.org/2001/XMLSchema</td>
+ </tr>
+ </table>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="schema_scbox_button" class="control"
+ onclick="switchState('schema_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="schema_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:schema</span>
+ <span class="scTag">targetNamespace</span>="<span class="scContent">http://www.phyloxml.org</span>" <span class="scTag">elementFormDefault</span>="<span class="scContent">qualified</span>" <span class="scTag">attributeFormDefault</span>="<span class="scContent">unqualified</span>"><div class="scContent" style="margin-left: 1.5em">...</div></<span class="scTag">xs:schema</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('schema_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaDeclarations">Global Declarations</a>
+ </h2>
+ <h3>Element: <a name="h270234806" class="name">phyloxml</a>
+ </h3>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>phyloxml</td>
+ </tr>
+ <tr>
+ <th>Type</th>
+ <td>
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phyloxml" type definition." href="#h155831896">Phyloxml</a>
+ </span>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Nillable' in glossary" href="phyloxml.xsd.html#term_Nillable">Nillable</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_logicalDiagram_button" class="control"
+ onclick="switchState('h270234806_logicalDiagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Logical Diagram</span>
+ </div>
+ <div id="h270234806_logicalDiagram" class="contents">
+ <img usemap="#h1900732667" src="schemaDiagrams/h1900732667.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h1900732667.map--><map name="h1900732667">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_logicalDiagram', false);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_xibox_button" class="control"
+ onclick="switchState('h270234806_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h270234806_xibox" class="contents">
+ <div style="margin-left: 0em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phyloxml> <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Sequence' in glossary" href="phyloxml.xsd.html#term_Sequence">Sequence</a>
+ <span class="occurs">[1..*]</span>
+ </span>
+ <br/>
+ <div style="margin-left: 3em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 3em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div>
+ <span class="group" style="margin-left: 1.5em">End Sequence</span>
+ <br/></<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phyloxml></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_diagram_button" class="control"
+ onclick="switchState('h270234806_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h270234806_diagram" class="contents">
+ <img usemap="#h482833585" src="schemaDiagrams/h482833585.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h482833585.map--><map name="h482833585">
+ <area shape="rect" alt="h535307528" coords="344,10,463,50"
+ href="phyloxml.xsd.html#h535307528"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h270234806_scbox_button" class="control"
+ onclick="switchState('h270234806_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h270234806_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">phyloxml</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phyloxml" type definition." href="#h155831896">Phyloxml</a>
+ </span>
+ </span>"/></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaDefinitions">Global Definitions</a>
+ </h2>
+ <h3>Complex Type: <a name="h917087604" class="name">Annotation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Annotation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h917087604_xibox_button" class="control"
+ onclick="switchState('h917087604_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h917087604_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span class="other" style="margin-left: 1.5em"><!-- Mixed content --></span>
+ <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h917087604_diagram_button" class="control"
+ onclick="switchState('h917087604_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h917087604_diagram" class="contents">
+ <img usemap="#h624412339" src="schemaDiagrams/h624412339.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h624412339.map--><map name="h624412339">
+ <area shape="rect" alt="h-853091232" coords="236,0,312,40"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h-993584945" coords="236,50,362,90"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h-676012345" coords="236,100,313,140"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h917087604_scbox_button" class="control"
+ onclick="switchState('h917087604_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h917087604_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Annotation</span>" <span class="scTag">mixed</span>="<span class="scContent">true</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h1535743041" class="name">BinaryCharacterList</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BinaryCharacterList</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1535743041_xibox_button" class="control"
+ onclick="switchState('h1535743041_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h1535743041_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:bc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:bc> <span class="occurs">[1..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1535743041_diagram_button" class="control"
+ onclick="switchState('h1535743041_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h1535743041_diagram" class="contents">
+ <img usemap="#h508496390" src="schemaDiagrams/h508496390.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h508496390.map--><map name="h508496390">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h1535743041_scbox_button" class="control"
+ onclick="switchState('h1535743041_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h1535743041_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BinaryCharacterList</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">bc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1514309680" class="name">BinaryCharacters</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BinaryCharacters</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1514309680_xibox_button" class="control"
+ onclick="switchState('h-1514309680_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1514309680_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> gained_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> lost_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> present_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> absent_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:gained> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:gained> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lost> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lost> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:present> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:present> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:absent> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:absent> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1514309680_diagram_button" class="control"
+ onclick="switchState('h-1514309680_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1514309680_diagram" class="contents">
+ <img usemap="#h-81115689" src="schemaDiagrams/h-81115689.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-81115689.map--><map name="h-81115689">
+ <area shape="rect" alt="h1535743041" coords="278,0,376,40"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,50,362,90"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,100,383,140"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,150,376,190"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1514309680_scbox_button" class="control"
+ onclick="switchState('h-1514309680_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1514309680_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BinaryCharacters</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">gained</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">lost</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">present</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">absent</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">gained_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">lost_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">present_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">absent_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1691165380" class="name">BranchColor</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BranchColor</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1691165380_xibox_button" class="control"
+ onclick="switchState('h-1691165380_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1691165380_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:red> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:red> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:green> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:green> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:blue> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:blue> <span class="occurs">[1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1691165380_diagram_button" class="control"
+ onclick="switchState('h-1691165380_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1691165380_diagram" class="contents">
+ <img usemap="#h-203375637" src="schemaDiagrams/h-203375637.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-203375637.map--><map name="h-203375637">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1691165380_scbox_button" class="control"
+ onclick="switchState('h-1691165380_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1691165380_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BranchColor</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">red</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">green</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">blue</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1124608460" class="name">Clade</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Clade</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1124608460_xibox_button" class="control"
+ onclick="switchState('h-1124608460_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1124608460_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> distance="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_source="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:distance> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:distance> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:width> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:width> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:color> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BranchColor" type definition." href="#h-1691165380">BranchColor</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:color> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:node_id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:node_id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:taxonomy> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Taxonomy" type definition." href="#h888650454">Taxonomy</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:taxonomy> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Sequence" type definition." href="#h-1794244794">Sequence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:event> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Event" type definition." href="#h-1122459339">Event</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:event> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:binary_characters> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacters" type definition." href="#h-1514309680">BinaryCharacters</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:binary_characters> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:distribution> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:distribution> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:custom> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Custom" type definition." href="#h-494260170">Custom</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:custom> <span class="occurs">[0..1]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1124608460_diagram_button" class="control"
+ onclick="switchState('h-1124608460_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1124608460_diagram" class="contents">
+ <img usemap="#h854822387" src="schemaDiagrams/h854822387.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h854822387.map--><map name="h854822387">
+ <area shape="rect" alt="h-993584945" coords="201,100,327,140"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h-1691165380" coords="201,200,292,240"
+ href="phyloxml.xsd.html#h-1691165380"/>
+
+ <area shape="rect" alt="h-853091232" coords="201,250,306,290"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h888650454" coords="201,300,313,340"
+ href="phyloxml.xsd.html#h888650454"/>
+
+ <area shape="rect" alt="h-1794244794" coords="201,350,313,390"
+ href="phyloxml.xsd.html#h-1794244794"/>
+
+ <area shape="rect" alt="h-1122459339" coords="201,400,292,440"
+ href="phyloxml.xsd.html#h-1122459339"/>
+
+ <area shape="rect" alt="h-1514309680" coords="201,450,376,490"
+ href="phyloxml.xsd.html#h-1514309680"/>
+
+ <area shape="rect" alt="h-494260170" coords="201,650,299,690"
+ href="phyloxml.xsd.html#h-494260170"/>
+
+ <area shape="rect" alt="h-1482113798" coords="115,787,252,813"
+ href="phyloxml.xsd.html#h-1482113798"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1124608460_scbox_button" class="control"
+ onclick="switchState('h-1124608460_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1124608460_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Clade</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">distance</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">width</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">color</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BranchColor" type definition." href="#h-1691165380">BranchColor</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">node_id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">taxonomy</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Taxonomy" type definition." href="#h888650454">Taxonomy</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">sequence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Sequence" type definition." href="#h-1794244794">Sequence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">event</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Event" type definition." href="#h-1122459339">Event</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">binary_characters</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacters" type definition." href="#h-1514309680">BinaryCharacters</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">distribution</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">date</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">custom</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Custom" type definition." href="#h-494260170">Custom</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">distance</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h192331856" class="name">CladeRelation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>CladeRelation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h192331856_xibox_button" class="control"
+ onclick="switchState('h192331856_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h192331856_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> id_ref_0="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref_1="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> distance="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h192331856_diagram_button" class="control"
+ onclick="switchState('h192331856_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h192331856_diagram" class="contents">
+ <img usemap="#h1919634775" src="schemaDiagrams/h1919634775.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h1919634775.map--><map name="h1919634775">
+ <area shape="rect" alt="h-993584945" coords="257,0,383,40"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h577349652" coords="171,50,301,76"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h577349652" coords="171,86,301,112"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h192331856_scbox_button" class="control"
+ onclick="switchState('h192331856_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h192331856_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">CladeRelation</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_0</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_1</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">distance</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-993584945" class="name">Confidence</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> < <strong>Confidence</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Confidence</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h-1122459339">Event</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-993584945_xibox_button" class="control"
+ onclick="switchState('h-993584945_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-993584945_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-993584945_diagram_button" class="control"
+ onclick="switchState('h-993584945_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-993584945_diagram" class="contents">
+ <img usemap="#h1603897912" src="schemaDiagrams/h1603897912.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h1603897912.map--><map name="h1603897912">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-993584945_scbox_button" class="control"
+ onclick="switchState('h-993584945_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-993584945_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Confidence</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-494260170" class="name">Custom</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Custom</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-494260170_xibox_button" class="control"
+ onclick="switchState('h-494260170_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-494260170_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> unit="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> custom_type="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CustomType" type definition." href="#h890448016">CustomType</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> custom_property="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CustomProperty" type definition." href="#h-1670259669">CustomProperty</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:value> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:value> <span class="occurs">[1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-494260170_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-494260170_diagram_button" class="control"
+ onclick="switchState('h-494260170_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-494260170_diagram" class="contents">
+ <img usemap="#h-1387730639" src="schemaDiagrams/h-1387730639.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-1387730639.map--><map name="h-1387730639">
+ <area shape="rect" alt="h890448016" coords="122,106,273,132"
+ href="phyloxml.xsd.html#h890448016"/>
+
+ <area shape="rect" alt="h-1670259669" coords="122,142,301,168"
+ href="phyloxml.xsd.html#h-1670259669"/>
+
+ <area shape="rect" alt="h577349652" coords="122,178,238,204"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-494260170_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-494260170_scbox_button" class="control"
+ onclick="switchState('h-494260170_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-494260170_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Custom</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">value</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">custom_type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CustomType" type definition." href="#h890448016">CustomType</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">custom_property</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CustomProperty" type definition." href="#h-1670259669">CustomProperty</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-494260170_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h259010940" class="name">DomainArchitecture</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>DomainArchitecture</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h259010940_xibox_button" class="control"
+ onclick="switchState('h259010940_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h259010940_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> length="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ProteinDomain" type definition." href="#h-1389097534">ProteinDomain</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain> <span class="occurs">[1..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h259010940_diagram_button" class="control"
+ onclick="switchState('h259010940_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h259010940_diagram" class="contents">
+ <img usemap="#h-93417557" src="schemaDiagrams/h-93417557.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-93417557.map--><map name="h-93417557">
+ <area shape="rect" alt="h-1389097534" coords="292,0,390,40"
+ href="phyloxml.xsd.html#h-1389097534"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h259010940_scbox_button" class="control"
+ onclick="switchState('h259010940_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h259010940_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">DomainArchitecture</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">domain</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ProteinDomain" type definition." href="#h-1389097534">ProteinDomain</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">1</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">length</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1122459339" class="name">Event</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Event</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1122459339_xibox_button" class="control"
+ onclick="switchState('h-1122459339_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1122459339_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:type> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "EventType" type definition." href="#h1358103055">EventType</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:type> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:duplications> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:duplications> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:speciations> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:speciations> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:losses> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:losses> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1122459339_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1122459339_diagram_button" class="control"
+ onclick="switchState('h-1122459339_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1122459339_diagram" class="contents">
+ <img usemap="#h408247698" src="schemaDiagrams/h408247698.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h408247698.map--><map name="h408247698">
+ <area shape="rect" alt="h1358103055" coords="201,0,285,40"
+ href="phyloxml.xsd.html#h1358103055"/>
+
+ <area shape="rect" alt="h-993584945" coords="201,200,327,240"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1122459339_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1122459339_scbox_button" class="control"
+ onclick="switchState('h-1122459339_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1122459339_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Event</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "EventType" type definition." href="#h1358103055">EventType</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">duplications</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">speciations</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">losses</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1122459339_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-853091232" class="name">Id</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Id</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Id</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>, Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-853091232_xibox_button" class="control"
+ onclick="switchState('h-853091232_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-853091232_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-853091232_diagram_button" class="control"
+ onclick="switchState('h-853091232_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-853091232_diagram" class="contents">
+ <img usemap="#h-1484760249" src="schemaDiagrams/h-1484760249.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-1484760249.map--><map name="h-1484760249">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-853091232_scbox_button" class="control"
+ onclick="switchState('h-853091232_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-853091232_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Id</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h535307528" class="name">Phylogeny</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Phylogeny</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h155831896">Phyloxml</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h535307528_xibox_button" class="control"
+ onclick="switchState('h535307528_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h535307528_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> rooted="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> rerootable="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> distance_unit="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:description> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:description> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:dateTime</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade_relation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CladeRelation" type definition." href="#h192331856">CladeRelation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade_relation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence_relation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelation" type definition." href="#h-802965662">SequenceRelation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence_relation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:custom> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Custom" type definition." href="#h-494260170">Custom</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:custom> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h535307528_diagram_button" class="control"
+ onclick="switchState('h535307528_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h535307528_diagram" class="contents">
+ <img usemap="#h731810719" src="schemaDiagrams/h731810719.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h731810719.map--><map name="h731810719">
+ <area shape="rect" alt="h-853091232" coords="229,50,305,90"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h-993584945" coords="229,200,355,240"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h-1124608460" coords="229,250,320,290"
+ href="phyloxml.xsd.html#h-1124608460"/>
+
+ <area shape="rect" alt="h192331856" coords="229,300,383,340"
+ href="phyloxml.xsd.html#h192331856"/>
+
+ <area shape="rect" alt="h-802965662" coords="229,350,404,390"
+ href="phyloxml.xsd.html#h-802965662"/>
+
+ <area shape="rect" alt="h-494260170" coords="229,400,327,440"
+ href="phyloxml.xsd.html#h-494260170"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h535307528_scbox_button" class="control"
+ onclick="switchState('h535307528_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h535307528_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Phylogeny</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">description</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">date</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:dateTime</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade_relation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CladeRelation" type definition." href="#h192331856">CladeRelation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">sequence_relation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelation" type definition." href="#h-802965662">SequenceRelation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">custom</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Custom" type definition." href="#h-494260170">Custom</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">rooted</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">rerootable</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">distance_unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h155831896" class="name">Phyloxml</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Phyloxml</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Element <b>
+ <a href="#h270234806">phyloxml</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h155831896_xibox_button" class="control"
+ onclick="switchState('h155831896_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h155831896_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Sequence' in glossary" href="phyloxml.xsd.html#term_Sequence">Sequence</a>
+ <span class="occurs">[1..*]</span>
+ </span>
+ <br/>
+ <div style="margin-left: 3em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 3em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div>
+ <span class="group" style="margin-left: 1.5em">End Sequence</span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h155831896_diagram_button" class="control"
+ onclick="switchState('h155831896_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h155831896_diagram" class="contents">
+ <img usemap="#h-354757553" src="schemaDiagrams/h-354757553.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-354757553.map--><map name="h-354757553">
+ <area shape="rect" alt="h535307528" coords="222,0,341,40"
+ href="phyloxml.xsd.html#h535307528"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h155831896_scbox_button" class="control"
+ onclick="switchState('h155831896_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h155831896_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Phyloxml</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>
+ <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">phylogeny</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1389097534" class="name">ProteinDomain</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>ProteinDomain</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>ProteinDomain</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h259010940">DomainArchitecture</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1389097534_xibox_button" class="control"
+ onclick="switchState('h-1389097534_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1389097534_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> from="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> to="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> confidence="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> id="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1389097534_diagram_button" class="control"
+ onclick="switchState('h-1389097534_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1389097534_diagram" class="contents">
+ <img usemap="#h1501379365" src="schemaDiagrams/h1501379365.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h1501379365.map--><map name="h1501379365">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1389097534_scbox_button" class="control"
+ onclick="switchState('h-1389097534_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1389097534_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">ProteinDomain</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">from</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">to</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1794244794" class="name">Sequence</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Sequence</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1794244794_xibox_button" class="control"
+ onclick="switchState('h-1794244794_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1794244794_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> id_source="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:accession> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:accession> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:gene_name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:gene_name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:location> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:location> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:mol_seq> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "MolSeq" type definition." href="#h-213750342">MolSeq</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:mol_seq> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:annotation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Annotation" type definition." href="#h917087604">Annotation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:annotation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain_architecture> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "DomainArchitecture" type definition." href="#h259010940">DomainArchitecture</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain_architecture> <span class="occurs">[0..1]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1794244794_diagram_button" class="control"
+ onclick="switchState('h-1794244794_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1794244794_diagram" class="contents">
+ <img usemap="#h1156064289" src="schemaDiagrams/h1156064289.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h1156064289.map--><map name="h1156064289">
+ <area shape="rect" alt="h-853091232" coords="222,0,298,40"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h-213750342" coords="222,200,327,240"
+ href="phyloxml.xsd.html#h-213750342"/>
+
+ <area shape="rect" alt="h-676012345" coords="222,250,299,290"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ <area shape="rect" alt="h917087604" coords="222,300,348,340"
+ href="phyloxml.xsd.html#h917087604"/>
+
+ <area shape="rect" alt="h259010940" coords="222,350,411,390"
+ href="phyloxml.xsd.html#h259010940"/>
+
+ <area shape="rect" alt="h-1482113798" coords="136,451,273,477"
+ href="phyloxml.xsd.html#h-1482113798"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1794244794_scbox_button" class="control"
+ onclick="switchState('h-1794244794_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1794244794_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Sequence</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">accession</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">gene_name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">location</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">mol_seq</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "MolSeq" type definition." href="#h-213750342">MolSeq</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">annotation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Annotation" type definition." href="#h917087604">Annotation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">domain_architecture</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "DomainArchitecture" type definition." href="#h259010940">DomainArchitecture</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-802965662" class="name">SequenceRelation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceRelation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-802965662_xibox_button" class="control"
+ onclick="switchState('h-802965662_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-802965662_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> id_ref_0="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref_1="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> distance="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelationType" type definition." href="#h519911868">SequenceRelationType</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-802965662_diagram_button" class="control"
+ onclick="switchState('h-802965662_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-802965662_diagram" class="contents">
+ <img usemap="#h230020485" src="schemaDiagrams/h230020485.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h230020485.map--><map name="h230020485">
+ <area shape="rect" alt="h-993584945" coords="278,0,404,40"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h577349652" coords="192,50,322,76"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h577349652" coords="192,86,322,112"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h519911868" coords="192,158,294,184"
+ href="phyloxml.xsd.html#h519911868"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-802965662_scbox_button" class="control"
+ onclick="switchState('h-802965662_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-802965662_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceRelation</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_0</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_1</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">distance</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelationType" type definition." href="#h519911868">SequenceRelationType</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h888650454" class="name">Taxonomy</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Taxonomy</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h888650454_xibox_button" class="control"
+ onclick="switchState('h888650454_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h888650454_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:code> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "TaxonomyCode" type definition." href="#h712147427">TaxonomyCode</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:code> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:scientific_name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:scientific_name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:common_name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:common_name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:rank> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Rank" type definition." href="#h518348337">Rank</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:rank> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h888650454_diagram_button" class="control"
+ onclick="switchState('h888650454_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h888650454_diagram" class="contents">
+ <img usemap="#h992625297" src="schemaDiagrams/h992625297.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h992625297.map--><map name="h992625297">
+ <area shape="rect" alt="h-853091232" coords="222,0,298,40"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h712147427" coords="222,50,306,90"
+ href="phyloxml.xsd.html#h712147427"/>
+
+ <area shape="rect" alt="h518348337" coords="222,200,306,240"
+ href="phyloxml.xsd.html#h518348337"/>
+
+ <area shape="rect" alt="h-676012345" coords="222,250,299,290"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h888650454_scbox_button" class="control"
+ onclick="switchState('h888650454_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h888650454_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Taxonomy</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">code</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "TaxonomyCode" type definition." href="#h712147427">TaxonomyCode</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">scientific_name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">common_name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">rank</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Rank" type definition." href="#h518348337">Rank</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-676012345" class="name">Uri</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span> < <strong>Uri</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Uri</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>, Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-676012345_xibox_button" class="control"
+ onclick="switchState('h-676012345_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-676012345_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> desc="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-676012345_diagram_button" class="control"
+ onclick="switchState('h-676012345_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-676012345_diagram" class="contents">
+ <img usemap="#h-1930055872" src="schemaDiagrams/h-1930055872.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-1930055872.map--><map name="h-1930055872">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-676012345_scbox_button" class="control"
+ onclick="switchState('h-676012345_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-676012345_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Uri</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-1670259669" class="name">CustomProperty</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>CustomProperty</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>CustomProperty</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-494260170">Custom</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'phylogeny'|'clade'|'node'|'sequence'|'taxonomy'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1670259669_diagram_button" class="control"
+ onclick="switchState('h-1670259669_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1670259669_diagram" class="contents">
+ <img usemap="#h191215708" src="schemaDiagrams/h191215708.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h191215708.map--><map name="h191215708">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1670259669_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1670259669_scbox_button" class="control"
+ onclick="switchState('h-1670259669_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1670259669_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">CustomProperty</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">phylogeny</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">clade</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">node</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">sequence</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">taxonomy</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1670259669_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h890448016" class="name">CustomType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>CustomType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>CustomType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-494260170">Custom</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'string'|'character'|'decimal'|'integer'|'byte'|'boolean'|'uri'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h890448016_diagram_button" class="control"
+ onclick="switchState('h890448016_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h890448016_diagram" class="contents">
+ <img usemap="#h-1752265449" src="schemaDiagrams/h-1752265449.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-1752265449.map--><map name="h-1752265449">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h890448016_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h890448016_scbox_button" class="control"
+ onclick="switchState('h890448016_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h890448016_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">CustomType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">string</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">character</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">decimal</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">integer</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">byte</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">boolean</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">uri</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h890448016_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-979596407" class="name">Distribution</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Distribution</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Distribution</td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-979596407_diagram_button" class="control"
+ onclick="switchState('h-979596407_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-979596407_diagram" class="contents">
+ <img usemap="#h-265752642" src="schemaDiagrams/h-265752642.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-265752642.map--><map name="h-265752642">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-979596407_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-979596407_scbox_button" class="control"
+ onclick="switchState('h-979596407_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-979596407_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">Distribution</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-979596407_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h1358103055" class="name">EventType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>EventType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>EventType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1122459339">Event</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'transfer'|'fusion'|'root'|'speciation_or_duplication'|'other'|'mixed'|'unassigned'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1358103055_diagram_button" class="control"
+ onclick="switchState('h1358103055_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h1358103055_diagram" class="contents">
+ <img usemap="#h77064440" src="schemaDiagrams/h77064440.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h77064440.map--><map name="h77064440">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1358103055_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h1358103055_scbox_button" class="control"
+ onclick="switchState('h1358103055_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h1358103055_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">EventType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">transfer</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">fusion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">root</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">speciation_or_duplication</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">mixed</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unassigned</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1358103055_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-213750342" class="name">MolSeq</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>MolSeq</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>MolSeq</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = [a-zA-Z\.\-\?\*_]+</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-213750342_diagram_button" class="control"
+ onclick="switchState('h-213750342_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-213750342_diagram" class="contents">
+ <img usemap="#h-100858323" src="schemaDiagrams/h-100858323.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-100858323.map--><map name="h-100858323">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-213750342_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-213750342_scbox_button" class="control"
+ onclick="switchState('h-213750342_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-213750342_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">MolSeq</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[a-zA-Z\.\-\?\*_]+</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-213750342_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h518348337" class="name">Rank</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Rank</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Rank</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'domain'|'kingdom'|'branch'|'phylum'|'subphylum'|'division'|'superclass'|'class'|'subclass'|'superorder'|'order'|'suborder'|'superfamily'|'family'|'subfamily'|'genus'|'subgenus'|'species'|'subspecies'|'variety'|'form'|'cultivar'|'unknown'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h518348337_diagram_button" class="control"
+ onclick="switchState('h518348337_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h518348337_diagram" class="contents">
+ <img usemap="#h-1363552746" src="schemaDiagrams/h-1363552746.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-1363552746.map--><map name="h-1363552746">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h518348337_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h518348337_scbox_button" class="control"
+ onclick="switchState('h518348337_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h518348337_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">Rank</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">domain</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">kingdom</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">branch</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">phylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">division</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superclass</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">class</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subclass</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superorder</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">order</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">suborder</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superfamily</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">family</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subfamily</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">genus</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subgenus</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">species</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subspecies</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">variety</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">form</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">cultivar</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unknown</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h518348337_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h519911868" class="name">SequenceRelationType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>SequenceRelationType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceRelationType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'orthology'|'one_to_one_orthology'|'super_orthology'|'paralogy'|'ultra_paralogy'|'xenology'|'unknown'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h519911868_diagram_button" class="control"
+ onclick="switchState('h519911868_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h519911868_diagram" class="contents">
+ <img usemap="#h-465227925" src="schemaDiagrams/h-465227925.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h-465227925.map--><map name="h-465227925">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h519911868_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h519911868_scbox_button" class="control"
+ onclick="switchState('h519911868_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h519911868_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceRelationType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">one_to_one_orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">super_orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">paralogy</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">ultra_paralogy</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xenology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unknown</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h519911868_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h712147427" class="name">TaxonomyCode</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>TaxonomyCode</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>TaxonomyCode</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = [a-zA-Z0-9_]{2,20}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h712147427_diagram_button" class="control"
+ onclick="switchState('h712147427_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h712147427_diagram" class="contents">
+ <img usemap="#h516707748" src="schemaDiagrams/h516707748.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h516707748.map--><map name="h516707748">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h712147427_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h712147427_scbox_button" class="control"
+ onclick="switchState('h712147427_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h712147427_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">TaxonomyCode</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[a-zA-Z0-9_]{2,20}</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h712147427_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h577349652" class="name">id_ref</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:IDREF</span> < <strong>id_ref</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>id_ref</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-494260170">Custom</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: IDREF</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h577349652_diagram_button" class="control"
+ onclick="switchState('h577349652_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h577349652_diagram" class="contents">
+ <img usemap="#h813803539" src="schemaDiagrams/h813803539.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h813803539.map--><map name="h813803539">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h577349652_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h577349652_scbox_button" class="control"
+ onclick="switchState('h577349652_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h577349652_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:IDREF</span>
+ </span>"/></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h577349652_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-1482113798" class="name">id_source</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:ID</span> < <strong>id_source</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>id_source</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: ID</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1482113798_diagram_button" class="control"
+ onclick="switchState('h-1482113798_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1482113798_diagram" class="contents">
+ <img usemap="#h123518701" src="schemaDiagrams/h123518701.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/docs/phyloXML//schemaDiagrams/h123518701.map--><map name="h123518701">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1482113798_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1482113798_scbox_button" class="control"
+ onclick="switchState('h-1482113798_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1482113798_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:ID</span>
+ </span>"/></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1482113798_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <div id="legend">
+ <h2>
+ <a name="Legend">Legend</a>
+ </h2>
+ <div style="float: left; width: 15em;">
+ <h3 style="margin-bottom: 0px;">Complex Type:</h3>
+ <div class="hint" style="margin-left: 0em;">Schema Component Type</div>
+ </div>
+ <div style="float: left; width: 15em;">
+ <h3 style="margin-bottom: 0px;">
+ <span class="name">AusAddress</span>
+ </h3>
+ <div class="hint" style="margin-left: 0em;">Schema Component Name</div>
+ </div>
+ <table class="hierarchy" style="clear : both">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type" style="color: #0000FF; text-decoration:underline;">Address</span> < <span class="current">AusAddress</span> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>
+ <ul>
+ <li>
+ <span class="type" style="color: #0000FF; text-decoration:underline;">QLDAddress</span> (by restriction)</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="hint">If this schema component is a type definition, its type hierarchy is shown in a gray-bordered box.</div>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>AusAddress</td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="hint">The table above displays the properties of this schema component.</div>
+ <div class="sample box">
+ <div>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div class="contents">
+ <span style="margin-left: 0em"><...</span>
+ <span class="newFields">
+ <span> country="<span class="fixed">Australia</span>"</span>
+ </span>> <br/>
+ <span style="margin-left: 1.5em" class="inherited"><unitNo> <span class="type">string</span> </unitNo> <span class="occurs">[0..1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em" class="inherited"><houseNo> <span class="type">string</span> </houseNo> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em" class="inherited"><street> <span class="type">string</span> </street> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Choice' in glossary" href="#term_Choice">Choice</a>
+ <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 3em" class="inherited"><city> <span class="type">string</span> </city> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 3em" class="inherited"><town> <span class="type">string</span> </town> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span class="group" style="margin-left: 1.5em">End Choice</span>
+ <br/>
+ <span class="newFields">
+ <span style="margin-left: 1.5em"><state> <span class="type" style="text-decoration:underline;">AusStates</span> </state> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em"><postcode> <span class="constraint">string <<<em>pattern</em> = [1-9][0-9]{3}>></span> </postcode> <span class="occurs">[1]</span>
+ <a href="javascript:void(0)" title="View Documentation" class="documentation"
+ onclick="docArray = new Array('Post code must be a four-digit number.'); viewDocumentation('Element', 'postcode', docArray);">?</a>
+ </span>
+ <br/>
+ </span>
+ <span style="margin-left: 0em"></...></span>
+ <br/>
+ </div>
+ </div>
+ <div class="hint">
+ <p>The XML Instance Representation table above shows the schema component's content as an XML instance.</p>
+ <ul>
+ <li>The minimum and maximum occurrence of elements and attributes are provided in square brackets, e.g. [0..1].</li>
+ <li>Model group information are shown in gray, e.g. Start Choice ... End Choice.</li>
+ <li>For type derivations, the elements and attributes that have been added to or changed from the base type's content are shown in <span style="font-weight: bold">bold</span>.</li>
+ <li>If an element/attribute has a fixed value, the fixed value is shown in green, e.g. country="Australia".</li>
+ <li>Otherwise, the type of the element/attribute is displayed.
+ <ul>
+ <li>If the element/attribute's type is in the schema, a link is provided to it.</li>
+ <li>For local simple type definitions, the constraints are displayed in angle brackets, e.g. <<<em>pattern</em> = [1-9][0-9]{3}>>.</li>
+ </ul>
+ </li>
+ <li>If a local element/attribute has documentation, it will be displayed in a window that pops up when the question mark inside the attribute or next to the element is clicked, e.g. <postcode>.</li>
+ </ul>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div class="contents">
+ <span style="margin-left: 0em"><<span class="scTag">complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">AusAddress</span>"></span>
+ <br/>
+ <span style="margin-left: 1.5em"><<span class="scTag">complexContent</span>></span>
+ <br/>
+ <span style="margin-left: 3em"><<span class="scTag">extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type" style="text-decoration:underline;">Address</span>
+ </span>"></span>
+ <br/>
+ <span style="margin-left: 4.5em"><<span class="scTag">sequence</span>></span>
+ <br/>
+ <span style="margin-left: 6em"><<span class="scTag">element</span>
+ <span class="scTag">name</span>="<span class="scContent">state</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type" style="text-decoration:underline;">AusStates</span>
+ </span>"/></span>
+ <br/>
+ <span style="margin-left: 6em"><<span class="scTag">element</span>
+ <span class="scTag">name</span>="<span class="scContent">postcode</span>"></span>
+ <br/>
+ <span style="margin-left: 7.5em"><<span class="scTag">simpleType</span>></span>
+ <br/>
+ <span style="margin-left: 9em"><<span class="scTag">restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">string</span>
+ </span>"></span>
+ <br/>
+ <span style="margin-left: 10.5em"><<span class="scTag">pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[1-9][0-9]{3}</span>"/></span>
+ <br/>
+ <span style="margin-left: 9em"></<span class="scTag">restriction</span>></span>
+ <br/>
+ <span style="margin-left: 7.5em"></<span class="scTag">simpleType</span>></span>
+ <br/>
+ <span style="margin-left: 6em"></<span class="scTag">element</span>></span>
+ <br/>
+ <span style="margin-left: 4.5em"></<span class="scTag">sequence</span>></span>
+ <br/>
+ <span style="margin-left: 4.5em"><<span class="scTag">attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">country</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">string</span>
+ </span>" <span class="scTag">fixed</span>="<span class="scContent">Australia</span>"/></span>
+ <br/>
+ <span style="margin-left: 3em"></<span class="scTag">extension</span>></span>
+ <br/>
+ <span style="margin-left: 1.5em"></<span class="scTag">complexContent</span>></span>
+ <br/>
+ <span style="margin-left: 0em"></<span class="scTag">complexType</span>></span>
+ <br/>
+ </div>
+ </div>
+ <div class="hint">The Schema Component Representation table above displays the underlying XML representation of the schema component. (Annotations are not shown.)</div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ </div>
+ <div id="glossary">
+ <h2>
+ <a name="Glossary">Glossary</a>
+ </h2>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Abstract">Abstract</a>
+ </span>(Applies to complex type definitions and element declarations). An abstract element or complex type cannot used to validate an element instance. If there is a reference to an abstract element, only element declarations that can substitute the abstract element can be used to validate the instance. For references to abstract type definitions, only derived types can be used.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_All">All Model Group</a>
+ </span>Child elements can be provided <em>in any order</em> in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-all"
+ href="http://www.w3.org/TR/xmlschema-1/#element-all">http://www.w3.org/TR/xmlschema-1/#element-all</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Choice">Choice Model Group</a>
+ </span>
+ <em>Only one</em> from the list of child elements and model groups can be provided in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-choice"
+ href="http://www.w3.org/TR/xmlschema-1/#element-choice">http://www.w3.org/TR/xmlschema-1/#element-choice</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_CollapseWS">Collapse Whitespace Policy</a>
+ </span>Replace tab, line feed, and carriage return characters with space character (Unicode character 32). Then, collapse contiguous sequences of space characters into single space character, and remove leading and trailing space characters.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ElemBlock">Disallowed Substitutions</a>
+ </span>(Applies to element declarations). If <em>substitution</em> is specified, then <a title="Look up 'substitution group' in glossary"
+ href="phyloxml.xsd.html#term_SubGroup">substitution group</a> members cannot be used in place of the given element declaration to validate element instances. If <em>derivation methods</em>, e.g. extension, restriction, are specified, then the given element declaration will not validate element instances that have types derived from the element declaration's type using the specified derivation methods. Normally, element instances can override their declaration's type by specifying an <code>xsi:type</code> attribute.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Key">Key Constraint</a>
+ </span>Like <a title="Look up 'Uniqueness Constraint' in glossary"
+ href="phyloxml.xsd.html#term_Unique">Uniqueness Constraint</a>, but additionally requires that the specified value(s) must be provided. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_KeyRef">Key Reference Constraint</a>
+ </span>Ensures that the specified value(s) must match value(s) from a <a title="Look up 'Key Constraint' in glossary" href="phyloxml.xsd.html#term_Key">Key Constraint</a> or <a title="Look up 'Uniqueness Constraint' in glossary"
+ href="phyloxml.xsd.html#term_Unique">Uniqueness Constraint</a>. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ModelGroup">Model Group</a>
+ </span>Groups together element content, specifying the order in which the element content can occur and the number of times the group of element content may be repeated. See: <a title="http://www.w3.org/TR/xmlschema-1/#Model_Groups"
+ href="http://www.w3.org/TR/xmlschema-1/#Model_Groups">http://www.w3.org/TR/xmlschema-1/#Model_Groups</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Nillable">Nillable</a>
+ </span>(Applies to element declarations). If an element declaration is nillable, instances can use the <code>xsi:nil</code> attribute. The <code>xsi:nil</code> attribute is the boolean attribute, <em>nil</em>, from the <em>http://www.w3.org/2001/XMLSchema-instance</em> namespace. If an element instance has an <code>xsi:nil</code> attribute set to true, it can be left empty, even though its element declaration may have required content.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Notation">Notation</a>
+ </span>A notation is used to identify the format of a piece of data. Values of elements and attributes that are of type, NOTATION, must come from the names of declared notations. See: <a title="http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations"
+ href="http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations">http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_PreserveWS">Preserve Whitespace Policy</a>
+ </span>Preserve whitespaces exactly as they appear in instances.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TypeFinal">Prohibited Derivations</a>
+ </span>(Applies to type definitions). Derivation methods that cannot be used to create sub-types from a given type definition.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TypeBlock">Prohibited Substitutions</a>
+ </span>(Applies to complex type definitions). Prevents sub-types that have been derived using the specified derivation methods from validating element instances in place of the given type definition.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ReplaceWS">Replace Whitespace Policy</a>
+ </span>Replace tab, line feed, and carriage return characters with space character (Unicode character 32).</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Sequence">Sequence Model Group</a>
+ </span>Child elements and model groups must be provided <em>in the specified order</em> in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-sequence"
+ href="http://www.w3.org/TR/xmlschema-1/#element-sequence">http://www.w3.org/TR/xmlschema-1/#element-sequence</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_SubGroup">Substitution Group</a>
+ </span>Elements that are <em>members</em> of a substitution group can be used wherever the <em>head</em> element of the substitution group is referenced.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ElemFinal">Substitution Group Exclusions</a>
+ </span>(Applies to element declarations). Prohibits element declarations from nominating themselves as being able to substitute a given element declaration, if they have types that are derived from the original element's type using the specified derivation methods.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TargetNS">Target Namespace</a>
+ </span>The target namespace identifies the namespace that components in this schema belongs to. If no target namespace is provided, then the schema components do not belong to any namespace.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Unique">Uniqueness Constraint</a>
+ </span>Ensures uniqueness of an element/attribute value, or a combination of values, within a specified scope. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ </div>
+ <p class="footer">Generated by <a href="http://www.oxygenxml.com"><oXygen/> XML Editor</a> using a modified version of <a href="http://titanium.dstc.edu.au/xml/xs3p">xs3p</a> that adds schema diagrams and chunking support. Last modified: <script type="text/javascript">
+<!--
+ document.write(document.lastModified);
+// -->
+</script>
+ </p>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-100858323'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1363552746'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1387730639'>
+ <area
+ shape='rect'
+ alt='h890448016'
+ coords='122,106,273,132'
+ href='phyloxml.xsd.html#h890448016'/>
+
+ <area
+ shape='rect'
+ alt='h-1670259669'
+ coords='122,142,301,168'
+ href='phyloxml.xsd.html#h-1670259669'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='122,178,238,204'
+ href='phyloxml.xsd.html#h577349652'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1484760249'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1752265449'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1930055872'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-203375637'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-265752642'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-354757553'>
+ <area
+ shape='rect'
+ alt='h535307528'
+ coords='222,0,341,40'
+ href='phyloxml.xsd.html#h535307528'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-465227925'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-81115689'>
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,0,376,40'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,50,362,90'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,100,383,140'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,150,376,190'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-93417557'>
+ <area
+ shape='rect'
+ alt='h-1389097534'
+ coords='292,0,390,40'
+ href='phyloxml.xsd.html#h-1389097534'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1156064289'>
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='222,0,298,40'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h-213750342'
+ coords='222,200,327,240'
+ href='phyloxml.xsd.html#h-213750342'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='222,250,299,290'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+ <area
+ shape='rect'
+ alt='h917087604'
+ coords='222,300,348,340'
+ href='phyloxml.xsd.html#h917087604'/>
+
+ <area
+ shape='rect'
+ alt='h259010940'
+ coords='222,350,411,390'
+ href='phyloxml.xsd.html#h259010940'/>
+
+ <area
+ shape='rect'
+ alt='h-1482113798'
+ coords='136,451,273,477'
+ href='phyloxml.xsd.html#h-1482113798'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h123518701'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1501379365'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1603897912'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1900732667'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h191215708'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1919634775'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='257,0,383,40'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='171,50,301,76'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='171,86,301,112'
+ href='phyloxml.xsd.html#h577349652'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h230020485'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='278,0,404,40'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='192,50,322,76'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='192,86,322,112'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h519911868'
+ coords='192,158,294,184'
+ href='phyloxml.xsd.html#h519911868'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h408247698'>
+ <area
+ shape='rect'
+ alt='h1358103055'
+ coords='201,0,285,40'
+ href='phyloxml.xsd.html#h1358103055'/>
+
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='201,200,327,240'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h482833585'>
+ <area
+ shape='rect'
+ alt='h535307528'
+ coords='344,10,463,50'
+ href='phyloxml.xsd.html#h535307528'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h508496390'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h516707748'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h624412339'>
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='236,0,312,40'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='236,50,362,90'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='236,100,313,140'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h731810719'>
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='229,50,305,90'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='229,200,355,240'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h-1124608460'
+ coords='229,250,320,290'
+ href='phyloxml.xsd.html#h-1124608460'/>
+
+ <area
+ shape='rect'
+ alt='h192331856'
+ coords='229,300,383,340'
+ href='phyloxml.xsd.html#h192331856'/>
+
+ <area
+ shape='rect'
+ alt='h-802965662'
+ coords='229,350,404,390'
+ href='phyloxml.xsd.html#h-802965662'/>
+
+ <area
+ shape='rect'
+ alt='h-494260170'
+ coords='229,400,327,440'
+ href='phyloxml.xsd.html#h-494260170'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h77064440'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h813803539'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h854822387'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='201,100,327,140'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h-1691165380'
+ coords='201,200,292,240'
+ href='phyloxml.xsd.html#h-1691165380'/>
+
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='201,250,306,290'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h888650454'
+ coords='201,300,313,340'
+ href='phyloxml.xsd.html#h888650454'/>
+
+ <area
+ shape='rect'
+ alt='h-1794244794'
+ coords='201,350,313,390'
+ href='phyloxml.xsd.html#h-1794244794'/>
+
+ <area
+ shape='rect'
+ alt='h-1122459339'
+ coords='201,400,292,440'
+ href='phyloxml.xsd.html#h-1122459339'/>
+
+ <area
+ shape='rect'
+ alt='h-1514309680'
+ coords='201,450,376,490'
+ href='phyloxml.xsd.html#h-1514309680'/>
+
+ <area
+ shape='rect'
+ alt='h-494260170'
+ coords='201,650,299,690'
+ href='phyloxml.xsd.html#h-494260170'/>
+
+ <area
+ shape='rect'
+ alt='h-1482113798'
+ coords='115,787,252,813'
+ href='phyloxml.xsd.html#h-1482113798'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h992625297'>
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='222,0,298,40'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h712147427'
+ coords='222,50,306,90'
+ href='phyloxml.xsd.html#h712147427'/>
+
+ <area
+ shape='rect'
+ alt='h518348337'
+ coords='222,200,306,240'
+ href='phyloxml.xsd.html#h518348337'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='222,250,299,290'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>Documentation for phyloXML 1.00 - phyloxml.xsd</title>
+ <meta http-equiv="Content-Type" content="text/xml; charset=UTF-8"/>
+ <style type="text/css">
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* More-configurable styles */
+
+/******** General ********/
+
+/* Document body */
+body {
+ color: Black;
+ background-color: White;
+ font-family: Arial, sans-serif;
+ font-size: 10pt;
+}
+
+/* Horizontal rules */
+hr {
+ color: black;
+}
+/* Document title */
+h1 {
+ font-size: 18pt;
+ letter-spacing: 2px;
+ border-bottom: 1px #ccc solid;
+ padding-top: 5px;
+ padding-bottom: 5px;
+}
+/* Main section headers */
+h2 {
+ font-size: 14pt;
+ letter-spacing: 1px;
+}
+/* Sub-section headers */
+h3, h3 a, h3 span {
+ font-size: 12pt;
+ font-weight: bold;
+ color: black;
+}
+/* Table displaying the properties of the schema components or the
+ schema document itself */
+table.properties th, table.properties th a {
+ color: black;
+ background-color: #F99; /* Pink */
+}
+table.properties td {
+ background-color: #eee; /* Gray */
+}
+
+img{
+ border: 0;
+}
+
+/********* Documentation style *************/
+p.documentation {
+ color:black;
+ font-style:italic;
+ background-color: #EEEEFF;
+ border: 1px solid #DDDDFF;
+ padding-top: 1px;
+ margin-right: 30px;
+ margin-top: 1px;
+}
+
+
+/******** Table of Contents Section ********/
+
+/* Controls for switching between printing and viewing modes */
+div#printerControls {
+ color: #963; /* Orange-brown */
+}
+/* Controls that can collapse or expand all XML Instance
+ Representation and Schema Component Representation boxes */
+div#globalControls {
+ border: 2px solid #999;
+}
+
+
+/******** Schema Document Properties Section ********/
+
+/* Table displaying the namespaces declared in the schema */
+table.namespaces th {
+ background-color: #ccc;
+}
+table.namespaces td {
+ background-color: #eee;
+}
+/* Target namespace of the schema */
+span.targetNS {
+ color: #06C;
+ font-weight: bold;
+}
+
+
+/******** Schema Components' Sections ********/
+
+/* Name of schema component */
+.name {
+ color: #F93; /* Orange */
+}
+
+/* Hierarchy table */
+table.hierarchy {
+ border: 2px solid #999; /* Gray */
+}
+
+/* XML Instance Representation table */
+div.sample div.contents {
+ border: 1px dashed black;
+}
+
+
+/* Schema Component Representation table */
+div.schemaComponent div.contents {
+ border: 2px black solid;
+}
+
+
+/******** Glossary Section ********/
+
+/* Glossary Terms */
+.glossaryTerm {
+ color: #036; /* Blue */
+}
+
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* Printer-version styles */
+
+@media print {
+
+/* Ensures that controls are hidden when printing */
+div#printerControls {
+ visibility: hidden;
+}
+div#globalControls {
+ visibility: hidden;
+}
+#legend {
+ display: none;
+}
+#legendTOC {
+ display: none;
+}
+#glossary {
+ display: none;
+}
+#glossaryTOC {
+ display: none;
+}
+
+}
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* Base styles */
+
+/******** General ********/
+
+/* Unordered lists */
+ul {
+ margin-left: 1.5em;
+ margin-bottom: 0em;
+}
+/* Tables */
+table {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+table th, table td {
+ font-size: 10pt;
+ vertical-align: top;
+ padding-top: 3px;
+ padding-bottom: 3px;
+ padding-left: 10px;
+ padding-right: 10px;
+}
+table th {
+ font-weight: bold;
+ text-align: left;
+}
+/* Table displaying the properties of the schema components or the
+ schema document itself */
+table.properties {
+ width: 90%;
+}
+table.properties th {
+ width: 30%;
+}
+/* Boxes that can make its content appear and disappear*/
+div.box {
+ margin: 1em;
+}
+ /* Box caption */
+div.box span.caption {
+ font-weight: bold;
+}
+ /* Button to open and close the box */
+div.box input.control {
+ width: 1.4em;
+ height: 1.4em;
+ text-align: center;
+ vertical-align: middle;
+ font-size: 11pt;
+}
+ /* Box contents */
+div.box div.contents {
+ margin-top: 3px;
+}
+
+
+/******** Table of Contents Section ********/
+
+/* Controls for switching between printing and viewing modes */
+div#printerControls {
+ white-space: nowrap;
+ font-weight: bold;
+ padding: 5px;
+ margin: 5px;
+}
+/* Controls that can collapse or expand all XML Instance
+ Representation and Schema Component Representation boxes */
+div#globalControls {
+ padding: 10px;
+ margin: 5px;
+}
+
+
+/******** Schema Document Properties Section ********/
+
+/* Table displaying the namespaces declared in the schema */
+table.namespaces th {
+}
+table.namespaces td {
+}
+/* Target namespace of the schema */
+span.targetNS {
+}
+
+
+/******** Schema Components' Sections ********/
+
+/* Name of schema component */
+.name {
+}
+
+/* Hierarchy table */
+table.hierarchy {
+ width: 90%;
+}
+table.hierarchy th {
+ font-weight: normal;
+ font-style: italic;
+ width: 20%;
+}
+table.hierarchy th, table.hierarchy td {
+ padding: 5px;
+}
+
+/* XML Instance Representation table */
+div.sample {
+ width: 90%;
+}
+div.sample div.contents {
+ padding: 5px;
+ font-family: Courier New, sans-serif;
+ font-size: 10pt;
+}
+ /* Normal elements and attributes */
+div.sample div.contents, div.sample div.contents a {
+ color: black;
+}
+ /* Group Headers */
+div.sample div.contents .group, div.sample div.contents .group a {
+ color: #999; /* Light gray */
+}
+ /* Type Information */
+div.sample div.contents .type, div.sample div.contents .type a {
+ color: #999; /* Light gray */
+}
+ /* Occurrence Information */
+div.sample div.contents .occurs, div.sample div.contents .occurs a {
+ color: #999; /* Light gray */
+}
+ /* Fixed values */
+div.sample div.contents .fixed {
+ color: #063; /* Green */
+ font-weight: bold;
+}
+ /* Simple type constraints */
+div.sample div.contents .constraint, div.sample div.contents .constraint a {
+ color: #999; /* Light gray */
+}
+ /* Elements and attributes inherited from base type */
+div.sample div.contents .inherited, div.sample div.contents .inherited a {
+ color: #666; /* Dark gray */
+}
+ /* Elements and attributes added to or changed from base type */
+div.sample div.contents .newFields {
+ font-weight: bold;
+}
+ /* Other type of information */
+div.sample div.contents .other, div.sample div.contents .other a {
+ color: #369; /* Blue */
+ font-style: italic;
+}
+ /* Link to open up window displaying documentation */
+div.sample div.contents a.documentation {
+ text-decoration: none;
+ padding-left: 3px;
+ padding-right: 3px;
+ padding-top: 0px;
+ padding-bottom: 0px;
+ font-weight: bold;
+ font-size: 11pt;
+ background-color: #FFD;
+ color: #069;
+}
+ /* Invert colors when hovering over link to open up window
+ displaying documentation */
+div.sample div.contents a.documentation:hover {
+ color: #FFD;
+ background-color: #069;
+}
+
+/* Schema Component Representation table */
+div.schemaComponent {
+ width: 90%;
+}
+div.schemaComponent div.contents {
+ font-family: Courier New, sans-serif;
+ font-size: 10pt;
+ padding: 5px;
+}
+ /* Syntax characters */
+div.schemaComponent div.contents {
+ color: #00f; /* blue */
+}
+ /* Element and attribute tags */
+div.schemaComponent div.contents .scTag {
+ color: #933; /* maroon */
+}
+ /* Element and attribute content */
+div.schemaComponent div.contents .scContent, div.schemaComponent div.contents .scContent a {
+ color: black;
+ font-weight: bold;
+}
+ /* Comments */
+div.schemaComponent div.contents .comment {
+ color: #999; /* Light gray */
+}
+
+/******** Legend Section ********/
+
+div#legend table, div#legend div {
+ margin-bottom: 3px;
+}
+div#legend div.hint {
+ color: #999; /* Light gray */
+ width: 90%;
+ margin-left: 1em;
+ margin-bottom: 2em;
+}
+
+
+/******** Glossary Section ********/
+
+/* Glossary Terms */
+.glossaryTerm {
+ font-weight: bold;
+}
+
+/********* Details *************/
+.detailsToc {
+ color: #666; /* Light gray */
+}
+
+.details {
+ color: #666; /* Light gray */
+ text-decoration:none;
+}
+
+/******** Footer ********/
+
+.footer {
+ font-size: 8pt;
+}
+</style>
+ <script type="text/javascript">
+<!--
+ /* IDs of XML Instance Representation boxes */
+var xiBoxes = new Array('h270234806_xibox', 'h155831896_xibox', 'h535307528_xibox', 'h-1124608460_xibox', 'h888650454_xibox', 'h712147427_xibox', 'h518348337_xibox', 'h-1794244794_xibox', 'h-213750342_xibox', 'h935679102_xibox', 'h1408823200_xibox', 'h-788356801_xibox', 'h259010940_xibox', 'h-1389097534_xibox', 'h-436501026_xibox', 'h1358103055_xibox', 'h-1514309680_xibox', 'h1535743041_xibox', 'h401516646_xibox', 'h-676028775_xibox', 'h917087604_xibox', 'h158033242_xibox', 'h-675984882_xibox', 'h-763252414_xibox', 'h-54338178_xibox', 'h-676012345_xibox', 'h-993584945_xibox', 'h-853091232_xibox', 'h-979596407_xibox', 'h-1112505301_xibox', 'h332351765_xibox', 'h517931443_xibox', 'h-1691165380_xibox', 'h-802965662_xibox', 'h519911868_xibox', 'h192331856_xibox', 'h-1482113798_xibox', 'h577349652_xibox');
+/* IDs of diagram boxes */
+var diagramBoxes = new Array('h270234806_diagram', 'h155831896_diagram', 'h535307528_diagram', 'h-1124608460_diagram', 'h888650454_diagram', 'h712147427_diagram', 'h518348337_diagram', 'h-1794244794_diagram', 'h-213750342_diagram', 'h935679102_diagram', 'h1408823200_diagram', 'h-788356801_diagram', 'h259010940_diagram', 'h-1389097534_diagram', 'h-436501026_diagram', 'h1358103055_diagram', 'h-1514309680_diagram', 'h1535743041_diagram', 'h401516646_diagram', 'h-676028775_diagram', 'h917087604_diagram', 'h158033242_diagram', 'h-675984882_diagram', 'h-763252414_diagram', 'h-54338178_diagram', 'h-676012345_diagram', 'h-993584945_diagram', 'h-853091232_diagram', 'h-979596407_diagram', 'h-1112505301_diagram', 'h332351765_diagram', 'h517931443_diagram', 'h-1691165380_diagram', 'h-802965662_diagram', 'h519911868_diagram', 'h192331856_diagram', 'h-1482113798_diagram', 'h577349652_diagram');
+/* IDs of logical diagram boxes */
+var logicalDiagramBoxes = new Array('h270234806_logicalDiagram');
+/* IDs of Schema Component Representation boxes */
+var scBoxes = new Array('schema_scbox', 'h270234806_scbox', 'h155831896_scbox', 'h535307528_scbox', 'h-1124608460_scbox', 'h888650454_scbox', 'h712147427_scbox', 'h518348337_scbox', 'h-1794244794_scbox', 'h-213750342_scbox', 'h935679102_scbox', 'h1408823200_scbox', 'h-788356801_scbox', 'h259010940_scbox', 'h-1389097534_scbox', 'h-436501026_scbox', 'h1358103055_scbox', 'h-1514309680_scbox', 'h1535743041_scbox', 'h401516646_scbox', 'h-676028775_scbox', 'h917087604_scbox', 'h158033242_scbox', 'h-675984882_scbox', 'h-763252414_scbox', 'h-54338178_scbox', 'h-676012345_scbox', 'h-993584945_scbox', 'h-853091232_scbox', 'h-979596407_scbox', 'h-1112505301_scbox', 'h332351765_scbox', 'h517931443_scbox', 'h-1691165380_scbox', 'h-802965662_scbox', 'h519911868_scbox', 'h192331856_scbox', 'h-1482113798_scbox', 'h577349652_scbox');
+
+/**
+ * Can get the ID of the button controlling
+ * a collapseable box by concatenating
+ * this string onto the ID of the box itself.
+ */
+var B_SFIX = "_button";
+
+
+/**
+ * Returns an element in the current HTML document.
+ *
+ * @param elementID Identifier of HTML element
+ * @return HTML element object
+ */
+function getElementObject(elementID) {
+ var elemObj = null;
+ if (document.getElementById) {
+ elemObj = document.getElementById(elementID);
+ }
+ return elemObj;
+}
+
+/**
+ * Closes a collapseable box.
+ *
+ * @param boxObj Collapseable box
+ * @param buttonObj Button controlling box
+ */
+function closeBox(boxObj, buttonObj) {
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else {
+ // Change 'display' CSS property of box
+ boxObj.style.display="none";
+
+ // Change text of button
+ if (boxObj.style.display=="none") {
+ buttonObj.value=" + ";
+ }
+ }
+}
+
+/**
+ * Opens a collapseable box.
+ *
+ * @param boxObj Collapseable box
+ * @param buttonObj Button controlling box
+ */
+function openBox(boxObj, buttonObj) {
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else {
+ // Change 'display' CSS property of box
+ boxObj.style.display="block";
+
+ // Change text of button
+ if (boxObj.style.display=="block") {
+ buttonObj.value=" - ";
+ }
+ }
+}
+
+/**
+ * Sets the state of a collapseable box.
+ *
+ * @param boxID Identifier of box
+ * @param open If true, box is "opened",
+ * Otherwise, box is "closed".
+ */
+function setState(boxID, open) {
+ var boxObj = getElementObject(boxID);
+ var buttonObj = getElementObject(boxID+B_SFIX);
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else if (open) {
+ openBox(boxObj, buttonObj);
+ // Make button visible
+ buttonObj.style.display="inline";
+ } else {
+ closeBox(boxObj, buttonObj);
+ // Make button visible
+ buttonObj.style.display="inline";
+ }
+}
+
+/**
+ * Switches the state of a collapseable box, e.g.
+ * if it's opened, it'll be closed, and vice versa.
+ *
+ * @param boxID Identifier of box
+ */
+function switchState(boxID) {
+ var boxObj = getElementObject(boxID);
+ var buttonObj = getElementObject(boxID+B_SFIX);
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else if (boxObj.style.display=="none") {
+ // Box is closed, so open it
+ openBox(boxObj, buttonObj);
+ } else if (boxObj.style.display=="block") {
+ // Box is opened, so close it
+ closeBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Closes all boxes in a given list.
+ *
+ * @param boxList Array of box IDs
+ */
+function collapseAll(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ var boxObj = getElementObject(boxList[idx]);
+ var buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ closeBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Open all boxes in a given list.
+ *
+ * @param boxList Array of box IDs
+ */
+function expandAll(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ var boxObj = getElementObject(boxList[idx]);
+ var buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ openBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Makes all the control buttons of boxes appear.
+ *
+ * @param boxList Array of box IDs
+ */
+function viewControlButtons(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ if (buttonObj != null) {
+ buttonObj.style.display = "inline";
+ }
+ }
+}
+
+/**
+ * Makes all the control buttons of boxes disappear.
+ *
+ * @param boxList Array of box IDs
+ */
+function hideControlButtons(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ if (buttonObj != null) {
+ buttonObj.style.display = "none";
+ }
+ }
+}
+
+/**
+ * Sets the page for either printing mode
+ * or viewing mode. In printing mode, the page
+ * is made to be more readable when printing it out.
+ * In viewing mode, the page is more browsable.
+ *
+ * @param isPrinterVersion If true, display in
+ * printing mode; otherwise,
+ * in viewing mode
+ */
+function displayMode(isPrinterVersion) {
+ var obj;
+ if (isPrinterVersion) {
+ // Hide global control buttons
+ obj = getElementObject("globalControls");
+ if (obj != null) {
+ obj.style.visibility = "hidden";
+ }
+ // Hide Legend
+ obj = getElementObject("legend");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ obj = getElementObject("legendTOC");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ // Hide Glossary
+ obj = getElementObject("glossary");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ obj = getElementObject("glossaryTOC");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+
+ // Expand all diagrams
+ expandAll(diagramBoxes);
+ // Expand all logical diagrams
+ expandAll(logicalDiagramBoxes);
+ // Expand all XML Instance Representation tables
+ expandAll(xiBoxes);
+ // Expand all Schema Component Representation tables
+ expandAll(scBoxes);
+
+ // Hide Control buttons
+ hideControlButtons(diagramBoxes);
+ hideControlButtons(logicalDiagramBoxes);
+ hideControlButtons(xiBoxes);
+ hideControlButtons(scBoxes);
+ } else {
+ // View global control buttons
+ obj = getElementObject("globalControls");
+ if (obj != null) {
+ obj.style.visibility = "visible";
+ }
+ // View Legend
+ obj = getElementObject("legend");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ obj = getElementObject("legendTOC");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ // View Glossary
+ obj = getElementObject("glossary");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ obj = getElementObject("glossaryTOC");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+
+ // Expand all diagram boxes
+ expandAll(diagramBoxes);
+ // Collapse all logical diagram boxes.
+ collapseAll(logicalDiagramBoxes);
+ // Expand all XML Instance Representation tables
+ expandAll(xiBoxes);
+ // Collapse all Schema Component Representation tables
+ collapseAll(scBoxes);
+
+ // View Control buttons
+ viewControlButtons(diagramBoxes);
+ viewControlButtons(logicalDiagramBoxes);
+ viewControlButtons(xiBoxes);
+ viewControlButtons(scBoxes);
+ }
+}
+
+
+
+// -->
+</script>
+ <script type="text/javascript">
+<!--
+
+
+/**
+ * Counter of documentation windows
+ * Used to give each window a unique name
+ */
+var windowCount = 0;
+
+/**
+ * Opens up a window displaying the documentation
+ * of a schema component in the XML Instance
+ * Representation table.
+ *
+ * @param compDesc Description of schema component
+ * @param compName Name of schema component
+ * @param docTextArray Array containing the paragraphs
+ * of the new document
+ */
+function viewDocumentation(compDesc, compName, docTextArray) {
+ var width = 400;
+ var height = 200;
+ var locX = 100;
+ var locY = 200;
+
+ /* Generate content */
+ var actualText = "<html>";
+ actualText += "<head><title>";
+ actualText += compDesc;
+ if (compName != '') {
+ actualText += ": " + compName;
+ }
+ actualText += "</title></head>";
+ actualText += "<body bgcolor=\"#FFFFEE\">";
+ // Title
+ actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 12pt; font-weight: bold; letter-spacing:1px;\">";
+ actualText += compDesc;
+ if (compName != '') {
+ actualText += ": <span style=\"color:#006699\">" + compName + "</span>";
+ }
+ actualText += "</p>";
+ // Documentation
+ var idx;
+ for (idx = 0; idx < docTextArray.length; idx++) {
+ actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 10pt;\">" + docTextArray[idx] + "</p>";
+ }
+ // Link to close window
+ actualText += "<a href=\"javascript:void(0)\" onclick=\"window.close();\" style=\"font-family: Arial, sans-serif; font-size: 8pt;\">Close</a>";
+ actualText += "</body></html>";
+
+ /* Display window */
+ windowCount++;
+ var docWindow = window.open("", "documentation"+windowCount, "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable,alwaysRaised,dependent,titlebar=no,width="+width+",height="+height+",screenX="+locX+",left="+locX+",screenY="+locY+",top="+locY);
+ docWindow.document.write(actualText);
+}
+
+// -->
+</script>
+ </head>
+ <body>
+ <h1>
+ <a name="top">Documentation for phyloXML 1.00</a>
+ </h1>
+ <div style="float: right;">
+ <div id="printerControls" style="display:none;">
+ <input type="checkbox" onclick="displayMode(this.checked)"/>Printer-friendly Version</div>
+ <script type="text/javascript">
+<!--
+
+var pc = getElementObject("printerControls");
+if (pc != null) {
+ pc.style.display="block";
+}
+
+// -->
+</script>
+ <div id="globalControls" style="display:none">
+ <strong>Logical Diagram:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(logicalDiagramBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(logicalDiagramBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>XML Instance Representation:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(xiBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(xiBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>Diagram:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(diagramBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(diagramBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>Schema Component Representation:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(scBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(scBoxes)">Collapse All</a> ]</span>
+ </div>
+ <script type="text/javascript">
+<!--
+
+var gc = getElementObject("globalControls");
+if (gc != null) {
+ gc.style.display="block";
+}
+
+// -->
+</script>
+ </div>
+ <h2>Table of Contents</h2>
+ <ul>
+ <li>
+ <a href="#SchemaProperties">Schema Document Properties</a>
+ </li>
+ <li>
+ <a href="#SchemaDeclarations">Global Declarations</a>
+ <ul>
+ <li>
+ <a href="#h270234806">Element: <strong>phyloxml</strong>
+ </a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="#SchemaDefinitions">Global Definitions</a>
+ <ul>
+ <li>
+ <a href="#h-788356801">Complex Type: <strong>Accession</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h917087604">Complex Type: <strong>Annotation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h1535743041">Complex Type: <strong>BinaryCharacterList</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1514309680">Complex Type: <strong>BinaryCharacters</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1691165380">Complex Type: <strong>BranchColor</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1124608460">Complex Type: <strong>Clade</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h192331856">Complex Type: <strong>CladeRelation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-993584945">Complex Type: <strong>Confidence</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h517931443">Complex Type: <strong>Date</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-979596407">Complex Type: <strong>Distribution</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h259010940">Complex Type: <strong>DomainArchitecture</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-436501026">Complex Type: <strong>Events</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-853091232">Complex Type: <strong>Id</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h535307528">Complex Type: <strong>Phylogeny</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h155831896">Complex Type: <strong>Phyloxml</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1112505301">Complex Type: <strong>Point</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h332351765">Complex Type: <strong>Polygon</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h158033242">Complex Type: <strong>Property</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1389097534">Complex Type: <strong>ProteinDomain</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h401516646">Complex Type: <strong>Reference</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1794244794">Complex Type: <strong>Sequence</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-802965662">Complex Type: <strong>SequenceRelation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h888650454">Complex Type: <strong>Taxonomy</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-676012345">Complex Type: <strong>Uri</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-763252414">Simple Type: <strong>AppliesTo</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-676028775">Simple Type: <strong>Doi</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h1358103055">Simple Type: <strong>EventType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-213750342">Simple Type: <strong>MolSeq</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-54338178">Simple Type: <strong>PropertyDataType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h518348337">Simple Type: <strong>Rank</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h519911868">Simple Type: <strong>SequenceRelationType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h935679102">Simple Type: <strong>SequenceSymbol</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h1408823200">Simple Type: <strong>SequenceType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h712147427">Simple Type: <strong>TaxonomyCode</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h577349652">Simple Type: <strong>id_ref</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1482113798">Simple Type: <strong>id_source</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-675984882">Simple Type: <strong>ref</strong>
+ </a>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ <ul id="legendTOC" style="margin-top: 0em">
+ <li>
+ <a href="#Legend">Legend</a>
+ </li>
+ </ul>
+ <ul id="glossaryTOC" style="margin-top: 0em">
+ <li>
+ <a href="#Glossary">Glossary</a>
+ </li>
+ </ul>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaProperties">Schema Document Properties</a>
+ </h2>
+ <table class="properties">
+ <tr>
+ <th>
+ <a title="Look up 'Target Namespace' in glossary"
+ href="phyloxml.xsd.html#term_TargetNS">Target Namespace</a>
+ </th>
+ <td>
+ <span class="targetNS">http://www.phyloxml.org</span>
+ </td>
+ </tr>
+ <tr>
+ <th>Element and Attribute Namespaces</th>
+ <td>
+ <ul>
+ <li>Global element and attribute declarations belong to this schema's target namespace.</li>
+ <li>By default, local element declarations belong to this schema's target namespace.</li>
+ <li>By default, local attribute declarations have no namespace.</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> phyloXML is an XML language to describe phylogenies and associated data. Version: 1.00.
+ License: LGPL. Copyright (c) 2008-2009 Christian M Zmasek.</td>
+ </tr>
+ </table>
+ <h3>Declared Namespaces</h3>
+ <table class="namespaces">
+ <tr>
+ <th>Prefix</th>
+ <th>Namespace</th>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_xml">xml</a>
+ </td>
+ <td>http://www.w3.org/XML/1998/namespace</td>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_phy">phy</a>
+ </td>
+ <td>
+ <span class="targetNS">http://www.phyloxml.org</span>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_xs">xs</a>
+ </td>
+ <td>http://www.w3.org/2001/XMLSchema</td>
+ </tr>
+ </table>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="schema_scbox_button" class="control"
+ onclick="switchState('schema_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="schema_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:schema</span>
+ <span class="scTag">targetNamespace</span>="<span class="scContent">http://www.phyloxml.org</span>" <span class="scTag">elementFormDefault</span>="<span class="scContent">qualified</span>" <span class="scTag">attributeFormDefault</span>="<span class="scContent">unqualified</span>"><div class="scContent" style="margin-left: 1.5em">...</div></<span class="scTag">xs:schema</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('schema_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaDeclarations">Global Declarations</a>
+ </h2>
+ <h3>Element: <a name="h270234806" class="name">phyloxml</a>
+ </h3>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>phyloxml</td>
+ </tr>
+ <tr>
+ <th>Type</th>
+ <td>
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phyloxml" type definition." href="#h155831896">Phyloxml</a>
+ </span>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Nillable' in glossary" href="phyloxml.xsd.html#term_Nillable">Nillable</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_logicalDiagram_button" class="control"
+ onclick="switchState('h270234806_logicalDiagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Logical Diagram</span>
+ </div>
+ <div id="h270234806_logicalDiagram" class="contents">
+ <img usemap="#h1900732667" src="schemaDiagrams/h1900732667.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h1900732667.map--><map name="h1900732667">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_logicalDiagram', false);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_xibox_button" class="control"
+ onclick="switchState('h270234806_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h270234806_xibox" class="contents">
+ <div style="margin-left: 0em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phyloxml> <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Sequence' in glossary" href="phyloxml.xsd.html#term_Sequence">Sequence</a>
+ <span class="occurs">[1..*]</span>
+ </span>
+ <br/>
+ <div style="margin-left: 3em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 3em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div>
+ <span class="group" style="margin-left: 1.5em">End Sequence</span>
+ <br/></<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phyloxml></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_diagram_button" class="control"
+ onclick="switchState('h270234806_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h270234806_diagram" class="contents">
+ <img usemap="#h482833585" src="schemaDiagrams/h482833585.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h482833585.map--><map name="h482833585">
+ <area shape="rect" alt="h535307528" coords="344,10,463,50"
+ href="phyloxml.xsd.html#h535307528"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h270234806_scbox_button" class="control"
+ onclick="switchState('h270234806_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h270234806_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">phyloxml</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phyloxml" type definition." href="#h155831896">Phyloxml</a>
+ </span>
+ </span>"/></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaDefinitions">Global Definitions</a>
+ </h2>
+ <h3>Complex Type: <a name="h-788356801" class="name">Accession</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Accession</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Accession</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Accession is used to capture the local part in a sequence identifier (e.g. 'P17304'
+ in 'UniProtKB:P17304', in which case the 'source' attribute would be 'UniProtKB'). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-788356801_xibox_button" class="control"
+ onclick="switchState('h-788356801_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-788356801_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> source="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-788356801_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-788356801_diagram_button" class="control"
+ onclick="switchState('h-788356801_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-788356801_diagram" class="contents">
+ <img usemap="#h-1142642744" src="schemaDiagrams/h-1142642744.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-1142642744.map--><map name="h-1142642744">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-788356801_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-788356801_scbox_button" class="control"
+ onclick="switchState('h-788356801_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-788356801_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Accession</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-788356801_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h917087604" class="name">Annotation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Annotation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> The annotation of a molecular sequence. It is recommended to annotate by using the optional
+ 'ref' attribute (some examples of acceptable values for the ref attribute: 'GO:0008270',
+ 'KEGG:Tetrachloroethene degradation', 'EC:1.1.1.1'). Optional element 'desc' allows for a free text
+ description. Optional element 'confidence' is used to state the type and value of support for a annotation.
+ Similarly, optional attribute 'evidence' is used to describe the evidence for a annotation as free text
+ (e.g. 'experimental'). Optional element 'property' allows for further, typed and referenced annotations from
+ external resources.</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h917087604_xibox_button" class="control"
+ onclick="switchState('h917087604_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h917087604_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> source="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> evidence="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h917087604_diagram_button" class="control"
+ onclick="switchState('h917087604_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h917087604_diagram" class="contents">
+ <img usemap="#h624412339" src="schemaDiagrams/h624412339.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h624412339.map--><map name="h624412339">
+ <area shape="rect" alt="h-993584945" coords="236,50,362,90"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h158033242" coords="236,100,348,140"
+ href="phyloxml.xsd.html#h158033242"/>
+
+ <area shape="rect" alt="h-676012345" coords="236,150,313,190"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ <area shape="rect" alt="h-675984882" coords="150,200,245,226"
+ href="phyloxml.xsd.html#h-675984882"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h917087604_scbox_button" class="control"
+ onclick="switchState('h917087604_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h917087604_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Annotation</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">property</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">evidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h1535743041" class="name">BinaryCharacterList</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BinaryCharacterList</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1535743041_xibox_button" class="control"
+ onclick="switchState('h1535743041_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h1535743041_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:bc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:bc> <span class="occurs">[1..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1535743041_diagram_button" class="control"
+ onclick="switchState('h1535743041_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h1535743041_diagram" class="contents">
+ <img usemap="#h508496390" src="schemaDiagrams/h508496390.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h508496390.map--><map name="h508496390">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h1535743041_scbox_button" class="control"
+ onclick="switchState('h1535743041_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h1535743041_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BinaryCharacterList</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">bc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1514309680" class="name">BinaryCharacters</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BinaryCharacters</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> The names and/or counts of binary characters present, gained, and lost at the root of a
+ clade. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1514309680_xibox_button" class="control"
+ onclick="switchState('h-1514309680_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1514309680_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> gained_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> lost_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> present_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> absent_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:gained> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:gained> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lost> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lost> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:present> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:present> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:absent> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:absent> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1514309680_diagram_button" class="control"
+ onclick="switchState('h-1514309680_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1514309680_diagram" class="contents">
+ <img usemap="#h-81115689" src="schemaDiagrams/h-81115689.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-81115689.map--><map name="h-81115689">
+ <area shape="rect" alt="h1535743041" coords="278,0,376,40"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,50,362,90"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,100,383,140"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,150,376,190"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1514309680_scbox_button" class="control"
+ onclick="switchState('h-1514309680_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1514309680_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BinaryCharacters</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">gained</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">lost</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">present</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">absent</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">gained_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">lost_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">present_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">absent_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1691165380" class="name">BranchColor</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BranchColor</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> This indicates the color of a clade when rendered (the color applies to the whole clade
+ unless overwritten by the color(s) of sub clades).</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1691165380_xibox_button" class="control"
+ onclick="switchState('h-1691165380_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1691165380_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:red> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:red> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:green> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:green> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:blue> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:blue> <span class="occurs">[1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1691165380_diagram_button" class="control"
+ onclick="switchState('h-1691165380_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1691165380_diagram" class="contents">
+ <img usemap="#h-203375637" src="schemaDiagrams/h-203375637.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-203375637.map--><map name="h-203375637">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1691165380_scbox_button" class="control"
+ onclick="switchState('h-1691165380_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1691165380_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BranchColor</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">red</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">green</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">blue</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1124608460" class="name">Clade</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Clade</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Clade is used in a recursive manner to describe the topology of a phylogenetic tree.
+ The parent branch length of a clade can be described either with the 'branch_length' element or the
+ 'branch_length' attribute (it is not recommended to use both at the same time, though). Usage of the
+ 'branch_length' attribute allows for a less verbose description. Element 'confidence' is used to indicate
+ the support for a clade/parent branch. Element 'events' is used to describe such events as gene-duplications
+ at the root node/parent branch of a clade. Element 'width' is the branch width for this clade (including
+ parent branch). Both 'color' and 'width' elements apply for the whole clade unless overwritten in-sub
+ clades. Attribute 'id_source' is used to link other elements to a clade (on the xml-level).
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1124608460_xibox_button" class="control"
+ onclick="switchState('h-1124608460_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1124608460_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> branch_length="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_source="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:branch_length> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:branch_length> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:width> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:width> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:color> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BranchColor" type definition." href="#h-1691165380">BranchColor</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:color> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:node_id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:node_id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:taxonomy> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Taxonomy" type definition." href="#h888650454">Taxonomy</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:taxonomy> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Sequence" type definition." href="#h-1794244794">Sequence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:events> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Events" type definition." href="#h-436501026">Events</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:events> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:binary_characters> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacters" type definition." href="#h-1514309680">BinaryCharacters</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:binary_characters> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:distribution> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Distribution" type definition." href="#h-979596407">Distribution</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:distribution> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Date" type definition." href="#h517931443">Date</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:reference> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Reference" type definition." href="#h401516646">Reference</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:reference> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1124608460_diagram_button" class="control"
+ onclick="switchState('h-1124608460_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1124608460_diagram" class="contents">
+ <img usemap="#h854822387" src="schemaDiagrams/h854822387.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h854822387.map--><map name="h854822387">
+ <area shape="rect" alt="h-993584945" coords="201,100,327,140"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h-1691165380" coords="201,200,292,240"
+ href="phyloxml.xsd.html#h-1691165380"/>
+
+ <area shape="rect" alt="h-853091232" coords="201,250,306,290"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h888650454" coords="201,300,313,340"
+ href="phyloxml.xsd.html#h888650454"/>
+
+ <area shape="rect" alt="h-1794244794" coords="201,350,313,390"
+ href="phyloxml.xsd.html#h-1794244794"/>
+
+ <area shape="rect" alt="h-436501026" coords="201,400,299,440"
+ href="phyloxml.xsd.html#h-436501026"/>
+
+ <area shape="rect" alt="h-1514309680" coords="201,450,376,490"
+ href="phyloxml.xsd.html#h-1514309680"/>
+
+ <area shape="rect" alt="h-979596407" coords="201,500,341,540"
+ href="phyloxml.xsd.html#h-979596407"/>
+
+ <area shape="rect" alt="h517931443" coords="201,550,285,590"
+ href="phyloxml.xsd.html#h517931443"/>
+
+ <area shape="rect" alt="h401516646" coords="201,600,320,640"
+ href="phyloxml.xsd.html#h401516646"/>
+
+ <area shape="rect" alt="h158033242" coords="201,650,313,690"
+ href="phyloxml.xsd.html#h158033242"/>
+
+ <area shape="rect" alt="h-1482113798" coords="115,837,252,863"
+ href="phyloxml.xsd.html#h-1482113798"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1124608460_scbox_button" class="control"
+ onclick="switchState('h-1124608460_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1124608460_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Clade</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">branch_length</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">width</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">color</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BranchColor" type definition." href="#h-1691165380">BranchColor</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">node_id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">taxonomy</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Taxonomy" type definition." href="#h888650454">Taxonomy</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">sequence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Sequence" type definition." href="#h-1794244794">Sequence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">events</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Events" type definition." href="#h-436501026">Events</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">binary_characters</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacters" type definition." href="#h-1514309680">BinaryCharacters</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">distribution</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Distribution" type definition." href="#h-979596407">Distribution</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">date</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Date" type definition." href="#h517931443">Date</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">reference</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Reference" type definition." href="#h401516646">Reference</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">property</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">branch_length</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h192331856" class="name">CladeRelation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>CladeRelation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> This is used to express a typed relationship between two clades. For example it could be
+ used to describe multiple parents of a clade.</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h192331856_xibox_button" class="control"
+ onclick="switchState('h192331856_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h192331856_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> id_ref_0="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref_1="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> distance="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h192331856_diagram_button" class="control"
+ onclick="switchState('h192331856_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h192331856_diagram" class="contents">
+ <img usemap="#h1919634775" src="schemaDiagrams/h1919634775.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h1919634775.map--><map name="h1919634775">
+ <area shape="rect" alt="h-993584945" coords="257,0,383,40"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h577349652" coords="171,50,301,76"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h577349652" coords="171,86,301,112"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h192331856_scbox_button" class="control"
+ onclick="switchState('h192331856_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h192331856_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">CladeRelation</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_0</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_1</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">distance</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-993584945" class="name">Confidence</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> < <strong>Confidence</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Confidence</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h-436501026">Events</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A general purpose confidence element. For example this can be used to express the bootstrap
+ support value of a clade (in which case the 'type' attribute is 'bootstrap').</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-993584945_xibox_button" class="control"
+ onclick="switchState('h-993584945_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-993584945_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-993584945_diagram_button" class="control"
+ onclick="switchState('h-993584945_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-993584945_diagram" class="contents">
+ <img usemap="#h1603897912" src="schemaDiagrams/h1603897912.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h1603897912.map--><map name="h1603897912">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-993584945_scbox_button" class="control"
+ onclick="switchState('h-993584945_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-993584945_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Confidence</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h517931443" class="name">Date</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Date</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A date associated with a clade/node. Its value can be numerical by using the 'value' element
+ and/or free text with the 'desc' element' (e.g. 'Silurian'). If a numerical value is used, it is recommended
+ to employ the 'unit' attribute to indicate the type of the numerical value (e.g. 'mya' for 'million years
+ ago'). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h517931443_xibox_button" class="control"
+ onclick="switchState('h517931443_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h517931443_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> unit="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> range="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:value> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:value> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h517931443_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h517931443_diagram_button" class="control"
+ onclick="switchState('h517931443_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h517931443_diagram" class="contents">
+ <img usemap="#h169662420" src="schemaDiagrams/h169662420.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h169662420.map--><map name="h169662420">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h517931443_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h517931443_scbox_button" class="control"
+ onclick="switchState('h517931443_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h517931443_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Date</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">value</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">range</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h517931443_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-979596407" class="name">Distribution</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Distribution</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> The geographic distribution of the items of a clade (species, sequences), intended for
+ phylogeographic applications. The location can be described either by free text in the 'desc' element and/or
+ by the coordinates of one or more 'Points' (similar to the 'Point' element in Google's KML format) or by
+ 'Polygons'. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-979596407_xibox_button" class="control"
+ onclick="switchState('h-979596407_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-979596407_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:point> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Point" type definition." href="#h-1112505301">Point</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:point> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:polygon> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Polygon" type definition." href="#h332351765">Polygon</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:polygon> <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-979596407_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-979596407_diagram_button" class="control"
+ onclick="switchState('h-979596407_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-979596407_diagram" class="contents">
+ <img usemap="#h-265752642" src="schemaDiagrams/h-265752642.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-265752642.map--><map name="h-265752642">
+ <area shape="rect" alt="h-1112505301" coords="250,50,341,90"
+ href="phyloxml.xsd.html#h-1112505301"/>
+
+ <area shape="rect" alt="h332351765" coords="250,100,355,140"
+ href="phyloxml.xsd.html#h332351765"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-979596407_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-979596407_scbox_button" class="control"
+ onclick="switchState('h-979596407_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-979596407_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Distribution</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">point</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Point" type definition." href="#h-1112505301">Point</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">polygon</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Polygon" type definition." href="#h332351765">Polygon</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-979596407_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h259010940" class="name">DomainArchitecture</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>DomainArchitecture</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> This is used describe the domain architecture of a protein. Attribute 'length' is the total
+ length of the protein</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h259010940_xibox_button" class="control"
+ onclick="switchState('h259010940_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h259010940_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> length="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ProteinDomain" type definition." href="#h-1389097534">ProteinDomain</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain> <span class="occurs">[1..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h259010940_diagram_button" class="control"
+ onclick="switchState('h259010940_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h259010940_diagram" class="contents">
+ <img usemap="#h-93417557" src="schemaDiagrams/h-93417557.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-93417557.map--><map name="h-93417557">
+ <area shape="rect" alt="h-1389097534" coords="292,0,390,40"
+ href="phyloxml.xsd.html#h-1389097534"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h259010940_scbox_button" class="control"
+ onclick="switchState('h259010940_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h259010940_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">DomainArchitecture</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">domain</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ProteinDomain" type definition." href="#h-1389097534">ProteinDomain</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">1</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">length</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-436501026" class="name">Events</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Events</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Events at the root node of a clade (e.g. one gene duplication). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-436501026_xibox_button" class="control"
+ onclick="switchState('h-436501026_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-436501026_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:type> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "EventType" type definition." href="#h1358103055">EventType</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:type> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:duplications> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:duplications> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:speciations> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:speciations> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:losses> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:losses> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-436501026_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-436501026_diagram_button" class="control"
+ onclick="switchState('h-436501026_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-436501026_diagram" class="contents">
+ <img usemap="#h-1724830583" src="schemaDiagrams/h-1724830583.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-1724830583.map--><map name="h-1724830583">
+ <area shape="rect" alt="h1358103055" coords="208,0,292,40"
+ href="phyloxml.xsd.html#h1358103055"/>
+
+ <area shape="rect" alt="h-993584945" coords="208,200,334,240"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-436501026_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-436501026_scbox_button" class="control"
+ onclick="switchState('h-436501026_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-436501026_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Events</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "EventType" type definition." href="#h1358103055">EventType</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">duplications</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">speciations</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">losses</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-436501026_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-853091232" class="name">Id</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Id</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Id</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A general purpose identifier element. Allows to indicate the type (or source) of an
+ identifier. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-853091232_xibox_button" class="control"
+ onclick="switchState('h-853091232_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-853091232_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-853091232_diagram_button" class="control"
+ onclick="switchState('h-853091232_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-853091232_diagram" class="contents">
+ <img usemap="#h-1484760249" src="schemaDiagrams/h-1484760249.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-1484760249.map--><map name="h-1484760249">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-853091232_scbox_button" class="control"
+ onclick="switchState('h-853091232_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-853091232_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Id</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h535307528" class="name">Phylogeny</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Phylogeny</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h155831896">Phyloxml</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Phylogeny is used to represent a phylogeny. The required attribute 'rooted' is used
+ to indicate whether the phylogeny is rooted or not. The attribute 'rerootable' can be used to indicate that
+ the phylogeny is not allowed to be rooted differently (i.e. because it is associated with root dependent
+ data, such as gene duplications). The attribute 'type' can be used to indicate the type of phylogeny (i.e.
+ 'gene tree'). It is recommended to use the attribute 'branch_length_unit' if the phylogeny has branch
+ lengths. Element clade is used in a recursive manner to describe the topology of a phylogenetic
+ tree.</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h535307528_xibox_button" class="control"
+ onclick="switchState('h535307528_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h535307528_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> rooted="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> rerootable="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> branch_length_unit="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:description> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:description> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:dateTime</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade_relation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CladeRelation" type definition." href="#h192331856">CladeRelation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade_relation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence_relation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelation" type definition." href="#h-802965662">SequenceRelation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence_relation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h535307528_diagram_button" class="control"
+ onclick="switchState('h535307528_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h535307528_diagram" class="contents">
+ <img usemap="#h731810719" src="schemaDiagrams/h731810719.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h731810719.map--><map name="h731810719">
+ <area shape="rect" alt="h-853091232" coords="229,50,305,90"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h-993584945" coords="229,200,355,240"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h-1124608460" coords="229,250,320,290"
+ href="phyloxml.xsd.html#h-1124608460"/>
+
+ <area shape="rect" alt="h192331856" coords="229,300,383,340"
+ href="phyloxml.xsd.html#h192331856"/>
+
+ <area shape="rect" alt="h-802965662" coords="229,350,404,390"
+ href="phyloxml.xsd.html#h-802965662"/>
+
+ <area shape="rect" alt="h158033242" coords="229,400,341,440"
+ href="phyloxml.xsd.html#h158033242"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h535307528_scbox_button" class="control"
+ onclick="switchState('h535307528_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h535307528_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Phylogeny</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">description</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">date</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:dateTime</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade_relation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CladeRelation" type definition." href="#h192331856">CladeRelation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">sequence_relation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelation" type definition." href="#h-802965662">SequenceRelation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">property</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">rooted</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">rerootable</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">branch_length_unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h155831896" class="name">Phyloxml</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Phyloxml</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Element <b>
+ <a href="#h270234806">phyloxml</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> 'phyloxml' is the name of the root element. Phyloxml contains an arbitrary number of
+ 'phylogeny' elements (each representing one phylogeny) possibly followed by elements from other namespaces.
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h155831896_xibox_button" class="control"
+ onclick="switchState('h155831896_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h155831896_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Sequence' in glossary" href="phyloxml.xsd.html#term_Sequence">Sequence</a>
+ <span class="occurs">[1..*]</span>
+ </span>
+ <br/>
+ <div style="margin-left: 3em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 3em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div>
+ <span class="group" style="margin-left: 1.5em">End Sequence</span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h155831896_diagram_button" class="control"
+ onclick="switchState('h155831896_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h155831896_diagram" class="contents">
+ <img usemap="#h-354757553" src="schemaDiagrams/h-354757553.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-354757553.map--><map name="h-354757553">
+ <area shape="rect" alt="h535307528" coords="222,0,341,40"
+ href="phyloxml.xsd.html#h535307528"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h155831896_scbox_button" class="control"
+ onclick="switchState('h155831896_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h155831896_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Phyloxml</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>
+ <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">phylogeny</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1112505301" class="name">Point</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Point</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-979596407">Distribution</a>
+ </b>, Complex Type <b>
+ <a href="#h332351765">Polygon</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> The coordinates of a point with an optional altitude (used by element 'Distribution').
+ Required attribute 'geodetic_datum' is used to indicate the geodetic datum (also called 'map datum'), for
+ example Google's KML uses 'WGS84'. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1112505301_xibox_button" class="control"
+ onclick="switchState('h-1112505301_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1112505301_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> geodetic_datum="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lat> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lat> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:long> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:long> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:alt> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:alt> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1112505301_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1112505301_diagram_button" class="control"
+ onclick="switchState('h-1112505301_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1112505301_diagram" class="contents">
+ <img usemap="#h2137002076" src="schemaDiagrams/h2137002076.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h2137002076.map--><map name="h2137002076">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1112505301_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1112505301_scbox_button" class="control"
+ onclick="switchState('h-1112505301_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1112505301_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Point</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">lat</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">long</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">alt</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">geodetic_datum</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1112505301_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h332351765" class="name">Polygon</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Polygon</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-979596407">Distribution</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A polygon defined by a list of 'Points' (used by element 'Distribution').
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h332351765_xibox_button" class="control"
+ onclick="switchState('h332351765_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h332351765_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:point> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Point" type definition." href="#h-1112505301">Point</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:point> <span class="occurs">[3..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h332351765_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h332351765_diagram_button" class="control"
+ onclick="switchState('h332351765_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h332351765_diagram" class="contents">
+ <img usemap="#h555770290" src="schemaDiagrams/h555770290.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h555770290.map--><map name="h555770290">
+ <area shape="rect" alt="h-1112505301" coords="215,0,306,40"
+ href="phyloxml.xsd.html#h-1112505301"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h332351765_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h332351765_scbox_button" class="control"
+ onclick="switchState('h332351765_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h332351765_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Polygon</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">point</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Point" type definition." href="#h-1112505301">Point</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">3</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h332351765_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h158033242" class="name">Property</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Property</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Property allows for typed and referenced properties from external resources to be attached
+ to 'Phylogeny', 'Clade', and 'Annotation'. The value of a property is its mixed (free text) content.
+ Attribute 'datatype' indicates the type of a property and is limited to xsd-datatypes (e.g. 'xsd:string',
+ 'xsd:boolean', 'xsd:integer', 'xsd:decimal', 'xsd:float', 'xsd:double', 'xsd:date', 'xsd:anyURI'). Attribute
+ 'applies_to' indicates the item to which a property applies to (e.g. 'node' for the parent node of a clade,
+ 'parent_branch' for the parent branch of a clade). Attribute 'id_ref' allows to attached a property
+ specifically to one element (on the xml-level). Optional attribute 'unit' is used to indicate the unit of
+ the property. An example: <property datatype="xsd:integer" ref="NOAA:depth" applies_to="clade"
+ unit="METRIC:m"> 200 </property> </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h158033242_xibox_button" class="control"
+ onclick="switchState('h158033242_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h158033242_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> unit="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> datatype="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "PropertyDataType" type definition." href="#h-54338178">PropertyDataType</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> applies_to="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "AppliesTo" type definition." href="#h-763252414">AppliesTo</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>/> </div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h158033242_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h158033242_diagram_button" class="control"
+ onclick="switchState('h158033242_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h158033242_diagram" class="contents">
+ <img usemap="#h-411495795" src="schemaDiagrams/h-411495795.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-411495795.map--><map name="h-411495795">
+ <area shape="rect" alt="h-675984882" coords="136,0,231,26"
+ href="phyloxml.xsd.html#h-675984882"/>
+
+ <area shape="rect" alt="h-675984882" coords="136,36,238,62"
+ href="phyloxml.xsd.html#h-675984882"/>
+
+ <area shape="rect" alt="h-54338178" coords="136,72,266,98"
+ href="phyloxml.xsd.html#h-54338178"/>
+
+ <area shape="rect" alt="h-763252414" coords="136,108,280,134"
+ href="phyloxml.xsd.html#h-763252414"/>
+
+ <area shape="rect" alt="h577349652" coords="136,144,252,170"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h158033242_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h158033242_scbox_button" class="control"
+ onclick="switchState('h158033242_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h158033242_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Property</span>" <span class="scTag">mixed</span>="<span class="scContent">true</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">datatype</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "PropertyDataType" type definition." href="#h-54338178">PropertyDataType</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">applies_to</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "AppliesTo" type definition." href="#h-763252414">AppliesTo</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h158033242_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1389097534" class="name">ProteinDomain</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>ProteinDomain</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>ProteinDomain</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h259010940">DomainArchitecture</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> To represent an individual domain in a domain architecture. The name/unique identifier is
+ described via the 'id' attribute. 'confidence' can be used to store (i.e.) E-values.</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1389097534_xibox_button" class="control"
+ onclick="switchState('h-1389097534_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1389097534_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> from="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> to="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> confidence="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> id="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1389097534_diagram_button" class="control"
+ onclick="switchState('h-1389097534_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1389097534_diagram" class="contents">
+ <img usemap="#h1501379365" src="schemaDiagrams/h1501379365.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h1501379365.map--><map name="h1501379365">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1389097534_scbox_button" class="control"
+ onclick="switchState('h-1389097534_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1389097534_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">ProteinDomain</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">from</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">to</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h401516646" class="name">Reference</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Reference</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A literature reference for a clade. It is recommended to use the 'doi' attribute instead of
+ the free text 'desc' element whenever possible. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h401516646_xibox_button" class="control"
+ onclick="switchState('h401516646_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h401516646_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> doi="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Doi" type definition." href="#h-676028775">Doi</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h401516646_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h401516646_diagram_button" class="control"
+ onclick="switchState('h401516646_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h401516646_diagram" class="contents">
+ <img usemap="#h1727164161" src="schemaDiagrams/h1727164161.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h1727164161.map--><map name="h1727164161">
+ <area shape="rect" alt="h-676028775" coords="143,50,238,76"
+ href="phyloxml.xsd.html#h-676028775"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h401516646_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h401516646_scbox_button" class="control"
+ onclick="switchState('h401516646_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h401516646_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Reference</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">doi</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Doi" type definition." href="#h-676028775">Doi</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h401516646_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1794244794" class="name">Sequence</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Sequence</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Sequence is used to represent a molecular sequence (Protein, DNA, RNA) associated
+ with a node. 'symbol' is a short (maximal ten characters) symbol of the sequence (e.g. 'ACTM') whereas
+ 'name' is used for the full name (e.g. 'muscle Actin'). 'location' is used for the location of a sequence on
+ a genome/chromosome. The actual sequence can be stored with the 'mol_seq' element. Attribute 'type' is used
+ to indicate the type of sequence ('dna', 'rna', or 'aa'). One intended use for 'id_ref' is to link a
+ sequence to a taxonomy (via the taxonomy's 'id_source') in case of multiple sequences and taxonomies per
+ node. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1794244794_xibox_button" class="control"
+ onclick="switchState('h-1794244794_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1794244794_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceType" type definition." href="#h1408823200">SequenceType</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_source="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:symbol> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceSymbol" type definition." href="#h935679102">SequenceSymbol</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:symbol> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:accession> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Accession" type definition." href="#h-788356801">Accession</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:accession> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:location> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:location> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:mol_seq> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "MolSeq" type definition." href="#h-213750342">MolSeq</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:mol_seq> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:annotation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Annotation" type definition." href="#h917087604">Annotation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:annotation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain_architecture> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "DomainArchitecture" type definition." href="#h259010940">DomainArchitecture</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain_architecture> <span class="occurs">[0..1]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1794244794_diagram_button" class="control"
+ onclick="switchState('h-1794244794_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1794244794_diagram" class="contents">
+ <img usemap="#h1156064289" src="schemaDiagrams/h1156064289.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h1156064289.map--><map name="h1156064289">
+ <area shape="rect" alt="h935679102" coords="222,0,320,40"
+ href="phyloxml.xsd.html#h935679102"/>
+
+ <area shape="rect" alt="h-788356801" coords="222,50,341,90"
+ href="phyloxml.xsd.html#h-788356801"/>
+
+ <area shape="rect" alt="h-213750342" coords="222,200,327,240"
+ href="phyloxml.xsd.html#h-213750342"/>
+
+ <area shape="rect" alt="h-676012345" coords="222,250,299,290"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ <area shape="rect" alt="h917087604" coords="222,300,348,340"
+ href="phyloxml.xsd.html#h917087604"/>
+
+ <area shape="rect" alt="h259010940" coords="222,350,411,390"
+ href="phyloxml.xsd.html#h259010940"/>
+
+ <area shape="rect" alt="h1408823200" coords="136,451,238,477"
+ href="phyloxml.xsd.html#h1408823200"/>
+
+ <area shape="rect" alt="h-1482113798" coords="136,487,273,513"
+ href="phyloxml.xsd.html#h-1482113798"/>
+
+ <area shape="rect" alt="h577349652" coords="136,523,252,549"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1794244794_scbox_button" class="control"
+ onclick="switchState('h-1794244794_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1794244794_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Sequence</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">symbol</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceSymbol" type definition." href="#h935679102">SequenceSymbol</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">accession</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Accession" type definition." href="#h-788356801">Accession</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">location</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">mol_seq</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "MolSeq" type definition." href="#h-213750342">MolSeq</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">annotation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Annotation" type definition." href="#h917087604">Annotation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">domain_architecture</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "DomainArchitecture" type definition." href="#h259010940">DomainArchitecture</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceType" type definition." href="#h1408823200">SequenceType</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-802965662" class="name">SequenceRelation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceRelation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> This is used to express a typed relationship between two sequences. For example it could be
+ used to describe an orthology (in which case attribute 'type' is 'orthology'). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-802965662_xibox_button" class="control"
+ onclick="switchState('h-802965662_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-802965662_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> id_ref_0="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref_1="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> distance="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelationType" type definition." href="#h519911868">SequenceRelationType</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-802965662_diagram_button" class="control"
+ onclick="switchState('h-802965662_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-802965662_diagram" class="contents">
+ <img usemap="#h230020485" src="schemaDiagrams/h230020485.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h230020485.map--><map name="h230020485">
+ <area shape="rect" alt="h-993584945" coords="278,0,404,40"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h577349652" coords="192,50,322,76"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h577349652" coords="192,86,322,112"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h519911868" coords="192,158,294,184"
+ href="phyloxml.xsd.html#h519911868"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-802965662_scbox_button" class="control"
+ onclick="switchState('h-802965662_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-802965662_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceRelation</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_0</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_1</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">distance</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelationType" type definition." href="#h519911868">SequenceRelationType</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h888650454" class="name">Taxonomy</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Taxonomy</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Taxonomy is used to describe taxonomic information for a clade. Element 'code' is
+ intended to store UniProt/Swiss-Prot style organism codes (e.g. 'APLCA' for the California sea hare 'Aplysia
+ californica'). Element 'id' is used for a unique identifier of a taxon (for example '6500' with
+ 'ncbi_taxonomy' as 'type' for the California sea hare). Attribute 'id_source' is used to link other elements
+ to a taxonomy (on the xml-level).</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h888650454_xibox_button" class="control"
+ onclick="switchState('h888650454_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h888650454_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_source="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:code> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "TaxonomyCode" type definition." href="#h712147427">TaxonomyCode</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:code> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:scientific_name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:scientific_name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:common_name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:common_name> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:rank> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Rank" type definition." href="#h518348337">Rank</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:rank> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h888650454_diagram_button" class="control"
+ onclick="switchState('h888650454_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h888650454_diagram" class="contents">
+ <img usemap="#h992625297" src="schemaDiagrams/h992625297.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h992625297.map--><map name="h992625297">
+ <area shape="rect" alt="h-853091232" coords="222,0,298,40"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h712147427" coords="222,50,306,90"
+ href="phyloxml.xsd.html#h712147427"/>
+
+ <area shape="rect" alt="h518348337" coords="222,200,306,240"
+ href="phyloxml.xsd.html#h518348337"/>
+
+ <area shape="rect" alt="h-676012345" coords="222,250,299,290"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ <area shape="rect" alt="h-1482113798" coords="136,387,273,413"
+ href="phyloxml.xsd.html#h-1482113798"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h888650454_scbox_button" class="control"
+ onclick="switchState('h888650454_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h888650454_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Taxonomy</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">code</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "TaxonomyCode" type definition." href="#h712147427">TaxonomyCode</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">scientific_name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">common_name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">rank</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Rank" type definition." href="#h518348337">Rank</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-676012345" class="name">Uri</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span> < <strong>Uri</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Uri</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>, Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A uniform resource identifier. In general, this is expected to be an URL (for example, to
+ link to an image on a website, in which case the 'type' attribute might be 'image' and 'desc' might be
+ 'image of a California sea hare'). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-676012345_xibox_button" class="control"
+ onclick="switchState('h-676012345_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-676012345_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> desc="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-676012345_diagram_button" class="control"
+ onclick="switchState('h-676012345_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-676012345_diagram" class="contents">
+ <img usemap="#h-1930055872" src="schemaDiagrams/h-1930055872.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-1930055872.map--><map name="h-1930055872">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-676012345_scbox_button" class="control"
+ onclick="switchState('h-676012345_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-676012345_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Uri</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-763252414" class="name">AppliesTo</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>AppliesTo</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>AppliesTo</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'phylogeny'|'clade'|'node'|'annotation'|'parent_branch'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-763252414_diagram_button" class="control"
+ onclick="switchState('h-763252414_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-763252414_diagram" class="contents">
+ <img usemap="#h-553597019" src="schemaDiagrams/h-553597019.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-553597019.map--><map name="h-553597019">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-763252414_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-763252414_scbox_button" class="control"
+ onclick="switchState('h-763252414_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-763252414_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">AppliesTo</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">phylogeny</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">clade</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">node</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">annotation</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">parent_branch</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-763252414_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-676028775" class="name">Doi</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Doi</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Doi</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h401516646">Reference</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = [a-zA-Z0-9_\.]+/[a-zA-Z0-9_\.]+</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-676028775_diagram_button" class="control"
+ onclick="switchState('h-676028775_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-676028775_diagram" class="contents">
+ <img usemap="#h-230267218" src="schemaDiagrams/h-230267218.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-230267218.map--><map name="h-230267218">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676028775_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-676028775_scbox_button" class="control"
+ onclick="switchState('h-676028775_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-676028775_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">Doi</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[a-zA-Z0-9_\.]+/[a-zA-Z0-9_\.]+</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676028775_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h1358103055" class="name">EventType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>EventType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>EventType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-436501026">Events</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'transfer'|'fusion'|'speciation_or_duplication'|'other'|'mixed'|'unassigned'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1358103055_diagram_button" class="control"
+ onclick="switchState('h1358103055_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h1358103055_diagram" class="contents">
+ <img usemap="#h77064440" src="schemaDiagrams/h77064440.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h77064440.map--><map name="h77064440">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1358103055_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h1358103055_scbox_button" class="control"
+ onclick="switchState('h1358103055_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h1358103055_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">EventType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">transfer</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">fusion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">speciation_or_duplication</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">mixed</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unassigned</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1358103055_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-213750342" class="name">MolSeq</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>MolSeq</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>MolSeq</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = [a-zA-Z\.\-\?\*_]+</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-213750342_diagram_button" class="control"
+ onclick="switchState('h-213750342_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-213750342_diagram" class="contents">
+ <img usemap="#h-100858323" src="schemaDiagrams/h-100858323.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-100858323.map--><map name="h-100858323">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-213750342_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-213750342_scbox_button" class="control"
+ onclick="switchState('h-213750342_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-213750342_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">MolSeq</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[a-zA-Z\.\-\?\*_]+</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-213750342_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-54338178" class="name">PropertyDataType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>PropertyDataType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>PropertyDataType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'xsd:string'|'xsd:boolean'|'xsd:decimal'|'xsd:float'|'xsd:double'|'xsd:duration'|'xsd:dateTime'|'xsd:time'|'xsd:date'|'xsd:gYearMonth'|'xsd:gYear'|'xsd:gMonthDay'|'xsd:gDay'|'xsd:gMonth'|'xsd:hexBinary'|'xsd:base64Binary'|'xsd:anyURI'|'xsd:normalizedString'|'xsd:token'|'xsd:integer'|'xsd:nonPositiveInteger'|'xsd:negativeInteger'|'xsd:long'|'xsd:int'|'xsd:short'|'xsd:byte'|'xsd:nonNegativeInteger'|'xsd:unsignedLong'|'xsd:unsignedInt'|'xsd:unsignedShort'|'xsd:unsignedByte'|'xsd:positiveInteger'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-54338178_diagram_button" class="control"
+ onclick="switchState('h-54338178_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-54338178_diagram" class="contents">
+ <img usemap="#h-624240407" src="schemaDiagrams/h-624240407.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-624240407.map--><map name="h-624240407">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-54338178_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-54338178_scbox_button" class="control"
+ onclick="switchState('h-54338178_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-54338178_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">PropertyDataType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:string</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:boolean</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:decimal</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:float</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:double</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:duration</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:dateTime</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:time</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:date</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gYearMonth</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gYear</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gMonthDay</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gDay</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gMonth</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:hexBinary</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:base64Binary</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:anyURI</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:normalizedString</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:token</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:integer</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:nonPositiveInteger</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:negativeInteger</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:long</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:int</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:short</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:byte</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:nonNegativeInteger</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:unsignedLong</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:unsignedInt</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:unsignedShort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:unsignedByte</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:positiveInteger</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-54338178_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h518348337" class="name">Rank</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Rank</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Rank</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'domain'|'kingdom'|'subkingdom'|'branch'|'infrakingdom'|'superphylum'|'phylum'|'subphylum'|'infraphylum'|'microphylum'|'superdivision'|'division'|'subdivision'|'infradivision'|'superclass'|'class'|'subclass'|'infraclass'|'superlegion'|'legion'|'sublegion'|'infralegion'|'supercohort'|'cohort'|'subcohort'|'infracohort'|'superorder'|'order'|'suborder'|'superfamily'|'family'|'subfamily'|'supertribe'|'tribe'|'subtribe'|'infratribe'|'genus'|'subgenus'|'superspecies'|'species'|'subspecies'|'variety'|'subvariety'|'form'|'subform'|'cultivar'|'unknown'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h518348337_diagram_button" class="control"
+ onclick="switchState('h518348337_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h518348337_diagram" class="contents">
+ <img usemap="#h-1363552746" src="schemaDiagrams/h-1363552746.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-1363552746.map--><map name="h-1363552746">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h518348337_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h518348337_scbox_button" class="control"
+ onclick="switchState('h518348337_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h518348337_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">Rank</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">domain</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">kingdom</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subkingdom</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">branch</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infrakingdom</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">phylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infraphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">microphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superdivision</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">division</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subdivision</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infradivision</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superclass</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">class</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subclass</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infraclass</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superlegion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">legion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">sublegion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infralegion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">supercohort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">cohort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subcohort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infracohort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superorder</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">order</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">suborder</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superfamily</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">family</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subfamily</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">supertribe</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">tribe</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subtribe</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infratribe</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">genus</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subgenus</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superspecies</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">species</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subspecies</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">variety</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subvariety</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">form</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subform</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">cultivar</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unknown</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h518348337_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h519911868" class="name">SequenceRelationType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>SequenceRelationType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceRelationType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'orthology'|'one_to_one_orthology'|'super_orthology'|'paralogy'|'ultra_paralogy'|'xenology'|'unknown'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h519911868_diagram_button" class="control"
+ onclick="switchState('h519911868_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h519911868_diagram" class="contents">
+ <img usemap="#h-465227925" src="schemaDiagrams/h-465227925.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-465227925.map--><map name="h-465227925">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h519911868_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h519911868_scbox_button" class="control"
+ onclick="switchState('h519911868_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h519911868_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceRelationType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">one_to_one_orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">super_orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">paralogy</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">ultra_paralogy</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xenology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unknown</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h519911868_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h935679102" class="name">SequenceSymbol</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>SequenceSymbol</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceSymbol</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = \S{1,10}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h935679102_diagram_button" class="control"
+ onclick="switchState('h935679102_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h935679102_diagram" class="contents">
+ <img usemap="#h516473321" src="schemaDiagrams/h516473321.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h516473321.map--><map name="h516473321">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h935679102_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h935679102_scbox_button" class="control"
+ onclick="switchState('h935679102_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h935679102_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceSymbol</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">\S{1,10}</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h935679102_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h1408823200" class="name">SequenceType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>SequenceType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'rna'|'dna'|'aa'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1408823200_diagram_button" class="control"
+ onclick="switchState('h1408823200_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h1408823200_diagram" class="contents">
+ <img usemap="#h-2043228153" src="schemaDiagrams/h-2043228153.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-2043228153.map--><map name="h-2043228153">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1408823200_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h1408823200_scbox_button" class="control"
+ onclick="switchState('h1408823200_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h1408823200_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">rna</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">dna</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">aa</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1408823200_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h712147427" class="name">TaxonomyCode</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>TaxonomyCode</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>TaxonomyCode</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = [a-zA-Z0-9_]{2,10}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h712147427_diagram_button" class="control"
+ onclick="switchState('h712147427_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h712147427_diagram" class="contents">
+ <img usemap="#h516707748" src="schemaDiagrams/h516707748.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h516707748.map--><map name="h516707748">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h712147427_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h712147427_scbox_button" class="control"
+ onclick="switchState('h712147427_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h712147427_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">TaxonomyCode</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[a-zA-Z0-9_]{2,10}</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h712147427_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h577349652" class="name">id_ref</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:IDREF</span> < <strong>id_ref</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>id_ref</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>, Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: IDREF</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h577349652_diagram_button" class="control"
+ onclick="switchState('h577349652_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h577349652_diagram" class="contents">
+ <img usemap="#h813803539" src="schemaDiagrams/h813803539.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h813803539.map--><map name="h813803539">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h577349652_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h577349652_scbox_button" class="control"
+ onclick="switchState('h577349652_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h577349652_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:IDREF</span>
+ </span>"/></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h577349652_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-1482113798" class="name">id_source</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:ID</span> < <strong>id_source</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>id_source</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>, Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: ID</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1482113798_diagram_button" class="control"
+ onclick="switchState('h-1482113798_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1482113798_diagram" class="contents">
+ <img usemap="#h123518701" src="schemaDiagrams/h123518701.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h123518701.map--><map name="h123518701">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1482113798_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1482113798_scbox_button" class="control"
+ onclick="switchState('h-1482113798_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1482113798_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:ID</span>
+ </span>"/></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1482113798_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-675984882" class="name">ref</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>ref</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>ref</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>, Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>, Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = [a-zA-Z0-9_]+:[a-zA-Z0-9_\.\-\s]+</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-675984882_diagram_button" class="control"
+ onclick="switchState('h-675984882_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-675984882_diagram" class="contents">
+ <img usemap="#h-1056119207" src="schemaDiagrams/h-1056119207.png"/>
+ <!--
+ Map ref: file:/D:/WORK/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.00//schemaDiagrams/h-1056119207.map--><map name="h-1056119207">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-675984882_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-675984882_scbox_button" class="control"
+ onclick="switchState('h-675984882_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-675984882_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">ref</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[a-zA-Z0-9_]+:[a-zA-Z0-9_\.\-\s]+</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-675984882_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <div id="legend">
+ <h2>
+ <a name="Legend">Legend</a>
+ </h2>
+ <div style="float: left; width: 15em;">
+ <h3 style="margin-bottom: 0px;">Complex Type:</h3>
+ <div class="hint" style="margin-left: 0em;">Schema Component Type</div>
+ </div>
+ <div style="float: left; width: 15em;">
+ <h3 style="margin-bottom: 0px;">
+ <span class="name">AusAddress</span>
+ </h3>
+ <div class="hint" style="margin-left: 0em;">Schema Component Name</div>
+ </div>
+ <table class="hierarchy" style="clear : both">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type" style="color: #0000FF; text-decoration:underline;">Address</span> < <span class="current">AusAddress</span> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>
+ <ul>
+ <li>
+ <span class="type" style="color: #0000FF; text-decoration:underline;">QLDAddress</span> (by restriction)</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="hint">If this schema component is a type definition, its type hierarchy is shown in a gray-bordered box.</div>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>AusAddress</td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="hint">The table above displays the properties of this schema component.</div>
+ <div class="sample box">
+ <div>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div class="contents">
+ <span style="margin-left: 0em"><...</span>
+ <span class="newFields">
+ <span> country="<span class="fixed">Australia</span>"</span>
+ </span>> <br/>
+ <span style="margin-left: 1.5em" class="inherited"><unitNo> <span class="type">string</span> </unitNo> <span class="occurs">[0..1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em" class="inherited"><houseNo> <span class="type">string</span> </houseNo> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em" class="inherited"><street> <span class="type">string</span> </street> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Choice' in glossary" href="#term_Choice">Choice</a>
+ <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 3em" class="inherited"><city> <span class="type">string</span> </city> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 3em" class="inherited"><town> <span class="type">string</span> </town> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span class="group" style="margin-left: 1.5em">End Choice</span>
+ <br/>
+ <span class="newFields">
+ <span style="margin-left: 1.5em"><state> <span class="type" style="text-decoration:underline;">AusStates</span> </state> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em"><postcode> <span class="constraint">string <<<em>pattern</em> = [1-9][0-9]{3}>></span> </postcode> <span class="occurs">[1]</span>
+ <a href="javascript:void(0)" title="View Documentation" class="documentation"
+ onclick="docArray = new Array('Post code must be a four-digit number.'); viewDocumentation('Element', 'postcode', docArray);">?</a>
+ </span>
+ <br/>
+ </span>
+ <span style="margin-left: 0em"></...></span>
+ <br/>
+ </div>
+ </div>
+ <div class="hint">
+ <p>The XML Instance Representation table above shows the schema component's content as an XML instance.</p>
+ <ul>
+ <li>The minimum and maximum occurrence of elements and attributes are provided in square brackets, e.g. [0..1].</li>
+ <li>Model group information are shown in gray, e.g. Start Choice ... End Choice.</li>
+ <li>For type derivations, the elements and attributes that have been added to or changed from the base type's content are shown in <span style="font-weight: bold">bold</span>.</li>
+ <li>If an element/attribute has a fixed value, the fixed value is shown in green, e.g. country="Australia".</li>
+ <li>Otherwise, the type of the element/attribute is displayed.
+ <ul>
+ <li>If the element/attribute's type is in the schema, a link is provided to it.</li>
+ <li>For local simple type definitions, the constraints are displayed in angle brackets, e.g. <<<em>pattern</em> = [1-9][0-9]{3}>>.</li>
+ </ul>
+ </li>
+ <li>If a local element/attribute has documentation, it will be displayed in a window that pops up when the question mark inside the attribute or next to the element is clicked, e.g. <postcode>.</li>
+ </ul>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div class="contents">
+ <span style="margin-left: 0em"><<span class="scTag">complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">AusAddress</span>"></span>
+ <br/>
+ <span style="margin-left: 1.5em"><<span class="scTag">complexContent</span>></span>
+ <br/>
+ <span style="margin-left: 3em"><<span class="scTag">extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type" style="text-decoration:underline;">Address</span>
+ </span>"></span>
+ <br/>
+ <span style="margin-left: 4.5em"><<span class="scTag">sequence</span>></span>
+ <br/>
+ <span style="margin-left: 6em"><<span class="scTag">element</span>
+ <span class="scTag">name</span>="<span class="scContent">state</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type" style="text-decoration:underline;">AusStates</span>
+ </span>"/></span>
+ <br/>
+ <span style="margin-left: 6em"><<span class="scTag">element</span>
+ <span class="scTag">name</span>="<span class="scContent">postcode</span>"></span>
+ <br/>
+ <span style="margin-left: 7.5em"><<span class="scTag">simpleType</span>></span>
+ <br/>
+ <span style="margin-left: 9em"><<span class="scTag">restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">string</span>
+ </span>"></span>
+ <br/>
+ <span style="margin-left: 10.5em"><<span class="scTag">pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[1-9][0-9]{3}</span>"/></span>
+ <br/>
+ <span style="margin-left: 9em"></<span class="scTag">restriction</span>></span>
+ <br/>
+ <span style="margin-left: 7.5em"></<span class="scTag">simpleType</span>></span>
+ <br/>
+ <span style="margin-left: 6em"></<span class="scTag">element</span>></span>
+ <br/>
+ <span style="margin-left: 4.5em"></<span class="scTag">sequence</span>></span>
+ <br/>
+ <span style="margin-left: 4.5em"><<span class="scTag">attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">country</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">string</span>
+ </span>" <span class="scTag">fixed</span>="<span class="scContent">Australia</span>"/></span>
+ <br/>
+ <span style="margin-left: 3em"></<span class="scTag">extension</span>></span>
+ <br/>
+ <span style="margin-left: 1.5em"></<span class="scTag">complexContent</span>></span>
+ <br/>
+ <span style="margin-left: 0em"></<span class="scTag">complexType</span>></span>
+ <br/>
+ </div>
+ </div>
+ <div class="hint">The Schema Component Representation table above displays the underlying XML representation of the schema component. (Annotations are not shown.)</div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ </div>
+ <div id="glossary">
+ <h2>
+ <a name="Glossary">Glossary</a>
+ </h2>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Abstract">Abstract</a>
+ </span>(Applies to complex type definitions and element declarations). An abstract element or complex type cannot used to validate an element instance. If there is a reference to an abstract element, only element declarations that can substitute the abstract element can be used to validate the instance. For references to abstract type definitions, only derived types can be used.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_All">All Model Group</a>
+ </span>Child elements can be provided <em>in any order</em> in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-all"
+ href="http://www.w3.org/TR/xmlschema-1/#element-all">http://www.w3.org/TR/xmlschema-1/#element-all</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Choice">Choice Model Group</a>
+ </span>
+ <em>Only one</em> from the list of child elements and model groups can be provided in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-choice"
+ href="http://www.w3.org/TR/xmlschema-1/#element-choice">http://www.w3.org/TR/xmlschema-1/#element-choice</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_CollapseWS">Collapse Whitespace Policy</a>
+ </span>Replace tab, line feed, and carriage return characters with space character (Unicode character 32). Then, collapse contiguous sequences of space characters into single space character, and remove leading and trailing space characters.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ElemBlock">Disallowed Substitutions</a>
+ </span>(Applies to element declarations). If <em>substitution</em> is specified, then <a title="Look up 'substitution group' in glossary"
+ href="phyloxml.xsd.html#term_SubGroup">substitution group</a> members cannot be used in place of the given element declaration to validate element instances. If <em>derivation methods</em>, e.g. extension, restriction, are specified, then the given element declaration will not validate element instances that have types derived from the element declaration's type using the specified derivation methods. Normally, element instances can override their declaration's type by specifying an <code>xsi:type</code> attribute.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Key">Key Constraint</a>
+ </span>Like <a title="Look up 'Uniqueness Constraint' in glossary"
+ href="phyloxml.xsd.html#term_Unique">Uniqueness Constraint</a>, but additionally requires that the specified value(s) must be provided. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_KeyRef">Key Reference Constraint</a>
+ </span>Ensures that the specified value(s) must match value(s) from a <a title="Look up 'Key Constraint' in glossary" href="phyloxml.xsd.html#term_Key">Key Constraint</a> or <a title="Look up 'Uniqueness Constraint' in glossary"
+ href="phyloxml.xsd.html#term_Unique">Uniqueness Constraint</a>. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ModelGroup">Model Group</a>
+ </span>Groups together element content, specifying the order in which the element content can occur and the number of times the group of element content may be repeated. See: <a title="http://www.w3.org/TR/xmlschema-1/#Model_Groups"
+ href="http://www.w3.org/TR/xmlschema-1/#Model_Groups">http://www.w3.org/TR/xmlschema-1/#Model_Groups</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Nillable">Nillable</a>
+ </span>(Applies to element declarations). If an element declaration is nillable, instances can use the <code>xsi:nil</code> attribute. The <code>xsi:nil</code> attribute is the boolean attribute, <em>nil</em>, from the <em>http://www.w3.org/2001/XMLSchema-instance</em> namespace. If an element instance has an <code>xsi:nil</code> attribute set to true, it can be left empty, even though its element declaration may have required content.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Notation">Notation</a>
+ </span>A notation is used to identify the format of a piece of data. Values of elements and attributes that are of type, NOTATION, must come from the names of declared notations. See: <a title="http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations"
+ href="http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations">http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_PreserveWS">Preserve Whitespace Policy</a>
+ </span>Preserve whitespaces exactly as they appear in instances.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TypeFinal">Prohibited Derivations</a>
+ </span>(Applies to type definitions). Derivation methods that cannot be used to create sub-types from a given type definition.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TypeBlock">Prohibited Substitutions</a>
+ </span>(Applies to complex type definitions). Prevents sub-types that have been derived using the specified derivation methods from validating element instances in place of the given type definition.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ReplaceWS">Replace Whitespace Policy</a>
+ </span>Replace tab, line feed, and carriage return characters with space character (Unicode character 32).</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Sequence">Sequence Model Group</a>
+ </span>Child elements and model groups must be provided <em>in the specified order</em> in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-sequence"
+ href="http://www.w3.org/TR/xmlschema-1/#element-sequence">http://www.w3.org/TR/xmlschema-1/#element-sequence</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_SubGroup">Substitution Group</a>
+ </span>Elements that are <em>members</em> of a substitution group can be used wherever the <em>head</em> element of the substitution group is referenced.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ElemFinal">Substitution Group Exclusions</a>
+ </span>(Applies to element declarations). Prohibits element declarations from nominating themselves as being able to substitute a given element declaration, if they have types that are derived from the original element's type using the specified derivation methods.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TargetNS">Target Namespace</a>
+ </span>The target namespace identifies the namespace that components in this schema belongs to. If no target namespace is provided, then the schema components do not belong to any namespace.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Unique">Uniqueness Constraint</a>
+ </span>Ensures uniqueness of an element/attribute value, or a combination of values, within a specified scope. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ </div>
+ <p class="footer">Generated by <a href="http://www.oxygenxml.com"><oXygen/> XML Editor</a> using a modified version of <a href="http://titanium.dstc.edu.au/xml/xs3p">xs3p</a> that adds schema diagrams and chunking support. Last modified: <script type="text/javascript">
+<!--
+ document.write(document.lastModified);
+// -->
+</script>
+ </p>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-100858323'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1056119207'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1142642744'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1363552746'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1484760249'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1724830583'>
+ <area
+ shape='rect'
+ alt='h1358103055'
+ coords='208,0,292,40'
+ href='phyloxml.xsd.html#h1358103055'/>
+
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='208,200,334,240'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1930055872'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-203375637'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-2043228153'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-230267218'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-265752642'>
+ <area
+ shape='rect'
+ alt='h-1112505301'
+ coords='250,50,341,90'
+ href='phyloxml.xsd.html#h-1112505301'/>
+
+ <area
+ shape='rect'
+ alt='h332351765'
+ coords='250,100,355,140'
+ href='phyloxml.xsd.html#h332351765'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-354757553'>
+ <area
+ shape='rect'
+ alt='h535307528'
+ coords='222,0,341,40'
+ href='phyloxml.xsd.html#h535307528'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-411495795'>
+ <area
+ shape='rect'
+ alt='h-675984882'
+ coords='136,0,231,26'
+ href='phyloxml.xsd.html#h-675984882'/>
+
+ <area
+ shape='rect'
+ alt='h-675984882'
+ coords='136,36,238,62'
+ href='phyloxml.xsd.html#h-675984882'/>
+
+ <area
+ shape='rect'
+ alt='h-54338178'
+ coords='136,72,266,98'
+ href='phyloxml.xsd.html#h-54338178'/>
+
+ <area
+ shape='rect'
+ alt='h-763252414'
+ coords='136,108,280,134'
+ href='phyloxml.xsd.html#h-763252414'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='136,144,252,170'
+ href='phyloxml.xsd.html#h577349652'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-465227925'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-553597019'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-624240407'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-81115689'>
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,0,376,40'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,50,362,90'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,100,383,140'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,150,376,190'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-93417557'>
+ <area
+ shape='rect'
+ alt='h-1389097534'
+ coords='292,0,390,40'
+ href='phyloxml.xsd.html#h-1389097534'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1156064289'>
+ <area
+ shape='rect'
+ alt='h935679102'
+ coords='222,0,320,40'
+ href='phyloxml.xsd.html#h935679102'/>
+
+ <area
+ shape='rect'
+ alt='h-788356801'
+ coords='222,50,341,90'
+ href='phyloxml.xsd.html#h-788356801'/>
+
+ <area
+ shape='rect'
+ alt='h-213750342'
+ coords='222,200,327,240'
+ href='phyloxml.xsd.html#h-213750342'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='222,250,299,290'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+ <area
+ shape='rect'
+ alt='h917087604'
+ coords='222,300,348,340'
+ href='phyloxml.xsd.html#h917087604'/>
+
+ <area
+ shape='rect'
+ alt='h259010940'
+ coords='222,350,411,390'
+ href='phyloxml.xsd.html#h259010940'/>
+
+ <area
+ shape='rect'
+ alt='h1408823200'
+ coords='136,451,238,477'
+ href='phyloxml.xsd.html#h1408823200'/>
+
+ <area
+ shape='rect'
+ alt='h-1482113798'
+ coords='136,487,273,513'
+ href='phyloxml.xsd.html#h-1482113798'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='136,523,252,549'
+ href='phyloxml.xsd.html#h577349652'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h123518701'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1501379365'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1603897912'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h169662420'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1727164161'>
+ <area
+ shape='rect'
+ alt='h-676028775'
+ coords='143,50,238,76'
+ href='phyloxml.xsd.html#h-676028775'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1900732667'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1919634775'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='257,0,383,40'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='171,50,301,76'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='171,86,301,112'
+ href='phyloxml.xsd.html#h577349652'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h2137002076'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h230020485'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='278,0,404,40'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='192,50,322,76'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='192,86,322,112'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h519911868'
+ coords='192,158,294,184'
+ href='phyloxml.xsd.html#h519911868'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h482833585'>
+ <area
+ shape='rect'
+ alt='h535307528'
+ coords='344,10,463,50'
+ href='phyloxml.xsd.html#h535307528'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h508496390'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h516473321'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h516707748'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h555770290'>
+ <area
+ shape='rect'
+ alt='h-1112505301'
+ coords='215,0,306,40'
+ href='phyloxml.xsd.html#h-1112505301'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h624412339'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='236,50,362,90'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h158033242'
+ coords='236,100,348,140'
+ href='phyloxml.xsd.html#h158033242'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='236,150,313,190'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+ <area
+ shape='rect'
+ alt='h-675984882'
+ coords='150,200,245,226'
+ href='phyloxml.xsd.html#h-675984882'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h731810719'>
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='229,50,305,90'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='229,200,355,240'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h-1124608460'
+ coords='229,250,320,290'
+ href='phyloxml.xsd.html#h-1124608460'/>
+
+ <area
+ shape='rect'
+ alt='h192331856'
+ coords='229,300,383,340'
+ href='phyloxml.xsd.html#h192331856'/>
+
+ <area
+ shape='rect'
+ alt='h-802965662'
+ coords='229,350,404,390'
+ href='phyloxml.xsd.html#h-802965662'/>
+
+ <area
+ shape='rect'
+ alt='h158033242'
+ coords='229,400,341,440'
+ href='phyloxml.xsd.html#h158033242'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h77064440'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h813803539'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h854822387'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='201,100,327,140'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h-1691165380'
+ coords='201,200,292,240'
+ href='phyloxml.xsd.html#h-1691165380'/>
+
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='201,250,306,290'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h888650454'
+ coords='201,300,313,340'
+ href='phyloxml.xsd.html#h888650454'/>
+
+ <area
+ shape='rect'
+ alt='h-1794244794'
+ coords='201,350,313,390'
+ href='phyloxml.xsd.html#h-1794244794'/>
+
+ <area
+ shape='rect'
+ alt='h-436501026'
+ coords='201,400,299,440'
+ href='phyloxml.xsd.html#h-436501026'/>
+
+ <area
+ shape='rect'
+ alt='h-1514309680'
+ coords='201,450,376,490'
+ href='phyloxml.xsd.html#h-1514309680'/>
+
+ <area
+ shape='rect'
+ alt='h-979596407'
+ coords='201,500,341,540'
+ href='phyloxml.xsd.html#h-979596407'/>
+
+ <area
+ shape='rect'
+ alt='h517931443'
+ coords='201,550,285,590'
+ href='phyloxml.xsd.html#h517931443'/>
+
+ <area
+ shape='rect'
+ alt='h401516646'
+ coords='201,600,320,640'
+ href='phyloxml.xsd.html#h401516646'/>
+
+ <area
+ shape='rect'
+ alt='h158033242'
+ coords='201,650,313,690'
+ href='phyloxml.xsd.html#h158033242'/>
+
+ <area
+ shape='rect'
+ alt='h-1482113798'
+ coords='115,837,252,863'
+ href='phyloxml.xsd.html#h-1482113798'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h992625297'>
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='222,0,298,40'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h712147427'
+ coords='222,50,306,90'
+ href='phyloxml.xsd.html#h712147427'/>
+
+ <area
+ shape='rect'
+ alt='h518348337'
+ coords='222,200,306,240'
+ href='phyloxml.xsd.html#h518348337'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='222,250,299,290'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+ <area
+ shape='rect'
+ alt='h-1482113798'
+ coords='136,387,273,413'
+ href='phyloxml.xsd.html#h-1482113798'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>phyloXML 1.10 - phyloxml.xsd</title>
+ <meta http-equiv="Content-Type" content="text/xml; charset=UTF-8"/>
+ <style type="text/css">
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* More-configurable styles */
+
+/******** General ********/
+
+/* Document body */
+body {
+ color: Black;
+ background-color: White;
+ font-family: Arial, sans-serif;
+ font-size: 10pt;
+}
+
+/* Horizontal rules */
+hr {
+ color: black;
+}
+/* Document title */
+h1 {
+ font-size: 18pt;
+ letter-spacing: 2px;
+ border-bottom: 1px #ccc solid;
+ padding-top: 5px;
+ padding-bottom: 5px;
+}
+/* Main section headers */
+h2 {
+ font-size: 14pt;
+ letter-spacing: 1px;
+}
+/* Sub-section headers */
+h3, h3 a, h3 span {
+ font-size: 12pt;
+ font-weight: bold;
+ color: black;
+}
+/* Table displaying the properties of the schema components or the
+ schema document itself */
+table.properties th, table.properties th a {
+ color: black;
+ background-color: #F99; /* Pink */
+}
+table.properties td {
+ background-color: #eee; /* Gray */
+}
+
+img{
+ border: 0;
+}
+
+/********* Documentation style *************/
+p.documentation {
+ color:black;
+ font-style:italic;
+ background-color: #EEEEFF;
+ border: 1px solid #DDDDFF;
+ padding-top: 1px;
+ margin-right: 30px;
+ margin-top: 1px;
+}
+
+
+/******** Table of Contents Section ********/
+
+/* Controls for switching between printing and viewing modes */
+div#printerControls {
+ color: #963; /* Orange-brown */
+}
+/* Controls that can collapse or expand all XML Instance
+ Representation and Schema Component Representation boxes */
+div#globalControls {
+ border: 2px solid #999;
+}
+
+
+/******** Schema Document Properties Section ********/
+
+/* Table displaying the namespaces declared in the schema */
+table.namespaces th {
+ background-color: #ccc;
+}
+table.namespaces td {
+ background-color: #eee;
+}
+/* Target namespace of the schema */
+span.targetNS {
+ color: #06C;
+ font-weight: bold;
+}
+
+
+/******** Schema Components' Sections ********/
+
+/* Name of schema component */
+.name {
+ color: #F93; /* Orange */
+}
+
+/* Hierarchy table */
+table.hierarchy {
+ border: 2px solid #999; /* Gray */
+}
+
+/* XML Instance Representation table */
+div.sample div.contents {
+ border: 1px dashed black;
+}
+
+
+/* Schema Component Representation table */
+div.schemaComponent div.contents {
+ border: 2px black solid;
+}
+
+
+/******** Glossary Section ********/
+
+/* Glossary Terms */
+.glossaryTerm {
+ color: #036; /* Blue */
+}
+
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* Printer-version styles */
+
+@media print {
+
+/* Ensures that controls are hidden when printing */
+div#printerControls {
+ visibility: hidden;
+}
+div#globalControls {
+ visibility: hidden;
+}
+#legend {
+ display: none;
+}
+#legendTOC {
+ display: none;
+}
+#glossary {
+ display: none;
+}
+#glossaryTOC {
+ display: none;
+}
+
+}
+
+/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
+/* Base styles */
+
+/******** General ********/
+
+/* Unordered lists */
+ul {
+ margin-left: 1.5em;
+ margin-bottom: 0em;
+}
+/* Tables */
+table {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+table th, table td {
+ font-size: 10pt;
+ vertical-align: top;
+ padding-top: 3px;
+ padding-bottom: 3px;
+ padding-left: 10px;
+ padding-right: 10px;
+}
+table th {
+ font-weight: bold;
+ text-align: left;
+}
+/* Table displaying the properties of the schema components or the
+ schema document itself */
+table.properties {
+ width: 90%;
+}
+table.properties th {
+ width: 30%;
+}
+/* Boxes that can make its content appear and disappear*/
+div.box {
+ margin: 1em;
+}
+ /* Box caption */
+div.box span.caption {
+ font-weight: bold;
+}
+ /* Button to open and close the box */
+div.box input.control {
+ width: 1.4em;
+ height: 1.4em;
+ text-align: center;
+ vertical-align: middle;
+ font-size: 11pt;
+}
+ /* Box contents */
+div.box div.contents {
+ margin-top: 3px;
+}
+
+
+/******** Table of Contents Section ********/
+
+/* Controls for switching between printing and viewing modes */
+div#printerControls {
+ white-space: nowrap;
+ font-weight: bold;
+ padding: 5px;
+ margin: 5px;
+}
+/* Controls that can collapse or expand all XML Instance
+ Representation and Schema Component Representation boxes */
+div#globalControls {
+ padding: 10px;
+ margin: 5px;
+}
+
+
+/******** Schema Document Properties Section ********/
+
+/* Table displaying the namespaces declared in the schema */
+table.namespaces th {
+}
+table.namespaces td {
+}
+/* Target namespace of the schema */
+span.targetNS {
+}
+
+
+/******** Schema Components' Sections ********/
+
+/* Name of schema component */
+.name {
+}
+
+/* Hierarchy table */
+table.hierarchy {
+ width: 90%;
+}
+table.hierarchy th {
+ font-weight: normal;
+ font-style: italic;
+ width: 20%;
+}
+table.hierarchy th, table.hierarchy td {
+ padding: 5px;
+}
+
+/* XML Instance Representation table */
+div.sample {
+ width: 90%;
+}
+div.sample div.contents {
+ padding: 5px;
+ font-family: Courier New, sans-serif;
+ font-size: 10pt;
+}
+ /* Normal elements and attributes */
+div.sample div.contents, div.sample div.contents a {
+ color: black;
+}
+ /* Group Headers */
+div.sample div.contents .group, div.sample div.contents .group a {
+ color: #999; /* Light gray */
+}
+ /* Type Information */
+div.sample div.contents .type, div.sample div.contents .type a {
+ color: #999; /* Light gray */
+}
+ /* Occurrence Information */
+div.sample div.contents .occurs, div.sample div.contents .occurs a {
+ color: #999; /* Light gray */
+}
+ /* Fixed values */
+div.sample div.contents .fixed {
+ color: #063; /* Green */
+ font-weight: bold;
+}
+ /* Simple type constraints */
+div.sample div.contents .constraint, div.sample div.contents .constraint a {
+ color: #999; /* Light gray */
+}
+ /* Elements and attributes inherited from base type */
+div.sample div.contents .inherited, div.sample div.contents .inherited a {
+ color: #666; /* Dark gray */
+}
+ /* Elements and attributes added to or changed from base type */
+div.sample div.contents .newFields {
+ font-weight: bold;
+}
+ /* Other type of information */
+div.sample div.contents .other, div.sample div.contents .other a {
+ color: #369; /* Blue */
+ font-style: italic;
+}
+ /* Link to open up window displaying documentation */
+div.sample div.contents a.documentation {
+ text-decoration: none;
+ padding-left: 3px;
+ padding-right: 3px;
+ padding-top: 0px;
+ padding-bottom: 0px;
+ font-weight: bold;
+ font-size: 11pt;
+ background-color: #FFD;
+ color: #069;
+}
+ /* Invert colors when hovering over link to open up window
+ displaying documentation */
+div.sample div.contents a.documentation:hover {
+ color: #FFD;
+ background-color: #069;
+}
+
+/* Schema Component Representation table */
+div.schemaComponent {
+ width: 90%;
+}
+div.schemaComponent div.contents {
+ font-family: Courier New, sans-serif;
+ font-size: 10pt;
+ padding: 5px;
+}
+ /* Syntax characters */
+div.schemaComponent div.contents {
+ color: #00f; /* blue */
+}
+ /* Element and attribute tags */
+div.schemaComponent div.contents .scTag {
+ color: #933; /* maroon */
+}
+ /* Element and attribute content */
+div.schemaComponent div.contents .scContent, div.schemaComponent div.contents .scContent a {
+ color: black;
+ font-weight: bold;
+}
+ /* Comments */
+div.schemaComponent div.contents .comment {
+ color: #999; /* Light gray */
+}
+
+/******** Legend Section ********/
+
+div#legend table, div#legend div {
+ margin-bottom: 3px;
+}
+div#legend div.hint {
+ color: #999; /* Light gray */
+ width: 90%;
+ margin-left: 1em;
+ margin-bottom: 2em;
+}
+
+
+/******** Glossary Section ********/
+
+/* Glossary Terms */
+.glossaryTerm {
+ font-weight: bold;
+}
+
+/********* Details *************/
+.detailsToc {
+ color: #666; /* Light gray */
+}
+
+.details {
+ color: #666; /* Light gray */
+ text-decoration:none;
+}
+
+/******** Footer ********/
+
+.footer {
+ font-size: 8pt;
+}
+</style>
+ <script type="text/javascript">
+<!--
+ /* IDs of XML Instance Representation boxes */
+var xiBoxes = new Array('h270234806_xibox', 'h155831896_xibox', 'h535307528_xibox', 'h-1124608460_xibox', 'h888650454_xibox', 'h712147427_xibox', 'h518348337_xibox', 'h-1794244794_xibox', 'h935679102_xibox', 'h-213750342_xibox', 'h1408823200_xibox', 'h-788356801_xibox', 'h259010940_xibox', 'h-1389097534_xibox', 'h-436501026_xibox', 'h1358103055_xibox', 'h-1514309680_xibox', 'h1535743041_xibox', 'h401516646_xibox', 'h917087604_xibox', 'h158033242_xibox', 'h-675984882_xibox', 'h-763252414_xibox', 'h-54338178_xibox', 'h-676012345_xibox', 'h-993584945_xibox', 'h-853091232_xibox', 'h-979596407_xibox', 'h-1112505301_xibox', 'h332351765_xibox', 'h517931443_xibox', 'h-1691165380_xibox', 'h-802965662_xibox', 'h519911868_xibox', 'h192331856_xibox', 'h-1482113798_xibox', 'h577349652_xibox');
+/* IDs of diagram boxes */
+var diagramBoxes = new Array('h270234806_diagram', 'h155831896_diagram', 'h535307528_diagram', 'h-1124608460_diagram', 'h888650454_diagram', 'h712147427_diagram', 'h518348337_diagram', 'h-1794244794_diagram', 'h935679102_diagram', 'h-213750342_diagram', 'h1408823200_diagram', 'h-788356801_diagram', 'h259010940_diagram', 'h-1389097534_diagram', 'h-436501026_diagram', 'h1358103055_diagram', 'h-1514309680_diagram', 'h1535743041_diagram', 'h401516646_diagram', 'h917087604_diagram', 'h158033242_diagram', 'h-675984882_diagram', 'h-763252414_diagram', 'h-54338178_diagram', 'h-676012345_diagram', 'h-993584945_diagram', 'h-853091232_diagram', 'h-979596407_diagram', 'h-1112505301_diagram', 'h332351765_diagram', 'h517931443_diagram', 'h-1691165380_diagram', 'h-802965662_diagram', 'h519911868_diagram', 'h192331856_diagram', 'h-1482113798_diagram', 'h577349652_diagram');
+/* IDs of logical diagram boxes */
+var logicalDiagramBoxes = new Array('h270234806_logicalDiagram');
+/* IDs of Schema Component Representation boxes */
+var scBoxes = new Array('schema_scbox', 'h270234806_scbox', 'h155831896_scbox', 'h535307528_scbox', 'h-1124608460_scbox', 'h888650454_scbox', 'h712147427_scbox', 'h518348337_scbox', 'h-1794244794_scbox', 'h935679102_scbox', 'h-213750342_scbox', 'h1408823200_scbox', 'h-788356801_scbox', 'h259010940_scbox', 'h-1389097534_scbox', 'h-436501026_scbox', 'h1358103055_scbox', 'h-1514309680_scbox', 'h1535743041_scbox', 'h401516646_scbox', 'h917087604_scbox', 'h158033242_scbox', 'h-675984882_scbox', 'h-763252414_scbox', 'h-54338178_scbox', 'h-676012345_scbox', 'h-993584945_scbox', 'h-853091232_scbox', 'h-979596407_scbox', 'h-1112505301_scbox', 'h332351765_scbox', 'h517931443_scbox', 'h-1691165380_scbox', 'h-802965662_scbox', 'h519911868_scbox', 'h192331856_scbox', 'h-1482113798_scbox', 'h577349652_scbox');
+
+/**
+ * Can get the ID of the button controlling
+ * a collapseable box by concatenating
+ * this string onto the ID of the box itself.
+ */
+var B_SFIX = "_button";
+
+
+/**
+ * Returns an element in the current HTML document.
+ *
+ * @param elementID Identifier of HTML element
+ * @return HTML element object
+ */
+function getElementObject(elementID) {
+ var elemObj = null;
+ if (document.getElementById) {
+ elemObj = document.getElementById(elementID);
+ }
+ return elemObj;
+}
+
+/**
+ * Closes a collapseable box.
+ *
+ * @param boxObj Collapseable box
+ * @param buttonObj Button controlling box
+ */
+function closeBox(boxObj, buttonObj) {
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else {
+ // Change 'display' CSS property of box
+ boxObj.style.display="none";
+
+ // Change text of button
+ if (boxObj.style.display=="none") {
+ buttonObj.value=" + ";
+ }
+ }
+}
+
+/**
+ * Opens a collapseable box.
+ *
+ * @param boxObj Collapseable box
+ * @param buttonObj Button controlling box
+ */
+function openBox(boxObj, buttonObj) {
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else {
+ // Change 'display' CSS property of box
+ boxObj.style.display="block";
+
+ // Change text of button
+ if (boxObj.style.display=="block") {
+ buttonObj.value=" - ";
+ }
+ }
+}
+
+/**
+ * Sets the state of a collapseable box.
+ *
+ * @param boxID Identifier of box
+ * @param open If true, box is "opened",
+ * Otherwise, box is "closed".
+ */
+function setState(boxID, open) {
+ var boxObj = getElementObject(boxID);
+ var buttonObj = getElementObject(boxID+B_SFIX);
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else if (open) {
+ openBox(boxObj, buttonObj);
+ // Make button visible
+ buttonObj.style.display="inline";
+ } else {
+ closeBox(boxObj, buttonObj);
+ // Make button visible
+ buttonObj.style.display="inline";
+ }
+}
+
+/**
+ * Switches the state of a collapseable box, e.g.
+ * if it's opened, it'll be closed, and vice versa.
+ *
+ * @param boxID Identifier of box
+ */
+function switchState(boxID) {
+ var boxObj = getElementObject(boxID);
+ var buttonObj = getElementObject(boxID+B_SFIX);
+ if (boxObj == null || buttonObj == null) {
+ // Box or button not found
+ } else if (boxObj.style.display=="none") {
+ // Box is closed, so open it
+ openBox(boxObj, buttonObj);
+ } else if (boxObj.style.display=="block") {
+ // Box is opened, so close it
+ closeBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Closes all boxes in a given list.
+ *
+ * @param boxList Array of box IDs
+ */
+function collapseAll(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ var boxObj = getElementObject(boxList[idx]);
+ var buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ closeBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Open all boxes in a given list.
+ *
+ * @param boxList Array of box IDs
+ */
+function expandAll(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ var boxObj = getElementObject(boxList[idx]);
+ var buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ openBox(boxObj, buttonObj);
+ }
+}
+
+/**
+ * Makes all the control buttons of boxes appear.
+ *
+ * @param boxList Array of box IDs
+ */
+function viewControlButtons(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ if (buttonObj != null) {
+ buttonObj.style.display = "inline";
+ }
+ }
+}
+
+/**
+ * Makes all the control buttons of boxes disappear.
+ *
+ * @param boxList Array of box IDs
+ */
+function hideControlButtons(boxList) {
+ var idx;
+ for (idx = 0; idx < boxList.length; idx++) {
+ buttonObj = getElementObject(boxList[idx]+B_SFIX);
+ if (buttonObj != null) {
+ buttonObj.style.display = "none";
+ }
+ }
+}
+
+/**
+ * Sets the page for either printing mode
+ * or viewing mode. In printing mode, the page
+ * is made to be more readable when printing it out.
+ * In viewing mode, the page is more browsable.
+ *
+ * @param isPrinterVersion If true, display in
+ * printing mode; otherwise,
+ * in viewing mode
+ */
+function displayMode(isPrinterVersion) {
+ var obj;
+ if (isPrinterVersion) {
+ // Hide global control buttons
+ obj = getElementObject("globalControls");
+ if (obj != null) {
+ obj.style.visibility = "hidden";
+ }
+ // Hide Legend
+ obj = getElementObject("legend");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ obj = getElementObject("legendTOC");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ // Hide Glossary
+ obj = getElementObject("glossary");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+ obj = getElementObject("glossaryTOC");
+ if (obj != null) {
+ obj.style.display = "none";
+ }
+
+ // Expand all diagrams
+ expandAll(diagramBoxes);
+ // Expand all logical diagrams
+ expandAll(logicalDiagramBoxes);
+ // Expand all XML Instance Representation tables
+ expandAll(xiBoxes);
+ // Expand all Schema Component Representation tables
+ expandAll(scBoxes);
+
+ // Hide Control buttons
+ hideControlButtons(diagramBoxes);
+ hideControlButtons(logicalDiagramBoxes);
+ hideControlButtons(xiBoxes);
+ hideControlButtons(scBoxes);
+ } else {
+ // View global control buttons
+ obj = getElementObject("globalControls");
+ if (obj != null) {
+ obj.style.visibility = "visible";
+ }
+ // View Legend
+ obj = getElementObject("legend");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ obj = getElementObject("legendTOC");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ // View Glossary
+ obj = getElementObject("glossary");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+ obj = getElementObject("glossaryTOC");
+ if (obj != null) {
+ obj.style.display = "block";
+ }
+
+ // Expand all diagram boxes
+ expandAll(diagramBoxes);
+ // Collapse all logical diagram boxes.
+ collapseAll(logicalDiagramBoxes);
+ // Expand all XML Instance Representation tables
+ expandAll(xiBoxes);
+ // Collapse all Schema Component Representation tables
+ collapseAll(scBoxes);
+
+ // View Control buttons
+ viewControlButtons(diagramBoxes);
+ viewControlButtons(logicalDiagramBoxes);
+ viewControlButtons(xiBoxes);
+ viewControlButtons(scBoxes);
+ }
+}
+
+
+
+// -->
+</script>
+ <script type="text/javascript">
+<!--
+
+
+/**
+ * Counter of documentation windows
+ * Used to give each window a unique name
+ */
+var windowCount = 0;
+
+/**
+ * Opens up a window displaying the documentation
+ * of a schema component in the XML Instance
+ * Representation table.
+ *
+ * @param compDesc Description of schema component
+ * @param compName Name of schema component
+ * @param docTextArray Array containing the paragraphs
+ * of the new document
+ */
+function viewDocumentation(compDesc, compName, docTextArray) {
+ var width = 400;
+ var height = 200;
+ var locX = 100;
+ var locY = 200;
+
+ /* Generate content */
+ var actualText = "<html>";
+ actualText += "<head><title>";
+ actualText += compDesc;
+ if (compName != '') {
+ actualText += ": " + compName;
+ }
+ actualText += "</title></head>";
+ actualText += "<body bgcolor=\"#FFFFEE\">";
+ // Title
+ actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 12pt; font-weight: bold; letter-spacing:1px;\">";
+ actualText += compDesc;
+ if (compName != '') {
+ actualText += ": <span style=\"color:#006699\">" + compName + "</span>";
+ }
+ actualText += "</p>";
+ // Documentation
+ var idx;
+ for (idx = 0; idx < docTextArray.length; idx++) {
+ actualText += "<p style=\"font-family: Arial, sans-serif; font-size: 10pt;\">" + docTextArray[idx] + "</p>";
+ }
+ // Link to close window
+ actualText += "<a href=\"javascript:void(0)\" onclick=\"window.close();\" style=\"font-family: Arial, sans-serif; font-size: 8pt;\">Close</a>";
+ actualText += "</body></html>";
+
+ /* Display window */
+ windowCount++;
+ var docWindow = window.open("", "documentation"+windowCount, "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable,alwaysRaised,dependent,titlebar=no,width="+width+",height="+height+",screenX="+locX+",left="+locX+",screenY="+locY+",top="+locY);
+ docWindow.document.write(actualText);
+}
+
+// -->
+</script>
+ </head>
+ <body>
+ <h1>
+ <a name="top">phyloXML 1.10</a>
+ </h1>
+ <div style="float: right;">
+ <div id="printerControls" style="display:none;">
+ <input type="checkbox" onclick="displayMode(this.checked)"/>Printer-friendly Version</div>
+ <script type="text/javascript">
+<!--
+
+var pc = getElementObject("printerControls");
+if (pc != null) {
+ pc.style.display="block";
+}
+
+// -->
+</script>
+ <div id="globalControls" style="display:none">
+ <strong>Logical Diagram:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(logicalDiagramBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(logicalDiagramBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>XML Instance Representation:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(xiBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(xiBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>Diagram:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(diagramBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(diagramBoxes)">Collapse All</a> ]</span>
+ <br/>
+ <br/>
+ <strong>Schema Component Representation:</strong>
+ <br/>
+ <span style="margin-left: 1em; white-space: nowrap">[ <a href="javascript:void(0)" onclick="expandAll(scBoxes)">Expand All</a> | <a href="javascript:void(0)" onclick="collapseAll(scBoxes)">Collapse All</a> ]</span>
+ </div>
+ <script type="text/javascript">
+<!--
+
+var gc = getElementObject("globalControls");
+if (gc != null) {
+ gc.style.display="block";
+}
+
+// -->
+</script>
+ </div>
+ <h2>Table of Contents</h2>
+ <ul>
+ <li>
+ <a href="#SchemaProperties">Schema Document Properties</a>
+ </li>
+ <li>
+ <a href="#SchemaDeclarations">Global Declarations</a>
+ <ul>
+ <li>
+ <a href="#h270234806">Element: <strong>phyloxml</strong>
+ </a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="#SchemaDefinitions">Global Definitions</a>
+ <ul>
+ <li>
+ <a href="#h-788356801">Complex Type: <strong>Accession</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h917087604">Complex Type: <strong>Annotation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h1535743041">Complex Type: <strong>BinaryCharacterList</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1514309680">Complex Type: <strong>BinaryCharacters</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1691165380">Complex Type: <strong>BranchColor</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1124608460">Complex Type: <strong>Clade</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h192331856">Complex Type: <strong>CladeRelation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-993584945">Complex Type: <strong>Confidence</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h517931443">Complex Type: <strong>Date</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-979596407">Complex Type: <strong>Distribution</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h259010940">Complex Type: <strong>DomainArchitecture</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-436501026">Complex Type: <strong>Events</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-853091232">Complex Type: <strong>Id</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-213750342">Complex Type: <strong>MolSeq</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h535307528">Complex Type: <strong>Phylogeny</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h155831896">Complex Type: <strong>Phyloxml</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1112505301">Complex Type: <strong>Point</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h332351765">Complex Type: <strong>Polygon</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h158033242">Complex Type: <strong>Property</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1389097534">Complex Type: <strong>ProteinDomain</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h401516646">Complex Type: <strong>Reference</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1794244794">Complex Type: <strong>Sequence</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-802965662">Complex Type: <strong>SequenceRelation</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h888650454">Complex Type: <strong>Taxonomy</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-676012345">Complex Type: <strong>Uri</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-763252414">Simple Type: <strong>AppliesTo</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h1358103055">Simple Type: <strong>EventType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-54338178">Simple Type: <strong>PropertyDataType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h518348337">Simple Type: <strong>Rank</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h519911868">Simple Type: <strong>SequenceRelationType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h935679102">Simple Type: <strong>SequenceSymbol</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h1408823200">Simple Type: <strong>SequenceType</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h712147427">Simple Type: <strong>TaxonomyCode</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h577349652">Simple Type: <strong>id_ref</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-1482113798">Simple Type: <strong>id_source</strong>
+ </a>
+ </li>
+ <li>
+ <a href="#h-675984882">Simple Type: <strong>ref</strong>
+ </a>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ <ul id="legendTOC" style="margin-top: 0em">
+ <li>
+ <a href="#Legend">Legend</a>
+ </li>
+ </ul>
+ <ul id="glossaryTOC" style="margin-top: 0em">
+ <li>
+ <a href="#Glossary">Glossary</a>
+ </li>
+ </ul>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaProperties">Schema Document Properties</a>
+ </h2>
+ <table class="properties">
+ <tr>
+ <th>
+ <a title="Look up 'Target Namespace' in glossary"
+ href="phyloxml.xsd.html#term_TargetNS">Target Namespace</a>
+ </th>
+ <td>
+ <span class="targetNS">http://www.phyloxml.org</span>
+ </td>
+ </tr>
+ <tr>
+ <th>Element and Attribute Namespaces</th>
+ <td>
+ <ul>
+ <li>Global element and attribute declarations belong to this schema's target namespace.</li>
+ <li>By default, local element declarations belong to this schema's target namespace.</li>
+ <li>By default, local attribute declarations have no namespace.</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> phyloXML is an XML language to describe evolutionary trees and associated data. Version: 1.10.
+ License: dual-licensed under the LGPL or Ruby's License. Copyright (c) 2008-2011 Christian M Zmasek.</td>
+ </tr>
+ </table>
+ <h3>Declared Namespaces</h3>
+ <table class="namespaces">
+ <tr>
+ <th>Prefix</th>
+ <th>Namespace</th>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_xml">xml</a>
+ </td>
+ <td>http://www.w3.org/XML/1998/namespace</td>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_phy">phy</a>
+ </td>
+ <td>
+ <span class="targetNS">http://www.phyloxml.org</span>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <a name="ns_xs">xs</a>
+ </td>
+ <td>http://www.w3.org/2001/XMLSchema</td>
+ </tr>
+ </table>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="schema_scbox_button" class="control"
+ onclick="switchState('schema_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="schema_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:schema</span>
+ <span class="scTag">targetNamespace</span>="<span class="scContent">http://www.phyloxml.org</span>" <span class="scTag">elementFormDefault</span>="<span class="scContent">qualified</span>" <span class="scTag">attributeFormDefault</span>="<span class="scContent">unqualified</span>"><div class="scContent" style="margin-left: 1.5em">...</div></<span class="scTag">xs:schema</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('schema_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaDeclarations">Global Declarations</a>
+ </h2>
+ <h3>Element: <a name="h270234806" class="name">phyloxml</a>
+ </h3>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>phyloxml</td>
+ </tr>
+ <tr>
+ <th>Type</th>
+ <td>
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phyloxml" type definition." href="#h155831896">Phyloxml</a>
+ </span>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Nillable' in glossary" href="phyloxml.xsd.html#term_Nillable">Nillable</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_logicalDiagram_button" class="control"
+ onclick="switchState('h270234806_logicalDiagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Logical Diagram</span>
+ </div>
+ <div id="h270234806_logicalDiagram" class="contents">
+ <img usemap="#h1900732667" src="schemaDiagrams/h1900732667.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h1900732667.map--><map name="h1900732667">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_logicalDiagram', false);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_xibox_button" class="control"
+ onclick="switchState('h270234806_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h270234806_xibox" class="contents">
+ <div style="margin-left: 0em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phyloxml> <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Sequence' in glossary" href="phyloxml.xsd.html#term_Sequence">Sequence</a>
+ <span class="occurs">[1..*]</span>
+ </span>
+ <br/>
+ <div style="margin-left: 3em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 3em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div>
+ <span class="group" style="margin-left: 1.5em">End Sequence</span>
+ <br/></<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phyloxml></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h270234806_diagram_button" class="control"
+ onclick="switchState('h270234806_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h270234806_diagram" class="contents">
+ <img usemap="#h482833585" src="schemaDiagrams/h482833585.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h482833585.map--><map name="h482833585">
+ <area shape="rect" alt="h535307528" coords="344,10,463,50"
+ href="phyloxml.xsd.html#h535307528"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h270234806_scbox_button" class="control"
+ onclick="switchState('h270234806_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h270234806_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">phyloxml</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phyloxml" type definition." href="#h155831896">Phyloxml</a>
+ </span>
+ </span>"/></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h270234806_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h2>
+ <a name="SchemaDefinitions">Global Definitions</a>
+ </h2>
+ <h3>Complex Type: <a name="h-788356801" class="name">Accession</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Accession</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Accession</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Accession is used to capture the local part in a sequence identifier (e.g. 'P17304'
+ in 'UniProtKB:P17304', in which case the 'source' attribute would be 'UniProtKB'). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-788356801_xibox_button" class="control"
+ onclick="switchState('h-788356801_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-788356801_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> source="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-788356801_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-788356801_diagram_button" class="control"
+ onclick="switchState('h-788356801_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-788356801_diagram" class="contents">
+ <img usemap="#h-1142642744" src="schemaDiagrams/h-1142642744.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-1142642744.map--><map name="h-1142642744">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-788356801_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-788356801_scbox_button" class="control"
+ onclick="switchState('h-788356801_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-788356801_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Accession</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-788356801_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h917087604" class="name">Annotation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Annotation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> The annotation of a molecular sequence. It is recommended to annotate by using the optional
+ 'ref' attribute (some examples of acceptable values for the ref attribute: 'GO:0008270',
+ 'KEGG:Tetrachloroethene degradation', 'EC:1.1.1.1'). Optional element 'desc' allows for a free text
+ description. Optional element 'confidence' is used to state the type and value of support for a annotation.
+ Similarly, optional attribute 'evidence' is used to describe the evidence for a annotation as free text
+ (e.g. 'experimental'). Optional element 'property' allows for further, typed and referenced annotations from
+ external resources.</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h917087604_xibox_button" class="control"
+ onclick="switchState('h917087604_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h917087604_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> source="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> evidence="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h917087604_diagram_button" class="control"
+ onclick="switchState('h917087604_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h917087604_diagram" class="contents">
+ <img usemap="#h624412339" src="schemaDiagrams/h624412339.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h624412339.map--><map name="h624412339">
+ <area shape="rect" alt="h-993584945" coords="236,50,362,90"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h158033242" coords="236,100,348,140"
+ href="phyloxml.xsd.html#h158033242"/>
+
+ <area shape="rect" alt="h-676012345" coords="236,150,313,190"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ <area shape="rect" alt="h-675984882" coords="150,200,245,226"
+ href="phyloxml.xsd.html#h-675984882"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h917087604_scbox_button" class="control"
+ onclick="switchState('h917087604_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h917087604_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Annotation</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">property</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">evidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h917087604_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h1535743041" class="name">BinaryCharacterList</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BinaryCharacterList</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>, Complex Type <b>
+ <a href="#h-1514309680">BinaryCharacters</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1535743041_xibox_button" class="control"
+ onclick="switchState('h1535743041_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h1535743041_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:bc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:bc> <span class="occurs">[1..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1535743041_diagram_button" class="control"
+ onclick="switchState('h1535743041_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h1535743041_diagram" class="contents">
+ <img usemap="#h508496390" src="schemaDiagrams/h508496390.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h508496390.map--><map name="h508496390">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h1535743041_scbox_button" class="control"
+ onclick="switchState('h1535743041_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h1535743041_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BinaryCharacterList</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">bc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1535743041_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1514309680" class="name">BinaryCharacters</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BinaryCharacters</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> The names and/or counts of binary characters present, gained, and lost at the root of a
+ clade. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1514309680_xibox_button" class="control"
+ onclick="switchState('h-1514309680_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1514309680_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> gained_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> lost_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> present_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> absent_count="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:gained> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:gained> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lost> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lost> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:present> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:present> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:absent> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:absent> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1514309680_diagram_button" class="control"
+ onclick="switchState('h-1514309680_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1514309680_diagram" class="contents">
+ <img usemap="#h-81115689" src="schemaDiagrams/h-81115689.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-81115689.map--><map name="h-81115689">
+ <area shape="rect" alt="h1535743041" coords="278,0,376,40"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,50,362,90"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,100,383,140"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ <area shape="rect" alt="h1535743041" coords="278,150,376,190"
+ href="phyloxml.xsd.html#h1535743041"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1514309680_scbox_button" class="control"
+ onclick="switchState('h-1514309680_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1514309680_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BinaryCharacters</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">gained</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">lost</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">present</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">absent</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacterList" type definition." href="#h1535743041">BinaryCharacterList</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">gained_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">lost_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">present_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">absent_count</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1514309680_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1691165380" class="name">BranchColor</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>BranchColor</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> This indicates the color of a clade when rendered (the color applies to the whole clade
+ unless overwritten by the color(s) of sub clades).</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1691165380_xibox_button" class="control"
+ onclick="switchState('h-1691165380_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1691165380_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:red> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:red> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:green> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:green> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:blue> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:blue> <span class="occurs">[1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1691165380_diagram_button" class="control"
+ onclick="switchState('h-1691165380_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1691165380_diagram" class="contents">
+ <img usemap="#h-203375637" src="schemaDiagrams/h-203375637.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-203375637.map--><map name="h-203375637">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1691165380_scbox_button" class="control"
+ onclick="switchState('h-1691165380_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1691165380_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">BranchColor</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">red</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">green</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">blue</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:unsignedByte</span>
+ </span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1691165380_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1124608460" class="name">Clade</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Clade</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Clade is used in a recursive manner to describe the topology of a phylogenetic tree.
+ The parent branch length of a clade can be described either with the 'branch_length' element or the
+ 'branch_length' attribute (it is not recommended to use both at the same time, though). Usage of the
+ 'branch_length' attribute allows for a less verbose description. Element 'confidence' is used to indicate
+ the support for a clade/parent branch. Element 'events' is used to describe such events as gene-duplications
+ at the root node/parent branch of a clade. Element 'width' is the branch width for this clade (including
+ parent branch). Both 'color' and 'width' elements apply for the whole clade unless overwritten in-sub
+ clades. Attribute 'id_source' is used to link other elements to a clade (on the xml-level).
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1124608460_xibox_button" class="control"
+ onclick="switchState('h-1124608460_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1124608460_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> branch_length="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_source="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:branch_length> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:branch_length> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:width> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:width> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:color> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BranchColor" type definition." href="#h-1691165380">BranchColor</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:color> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:node_id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:node_id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:taxonomy> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Taxonomy" type definition." href="#h888650454">Taxonomy</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:taxonomy> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Sequence" type definition." href="#h-1794244794">Sequence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:events> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Events" type definition." href="#h-436501026">Events</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:events> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:binary_characters> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacters" type definition." href="#h-1514309680">BinaryCharacters</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:binary_characters> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:distribution> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Distribution" type definition." href="#h-979596407">Distribution</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:distribution> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Date" type definition." href="#h517931443">Date</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:reference> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Reference" type definition." href="#h401516646">Reference</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:reference> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1124608460_diagram_button" class="control"
+ onclick="switchState('h-1124608460_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1124608460_diagram" class="contents">
+ <img usemap="#h854822387" src="schemaDiagrams/h854822387.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h854822387.map--><map name="h854822387">
+ <area shape="rect" alt="h-993584945" coords="201,100,327,140"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h-1691165380" coords="201,200,292,240"
+ href="phyloxml.xsd.html#h-1691165380"/>
+
+ <area shape="rect" alt="h-853091232" coords="201,250,306,290"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h888650454" coords="201,300,313,340"
+ href="phyloxml.xsd.html#h888650454"/>
+
+ <area shape="rect" alt="h-1794244794" coords="201,350,313,390"
+ href="phyloxml.xsd.html#h-1794244794"/>
+
+ <area shape="rect" alt="h-436501026" coords="201,400,299,440"
+ href="phyloxml.xsd.html#h-436501026"/>
+
+ <area shape="rect" alt="h-1514309680" coords="201,450,376,490"
+ href="phyloxml.xsd.html#h-1514309680"/>
+
+ <area shape="rect" alt="h-979596407" coords="201,500,341,540"
+ href="phyloxml.xsd.html#h-979596407"/>
+
+ <area shape="rect" alt="h517931443" coords="201,550,285,590"
+ href="phyloxml.xsd.html#h517931443"/>
+
+ <area shape="rect" alt="h401516646" coords="201,600,320,640"
+ href="phyloxml.xsd.html#h401516646"/>
+
+ <area shape="rect" alt="h158033242" coords="201,650,313,690"
+ href="phyloxml.xsd.html#h158033242"/>
+
+ <area shape="rect" alt="h-1482113798" coords="115,837,252,863"
+ href="phyloxml.xsd.html#h-1482113798"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1124608460_scbox_button" class="control"
+ onclick="switchState('h-1124608460_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1124608460_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Clade</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">branch_length</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">width</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">color</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BranchColor" type definition." href="#h-1691165380">BranchColor</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">node_id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">taxonomy</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Taxonomy" type definition." href="#h888650454">Taxonomy</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">sequence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Sequence" type definition." href="#h-1794244794">Sequence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">events</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Events" type definition." href="#h-436501026">Events</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">binary_characters</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "BinaryCharacters" type definition." href="#h-1514309680">BinaryCharacters</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">distribution</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Distribution" type definition." href="#h-979596407">Distribution</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">date</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Date" type definition." href="#h517931443">Date</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">reference</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Reference" type definition." href="#h401516646">Reference</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">property</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">branch_length</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1124608460_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h192331856" class="name">CladeRelation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>CladeRelation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> This is used to express a typed relationship between two clades. For example it could be
+ used to describe multiple parents of a clade.</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h192331856_xibox_button" class="control"
+ onclick="switchState('h192331856_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h192331856_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> id_ref_0="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref_1="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> distance="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h192331856_diagram_button" class="control"
+ onclick="switchState('h192331856_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h192331856_diagram" class="contents">
+ <img usemap="#h1919634775" src="schemaDiagrams/h1919634775.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h1919634775.map--><map name="h1919634775">
+ <area shape="rect" alt="h-993584945" coords="257,0,383,40"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h577349652" coords="171,50,301,76"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h577349652" coords="171,86,301,112"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h192331856_scbox_button" class="control"
+ onclick="switchState('h192331856_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h192331856_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">CladeRelation</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_0</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_1</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">distance</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h192331856_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-993584945" class="name">Confidence</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span> < <strong>Confidence</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Confidence</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h-436501026">Events</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A general purpose confidence element. For example this can be used to express the bootstrap
+ support value of a clade (in which case the 'type' attribute is 'bootstrap').</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-993584945_xibox_button" class="control"
+ onclick="switchState('h-993584945_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-993584945_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-993584945_diagram_button" class="control"
+ onclick="switchState('h-993584945_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-993584945_diagram" class="contents">
+ <img usemap="#h1603897912" src="schemaDiagrams/h1603897912.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h1603897912.map--><map name="h1603897912">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-993584945_scbox_button" class="control"
+ onclick="switchState('h-993584945_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-993584945_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Confidence</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-993584945_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h517931443" class="name">Date</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Date</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A date associated with a clade/node. Its value can be numerical by using the 'value' element
+ and/or free text with the 'desc' element' (e.g. 'Silurian'). If a numerical value is used, it is recommended
+ to employ the 'unit' attribute to indicate the type of the numerical value (e.g. 'mya' for 'million years
+ ago'). The elements 'minimum' and 'maximum' are used the indicate a range/confidence
+ interval</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h517931443_xibox_button" class="control"
+ onclick="switchState('h517931443_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h517931443_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> unit="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:value> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:value> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:minimum> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:minimum> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:maximum> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:maximum> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h517931443_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h517931443_diagram_button" class="control"
+ onclick="switchState('h517931443_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h517931443_diagram" class="contents">
+ <img usemap="#h169662420" src="schemaDiagrams/h169662420.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h169662420.map--><map name="h169662420">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h517931443_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h517931443_scbox_button" class="control"
+ onclick="switchState('h517931443_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h517931443_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Date</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">value</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">minimum</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">maximum</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h517931443_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-979596407" class="name">Distribution</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Distribution</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> The geographic distribution of the items of a clade (species, sequences), intended for
+ phylogeographic applications. The location can be described either by free text in the 'desc' element and/or
+ by the coordinates of one or more 'Points' (similar to the 'Point' element in Google's KML format) or by
+ 'Polygons'. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-979596407_xibox_button" class="control"
+ onclick="switchState('h-979596407_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-979596407_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:point> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Point" type definition." href="#h-1112505301">Point</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:point> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:polygon> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Polygon" type definition." href="#h332351765">Polygon</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:polygon> <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-979596407_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-979596407_diagram_button" class="control"
+ onclick="switchState('h-979596407_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-979596407_diagram" class="contents">
+ <img usemap="#h-265752642" src="schemaDiagrams/h-265752642.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-265752642.map--><map name="h-265752642">
+ <area shape="rect" alt="h-1112505301" coords="250,50,341,90"
+ href="phyloxml.xsd.html#h-1112505301"/>
+
+ <area shape="rect" alt="h332351765" coords="250,100,355,140"
+ href="phyloxml.xsd.html#h332351765"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-979596407_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-979596407_scbox_button" class="control"
+ onclick="switchState('h-979596407_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-979596407_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Distribution</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">point</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Point" type definition." href="#h-1112505301">Point</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">polygon</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Polygon" type definition." href="#h332351765">Polygon</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-979596407_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h259010940" class="name">DomainArchitecture</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>DomainArchitecture</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> This is used describe the domain architecture of a protein. Attribute 'length' is the total
+ length of the protein</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h259010940_xibox_button" class="control"
+ onclick="switchState('h259010940_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h259010940_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> length="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ProteinDomain" type definition." href="#h-1389097534">ProteinDomain</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain> <span class="occurs">[1..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h259010940_diagram_button" class="control"
+ onclick="switchState('h259010940_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h259010940_diagram" class="contents">
+ <img usemap="#h-93417557" src="schemaDiagrams/h-93417557.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-93417557.map--><map name="h-93417557">
+ <area shape="rect" alt="h-1389097534" coords="292,0,390,40"
+ href="phyloxml.xsd.html#h-1389097534"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h259010940_scbox_button" class="control"
+ onclick="switchState('h259010940_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h259010940_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">DomainArchitecture</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">domain</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ProteinDomain" type definition." href="#h-1389097534">ProteinDomain</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">1</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">length</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h259010940_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-436501026" class="name">Events</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Events</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Events at the root node of a clade (e.g. one gene duplication). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-436501026_xibox_button" class="control"
+ onclick="switchState('h-436501026_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-436501026_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:type> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "EventType" type definition." href="#h1358103055">EventType</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:type> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:duplications> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:duplications> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:speciations> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:speciations> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:losses> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:losses> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-436501026_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-436501026_diagram_button" class="control"
+ onclick="switchState('h-436501026_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-436501026_diagram" class="contents">
+ <img usemap="#h-1724830583" src="schemaDiagrams/h-1724830583.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-1724830583.map--><map name="h-1724830583">
+ <area shape="rect" alt="h1358103055" coords="208,0,292,40"
+ href="phyloxml.xsd.html#h1358103055"/>
+
+ <area shape="rect" alt="h-993584945" coords="208,200,334,240"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-436501026_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-436501026_scbox_button" class="control"
+ onclick="switchState('h-436501026_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-436501026_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Events</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "EventType" type definition." href="#h1358103055">EventType</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">duplications</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">speciations</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">losses</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-436501026_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-853091232" class="name">Id</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Id</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Id</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A general purpose identifier element. Allows to indicate the provider (or authority) of an
+ identifier. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-853091232_xibox_button" class="control"
+ onclick="switchState('h-853091232_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-853091232_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> provider="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-853091232_diagram_button" class="control"
+ onclick="switchState('h-853091232_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-853091232_diagram" class="contents">
+ <img usemap="#h-1484760249" src="schemaDiagrams/h-1484760249.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-1484760249.map--><map name="h-1484760249">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-853091232_scbox_button" class="control"
+ onclick="switchState('h-853091232_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-853091232_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Id</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">provider</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-853091232_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-213750342" class="name">MolSeq</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>MolSeq</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>MolSeq</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element 'mol_seq' is used to store molecular sequences. The 'is_aligned' attribute is used
+ to indicated that this molecular sequence is aligned with all other sequences in the same phylogeny for
+ which 'is aligned' is true as well (which, in most cases, means that gaps were introduced, and that all
+ sequences for which 'is aligned' is true must have the same length).</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-213750342_xibox_button" class="control"
+ onclick="switchState('h-213750342_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-213750342_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> is_aligned="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-213750342_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-213750342_diagram_button" class="control"
+ onclick="switchState('h-213750342_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-213750342_diagram" class="contents">
+ <img usemap="#h-100858323" src="schemaDiagrams/h-100858323.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-100858323.map--><map name="h-100858323">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-213750342_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-213750342_scbox_button" class="control"
+ onclick="switchState('h-213750342_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-213750342_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">MolSeq</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">is_aligned</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-213750342_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h535307528" class="name">Phylogeny</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Phylogeny</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h155831896">Phyloxml</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Phylogeny is used to represent a phylogeny. The required attribute 'rooted' is used
+ to indicate whether the phylogeny is rooted or not. The attribute 'rerootable' can be used to indicate that
+ the phylogeny is not allowed to be rooted differently (i.e. because it is associated with root dependent
+ data, such as gene duplications). The attribute 'type' can be used to indicate the type of phylogeny (i.e.
+ 'gene tree'). It is recommended to use the attribute 'branch_length_unit' if the phylogeny has branch
+ lengths. Element clade is used in a recursive manner to describe the topology of a phylogenetic
+ tree.</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h535307528_xibox_button" class="control"
+ onclick="switchState('h535307528_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h535307528_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> rooted="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> rerootable="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> branch_length_unit="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:description> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:description> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:dateTime</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:date> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade_relation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CladeRelation" type definition." href="#h192331856">CladeRelation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:clade_relation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence_relation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelation" type definition." href="#h-802965662">SequenceRelation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:sequence_relation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:property> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h535307528_diagram_button" class="control"
+ onclick="switchState('h535307528_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h535307528_diagram" class="contents">
+ <img usemap="#h731810719" src="schemaDiagrams/h731810719.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h731810719.map--><map name="h731810719">
+ <area shape="rect" alt="h-853091232" coords="229,50,305,90"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h-993584945" coords="229,200,355,240"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h-1124608460" coords="229,250,320,290"
+ href="phyloxml.xsd.html#h-1124608460"/>
+
+ <area shape="rect" alt="h192331856" coords="229,300,383,340"
+ href="phyloxml.xsd.html#h192331856"/>
+
+ <area shape="rect" alt="h-802965662" coords="229,350,404,390"
+ href="phyloxml.xsd.html#h-802965662"/>
+
+ <area shape="rect" alt="h158033242" coords="229,400,341,440"
+ href="phyloxml.xsd.html#h158033242"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h535307528_scbox_button" class="control"
+ onclick="switchState('h535307528_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h535307528_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Phylogeny</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">description</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">date</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:dateTime</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Clade" type definition." href="#h-1124608460">Clade</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">clade_relation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "CladeRelation" type definition." href="#h192331856">CladeRelation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">sequence_relation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelation" type definition." href="#h-802965662">SequenceRelation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">property</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Property" type definition." href="#h158033242">Property</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">rooted</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">rerootable</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:boolean</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">branch_length_unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h535307528_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h155831896" class="name">Phyloxml</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Phyloxml</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Element <b>
+ <a href="#h270234806">phyloxml</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> 'phyloxml' is the name of the root element. Phyloxml contains an arbitrary number of
+ 'phylogeny' elements (each representing one phylogeny) possibly followed by elements from other namespaces.
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h155831896_xibox_button" class="control"
+ onclick="switchState('h155831896_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h155831896_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Sequence' in glossary" href="phyloxml.xsd.html#term_Sequence">Sequence</a>
+ <span class="occurs">[1..*]</span>
+ </span>
+ <br/>
+ <div style="margin-left: 3em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:phylogeny> <span class="occurs">[0..*]</span>
+ </div>
+ <div class="other" style="margin-left: 3em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div>
+ <span class="group" style="margin-left: 1.5em">End Sequence</span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h155831896_diagram_button" class="control"
+ onclick="switchState('h155831896_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h155831896_diagram" class="contents">
+ <img usemap="#h-354757553" src="schemaDiagrams/h-354757553.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-354757553.map--><map name="h-354757553">
+ <area shape="rect" alt="h535307528" coords="222,0,341,40"
+ href="phyloxml.xsd.html#h535307528"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h155831896_scbox_button" class="control"
+ onclick="switchState('h155831896_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h155831896_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Phyloxml</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>
+ <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">phylogeny</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Phylogeny" type definition." href="#h535307528">Phylogeny</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h155831896_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1112505301" class="name">Point</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Point</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-979596407">Distribution</a>
+ </b>, Complex Type <b>
+ <a href="#h332351765">Polygon</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> The coordinates of a point with an optional altitude (used by element 'Distribution').
+ Required attributes are the 'geodetic_datum' used to indicate the geodetic datum (also called 'map datum',
+ for example Google's KML uses 'WGS84'). Attribute 'alt_unit' is the unit for the altitude (e.g. 'meter').
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1112505301_xibox_button" class="control"
+ onclick="switchState('h-1112505301_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1112505301_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> geodetic_datum="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> alt_unit="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lat> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:lat> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:long> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:long> <span class="occurs">[1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:alt> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:alt> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1112505301_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1112505301_diagram_button" class="control"
+ onclick="switchState('h-1112505301_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1112505301_diagram" class="contents">
+ <img usemap="#h2137002076" src="schemaDiagrams/h2137002076.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h2137002076.map--><map name="h2137002076">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1112505301_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1112505301_scbox_button" class="control"
+ onclick="switchState('h-1112505301_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1112505301_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Point</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">lat</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">long</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">alt</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:decimal</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">geodetic_datum</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">alt_unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1112505301_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h332351765" class="name">Polygon</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Polygon</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-979596407">Distribution</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A polygon defined by a list of 'Points' (used by element 'Distribution').
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h332351765_xibox_button" class="control"
+ onclick="switchState('h332351765_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h332351765_xibox" class="contents">
+ <div style="margin-left: 0em"><...> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:point> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Point" type definition." href="#h-1112505301">Point</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:point> <span class="occurs">[3..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h332351765_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h332351765_diagram_button" class="control"
+ onclick="switchState('h332351765_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h332351765_diagram" class="contents">
+ <img usemap="#h555770290" src="schemaDiagrams/h555770290.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h555770290.map--><map name="h555770290">
+ <area shape="rect" alt="h-1112505301" coords="215,0,306,40"
+ href="phyloxml.xsd.html#h-1112505301"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h332351765_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h332351765_scbox_button" class="control"
+ onclick="switchState('h332351765_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h332351765_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Polygon</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">point</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Point" type definition." href="#h-1112505301">Point</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">3</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div></<span class="scTag">xs:sequence</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h332351765_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h158033242" class="name">Property</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Property</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>, Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Property allows for typed and referenced properties from external resources to be attached
+ to 'Phylogeny', 'Clade', and 'Annotation'. The value of a property is its mixed (free text) content.
+ Attribute 'datatype' indicates the type of a property and is limited to xsd-datatypes (e.g. 'xsd:string',
+ 'xsd:boolean', 'xsd:integer', 'xsd:decimal', 'xsd:float', 'xsd:double', 'xsd:date', 'xsd:anyURI'). Attribute
+ 'applies_to' indicates the item to which a property applies to (e.g. 'node' for the parent node of a clade,
+ 'parent_branch' for the parent branch of a clade). Attribute 'id_ref' allows to attached a property
+ specifically to one element (on the xml-level). Optional attribute 'unit' is used to indicate the unit of
+ the property. An example: <property datatype="xsd:integer" ref="NOAA:depth" applies_to="clade"
+ unit="METRIC:m"> 200 </property> </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h158033242_xibox_button" class="control"
+ onclick="switchState('h158033242_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h158033242_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> unit="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> datatype="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "PropertyDataType" type definition." href="#h-54338178">PropertyDataType</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> applies_to="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "AppliesTo" type definition." href="#h-763252414">AppliesTo</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>/> </div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h158033242_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h158033242_diagram_button" class="control"
+ onclick="switchState('h158033242_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h158033242_diagram" class="contents">
+ <img usemap="#h-411495795" src="schemaDiagrams/h-411495795.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-411495795.map--><map name="h-411495795">
+ <area shape="rect" alt="h-675984882" coords="136,0,231,26"
+ href="phyloxml.xsd.html#h-675984882"/>
+
+ <area shape="rect" alt="h-675984882" coords="136,36,238,62"
+ href="phyloxml.xsd.html#h-675984882"/>
+
+ <area shape="rect" alt="h-54338178" coords="136,72,266,98"
+ href="phyloxml.xsd.html#h-54338178"/>
+
+ <area shape="rect" alt="h-763252414" coords="136,108,280,134"
+ href="phyloxml.xsd.html#h-763252414"/>
+
+ <area shape="rect" alt="h577349652" coords="136,144,252,170"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h158033242_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h158033242_scbox_button" class="control"
+ onclick="switchState('h158033242_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h158033242_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Property</span>" <span class="scTag">mixed</span>="<span class="scContent">true</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">unit</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "ref" type definition." href="#h-675984882">ref</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">datatype</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "PropertyDataType" type definition." href="#h-54338178">PropertyDataType</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">applies_to</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "AppliesTo" type definition." href="#h-763252414">AppliesTo</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h158033242_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1389097534" class="name">ProteinDomain</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>ProteinDomain</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>ProteinDomain</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h259010940">DomainArchitecture</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> To represent an individual domain in a domain architecture. The name/unique identifier is
+ described via the 'id' attribute. 'confidence' can be used to store (i.e.) E-values.</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1389097534_xibox_button" class="control"
+ onclick="switchState('h-1389097534_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1389097534_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> from="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> to="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> confidence="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> id="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1389097534_diagram_button" class="control"
+ onclick="switchState('h-1389097534_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1389097534_diagram" class="contents">
+ <img usemap="#h1501379365" src="schemaDiagrams/h1501379365.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h1501379365.map--><map name="h1501379365">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1389097534_scbox_button" class="control"
+ onclick="switchState('h-1389097534_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1389097534_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">ProteinDomain</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">from</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">to</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:nonNegativeInteger</span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1389097534_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h401516646" class="name">Reference</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Reference</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A literature reference for a clade. It is recommended to use the 'doi' attribute instead of
+ the free text 'desc' element whenever possible. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h401516646_xibox_button" class="control"
+ onclick="switchState('h401516646_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h401516646_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> doi="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:desc> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h401516646_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h401516646_diagram_button" class="control"
+ onclick="switchState('h401516646_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h401516646_diagram" class="contents">
+ <img usemap="#h1727164161" src="schemaDiagrams/h1727164161.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h1727164161.map--><map name="h1727164161">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h401516646_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h401516646_scbox_button" class="control"
+ onclick="switchState('h401516646_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h401516646_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Reference</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">doi</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h401516646_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-1794244794" class="name">Sequence</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Sequence</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Sequence is used to represent a molecular sequence (Protein, DNA, RNA) associated
+ with a node. 'symbol' is a short (maximal ten characters) symbol of the sequence (e.g. 'ACTM') whereas
+ 'name' is used for the full name (e.g. 'muscle Actin'). 'location' is used for the location of a sequence on
+ a genome/chromosome. The actual sequence can be stored with the 'mol_seq' element. Attribute 'type' is used
+ to indicate the type of sequence ('dna', 'rna', or 'protein'). One intended use for 'id_ref' is to link a
+ sequence to a taxonomy (via the taxonomy's 'id_source') in case of multiple sequences and taxonomies per
+ node. </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1794244794_xibox_button" class="control"
+ onclick="switchState('h-1794244794_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-1794244794_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceType" type definition." href="#h1408823200">SequenceType</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_source="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:symbol> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceSymbol" type definition." href="#h935679102">SequenceSymbol</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:symbol> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:accession> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Accession" type definition." href="#h-788356801">Accession</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:accession> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:location> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:location> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:mol_seq> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "MolSeq" type definition." href="#h-213750342">MolSeq</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:mol_seq> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:annotation> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Annotation" type definition." href="#h917087604">Annotation</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:annotation> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain_architecture> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "DomainArchitecture" type definition." href="#h259010940">DomainArchitecture</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:domain_architecture> <span class="occurs">[0..1]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1794244794_diagram_button" class="control"
+ onclick="switchState('h-1794244794_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1794244794_diagram" class="contents">
+ <img usemap="#h1156064289" src="schemaDiagrams/h1156064289.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h1156064289.map--><map name="h1156064289">
+ <area shape="rect" alt="h935679102" coords="222,0,320,40"
+ href="phyloxml.xsd.html#h935679102"/>
+
+ <area shape="rect" alt="h-788356801" coords="222,50,341,90"
+ href="phyloxml.xsd.html#h-788356801"/>
+
+ <area shape="rect" alt="h-213750342" coords="222,200,327,240"
+ href="phyloxml.xsd.html#h-213750342"/>
+
+ <area shape="rect" alt="h-676012345" coords="222,250,299,290"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ <area shape="rect" alt="h917087604" coords="222,300,348,340"
+ href="phyloxml.xsd.html#h917087604"/>
+
+ <area shape="rect" alt="h259010940" coords="222,350,411,390"
+ href="phyloxml.xsd.html#h259010940"/>
+
+ <area shape="rect" alt="h1408823200" coords="136,451,238,477"
+ href="phyloxml.xsd.html#h1408823200"/>
+
+ <area shape="rect" alt="h-1482113798" coords="136,487,273,513"
+ href="phyloxml.xsd.html#h-1482113798"/>
+
+ <area shape="rect" alt="h577349652" coords="136,523,252,549"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1794244794_scbox_button" class="control"
+ onclick="switchState('h-1794244794_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1794244794_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Sequence</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">symbol</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceSymbol" type definition." href="#h935679102">SequenceSymbol</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">accession</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Accession" type definition." href="#h-788356801">Accession</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">location</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">mol_seq</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "MolSeq" type definition." href="#h-213750342">MolSeq</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">annotation</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Annotation" type definition." href="#h917087604">Annotation</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">domain_architecture</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "DomainArchitecture" type definition." href="#h259010940">DomainArchitecture</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceType" type definition." href="#h1408823200">SequenceType</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1794244794_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-802965662" class="name">SequenceRelation</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceRelation</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h535307528">Phylogeny</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> This is used to express a typed relationship between two sequences. For example it could be
+ used to describe an orthology (in which case attribute 'type' is 'orthology'). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-802965662_xibox_button" class="control"
+ onclick="switchState('h-802965662_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-802965662_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> id_ref_0="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> id_ref_1="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> distance="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em"> type="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelationType" type definition." href="#h519911868">SequenceRelationType</a>
+ </span>
+ <span class="occurs">[1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:confidence> <span class="occurs">[0..1]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-802965662_diagram_button" class="control"
+ onclick="switchState('h-802965662_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-802965662_diagram" class="contents">
+ <img usemap="#h230020485" src="schemaDiagrams/h230020485.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h230020485.map--><map name="h230020485">
+ <area shape="rect" alt="h-993584945" coords="278,0,404,40"
+ href="phyloxml.xsd.html#h-993584945"/>
+
+ <area shape="rect" alt="h577349652" coords="192,50,322,76"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h577349652" coords="192,86,322,112"
+ href="phyloxml.xsd.html#h577349652"/>
+
+ <area shape="rect" alt="h519911868" coords="192,158,294,184"
+ href="phyloxml.xsd.html#h519911868"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-802965662_scbox_button" class="control"
+ onclick="switchState('h-802965662_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-802965662_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceRelation</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">confidence</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Confidence" type definition." href="#h-993584945">Confidence</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_0</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref_1</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_ref" type definition." href="#h577349652">id_ref</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">distance</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:double</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "SequenceRelationType" type definition." href="#h519911868">SequenceRelationType</a>
+ </span>
+ </span>" <span class="scTag">use</span>="<span class="scContent">required</span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-802965662_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h888650454" class="name">Taxonomy</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>None</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Taxonomy</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> Element Taxonomy is used to describe taxonomic information for a clade. Element 'code' is
+ intended to store UniProt/Swiss-Prot style organism codes (e.g. 'APLCA' for the California sea hare 'Aplysia
+ californica') or other styles of mnemonics (e.g. 'Aca'). Element 'authority' is used to keep the authority,
+ such as 'J. G. Cooper, 1863', associated with the 'scientific_name'. Element 'id' is used for a unique
+ identifier of a taxon (for example '6500' with 'ncbi_taxonomy' as 'provider' for the California sea hare).
+ Attribute 'id_source' is used to link other elements to a taxonomy (on the xml-level).</td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h888650454_xibox_button" class="control"
+ onclick="switchState('h888650454_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h888650454_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em"> id_source="<span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:id> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:code> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "TaxonomyCode" type definition." href="#h712147427">TaxonomyCode</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:code> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:scientific_name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:scientific_name> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:authority> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:authority> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:common_name> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:common_name> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:synonym> <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:synonym> <span class="occurs">[0..*]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:rank> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Rank" type definition." href="#h518348337">Rank</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:rank> <span class="occurs">[0..1]</span>
+ </div>
+ <div style="margin-left: 1.5em"><<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span> </<a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:uri> <span class="occurs">[0..1]</span>
+ </div>
+ <div class="other" style="margin-left: 1.5em">Allow any elements from a namespace other than this schema's namespace (lax validation). <span class="occurs">[0..*]</span>
+ </div></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h888650454_diagram_button" class="control"
+ onclick="switchState('h888650454_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h888650454_diagram" class="contents">
+ <img usemap="#h992625297" src="schemaDiagrams/h992625297.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h992625297.map--><map name="h992625297">
+ <area shape="rect" alt="h-853091232" coords="222,0,298,40"
+ href="phyloxml.xsd.html#h-853091232"/>
+
+ <area shape="rect" alt="h712147427" coords="222,50,306,90"
+ href="phyloxml.xsd.html#h712147427"/>
+
+ <area shape="rect" alt="h518348337" coords="222,300,306,340"
+ href="phyloxml.xsd.html#h518348337"/>
+
+ <area shape="rect" alt="h-676012345" coords="222,350,299,390"
+ href="phyloxml.xsd.html#h-676012345"/>
+
+ <area shape="rect" alt="h-1482113798" coords="136,451,273,477"
+ href="phyloxml.xsd.html#h-1482113798"/>
+
+ </map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h888650454_scbox_button" class="control"
+ onclick="switchState('h888650454_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h888650454_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Taxonomy</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:sequence</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">id</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Id" type definition." href="#h-853091232">Id</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">code</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "TaxonomyCode" type definition." href="#h712147427">TaxonomyCode</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">scientific_name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">authority</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">common_name</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">synonym</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">rank</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Rank" type definition." href="#h518348337">Rank</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:element</span>
+ <span class="scTag">name</span>="<span class="scContent">uri</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "Uri" type definition." href="#h-676012345">Uri</a>
+ </span>
+ </span>" <span class="scTag">minOccurs</span>="<span class="scContent">0</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:any</span>
+ <span class="scTag">minOccurs</span>="<span class="scContent">0</span>" <span class="scTag">maxOccurs</span>="<span class="scContent">unbounded</span>" <span class="scTag">processContents</span>="<span class="scContent">lax</span>" <span class="scTag">namespace</span>="<span class="scContent">##other</span>"/></div></<span class="scTag">xs:sequence</span>></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_phy" title="Find out namespace of 'phy' prefix">phy</a>:<a title="Jump to "id_source" type definition." href="#h-1482113798">id_source</a>
+ </span>
+ </span>"/></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h888650454_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Complex Type: <a name="h-676012345" class="name">Uri</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span> < <strong>Uri</strong> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Uri</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>, Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>, Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ <tr>
+ <th>Documentation</th>
+ <td class="documentation"> A uniform resource identifier. In general, this is expected to be an URL (for example, to
+ link to an image on a website, in which case the 'type' attribute might be 'image' and 'desc' might be
+ 'image of a California sea hare'). </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-676012345_xibox_button" class="control"
+ onclick="switchState('h-676012345_xibox'); return false;"
+ style="display: none"/>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div id="h-676012345_xibox" class="contents">
+ <div style="margin-left: 0em"><...<br/>
+ <span style="margin-left: 0.5em" class="newFields"> desc="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>
+ <br/>
+ <span style="margin-left: 0.5em" class="newFields"> type="<span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ <span class="occurs">[0..1]</span>"</span>> <br/>
+ <span style="margin-left: 1.5em">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span>
+ </span>
+ <br/></...></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_xibox', true);
+// -->
+</script>
+ </div>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-676012345_diagram_button" class="control"
+ onclick="switchState('h-676012345_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-676012345_diagram" class="contents">
+ <img usemap="#h-1930055872" src="schemaDiagrams/h-1930055872.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-1930055872.map--><map name="h-1930055872">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-676012345_scbox_button" class="control"
+ onclick="switchState('h-676012345_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-676012345_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">Uri</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:simpleContent</span>><div style="margin-left: 1.5em"><<span class="scTag">xs:extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:anyURI</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">desc</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">type</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"/></div></<span class="scTag">xs:extension</span>></div></<span class="scTag">xs:simpleContent</span>></div></<span class="scTag">xs:complexType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-676012345_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-763252414" class="name">AppliesTo</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>AppliesTo</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>AppliesTo</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'phylogeny'|'clade'|'node'|'annotation'|'parent_branch'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-763252414_diagram_button" class="control"
+ onclick="switchState('h-763252414_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-763252414_diagram" class="contents">
+ <img usemap="#h-553597019" src="schemaDiagrams/h-553597019.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-553597019.map--><map name="h-553597019">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-763252414_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-763252414_scbox_button" class="control"
+ onclick="switchState('h-763252414_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-763252414_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">AppliesTo</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">phylogeny</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">clade</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">node</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">annotation</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">parent_branch</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-763252414_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h1358103055" class="name">EventType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>EventType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>EventType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-436501026">Events</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'transfer'|'fusion'|'speciation_or_duplication'|'other'|'mixed'|'unassigned'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1358103055_diagram_button" class="control"
+ onclick="switchState('h1358103055_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h1358103055_diagram" class="contents">
+ <img usemap="#h77064440" src="schemaDiagrams/h77064440.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h77064440.map--><map name="h77064440">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1358103055_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h1358103055_scbox_button" class="control"
+ onclick="switchState('h1358103055_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h1358103055_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">EventType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">transfer</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">fusion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">speciation_or_duplication</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">mixed</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unassigned</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1358103055_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-54338178" class="name">PropertyDataType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>PropertyDataType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>PropertyDataType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'xsd:string'|'xsd:boolean'|'xsd:decimal'|'xsd:float'|'xsd:double'|'xsd:duration'|'xsd:dateTime'|'xsd:time'|'xsd:date'|'xsd:gYearMonth'|'xsd:gYear'|'xsd:gMonthDay'|'xsd:gDay'|'xsd:gMonth'|'xsd:hexBinary'|'xsd:base64Binary'|'xsd:anyURI'|'xsd:normalizedString'|'xsd:token'|'xsd:integer'|'xsd:nonPositiveInteger'|'xsd:negativeInteger'|'xsd:long'|'xsd:int'|'xsd:short'|'xsd:byte'|'xsd:nonNegativeInteger'|'xsd:unsignedLong'|'xsd:unsignedInt'|'xsd:unsignedShort'|'xsd:unsignedByte'|'xsd:positiveInteger'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-54338178_diagram_button" class="control"
+ onclick="switchState('h-54338178_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-54338178_diagram" class="contents">
+ <img usemap="#h-624240407" src="schemaDiagrams/h-624240407.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-624240407.map--><map name="h-624240407">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-54338178_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-54338178_scbox_button" class="control"
+ onclick="switchState('h-54338178_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-54338178_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">PropertyDataType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:string</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:boolean</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:decimal</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:float</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:double</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:duration</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:dateTime</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:time</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:date</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gYearMonth</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gYear</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gMonthDay</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gDay</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:gMonth</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:hexBinary</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:base64Binary</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:anyURI</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:normalizedString</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:token</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:integer</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:nonPositiveInteger</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:negativeInteger</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:long</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:int</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:short</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:byte</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:nonNegativeInteger</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:unsignedLong</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:unsignedInt</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:unsignedShort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:unsignedByte</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xsd:positiveInteger</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-54338178_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h518348337" class="name">Rank</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>Rank</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>Rank</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'domain'|'superkingdom'|'kingdom'|'subkingdom'|'branch'|'infrakingdom'|'superphylum'|'phylum'|'subphylum'|'infraphylum'|'microphylum'|'superdivision'|'division'|'subdivision'|'infradivision'|'superclass'|'class'|'subclass'|'infraclass'|'superlegion'|'legion'|'sublegion'|'infralegion'|'supercohort'|'cohort'|'subcohort'|'infracohort'|'superorder'|'order'|'suborder'|'superfamily'|'family'|'subfamily'|'supertribe'|'tribe'|'subtribe'|'infratribe'|'genus'|'subgenus'|'superspecies'|'species'|'subspecies'|'variety'|'subvariety'|'form'|'subform'|'cultivar'|'strain'|'unknown'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h518348337_diagram_button" class="control"
+ onclick="switchState('h518348337_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h518348337_diagram" class="contents">
+ <img usemap="#h-1363552746" src="schemaDiagrams/h-1363552746.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-1363552746.map--><map name="h-1363552746">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h518348337_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h518348337_scbox_button" class="control"
+ onclick="switchState('h518348337_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h518348337_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">Rank</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">domain</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superkingdom</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">kingdom</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subkingdom</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">branch</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infrakingdom</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">phylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infraphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">microphylum</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superdivision</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">division</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subdivision</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infradivision</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superclass</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">class</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subclass</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infraclass</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superlegion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">legion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">sublegion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infralegion</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">supercohort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">cohort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subcohort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infracohort</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superorder</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">order</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">suborder</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superfamily</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">family</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subfamily</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">supertribe</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">tribe</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subtribe</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">infratribe</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">genus</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subgenus</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">superspecies</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">species</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subspecies</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">variety</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subvariety</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">form</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">subform</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">cultivar</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">strain</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unknown</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h518348337_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h519911868" class="name">SequenceRelationType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>SequenceRelationType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceRelationType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'orthology'|'one_to_one_orthology'|'super_orthology'|'paralogy'|'ultra_paralogy'|'xenology'|'unknown'|'other'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h519911868_diagram_button" class="control"
+ onclick="switchState('h519911868_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h519911868_diagram" class="contents">
+ <img usemap="#h-465227925" src="schemaDiagrams/h-465227925.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-465227925.map--><map name="h-465227925">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h519911868_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h519911868_scbox_button" class="control"
+ onclick="switchState('h519911868_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h519911868_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceRelationType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">one_to_one_orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">super_orthology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">paralogy</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">ultra_paralogy</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">xenology</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">unknown</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">other</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h519911868_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h935679102" class="name">SequenceSymbol</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>SequenceSymbol</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceSymbol</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = \S{1,20}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h935679102_diagram_button" class="control"
+ onclick="switchState('h935679102_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h935679102_diagram" class="contents">
+ <img usemap="#h516473321" src="schemaDiagrams/h516473321.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h516473321.map--><map name="h516473321">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h935679102_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h935679102_scbox_button" class="control"
+ onclick="switchState('h935679102_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h935679102_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceSymbol</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">\S{1,20}</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h935679102_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h1408823200" class="name">SequenceType</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>SequenceType</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>SequenceType</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>value</em> comes from list: {'rna'|'dna'|'protein'}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h1408823200_diagram_button" class="control"
+ onclick="switchState('h1408823200_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h1408823200_diagram" class="contents">
+ <img usemap="#h-2043228153" src="schemaDiagrams/h-2043228153.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-2043228153.map--><map name="h-2043228153">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1408823200_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h1408823200_scbox_button" class="control"
+ onclick="switchState('h1408823200_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h1408823200_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">SequenceType</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">rna</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">dna</span>"/></div>
+ <div style="margin-left: 1.5em"><<span class="scTag">xs:enumeration</span>
+ <span class="scTag">value</span>="<span class="scContent">protein</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h1408823200_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h712147427" class="name">TaxonomyCode</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>TaxonomyCode</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>TaxonomyCode</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = [a-zA-Z0-9_]{2,10}</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h712147427_diagram_button" class="control"
+ onclick="switchState('h712147427_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h712147427_diagram" class="contents">
+ <img usemap="#h516707748" src="schemaDiagrams/h516707748.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h516707748.map--><map name="h516707748">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h712147427_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h712147427_scbox_button" class="control"
+ onclick="switchState('h712147427_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h712147427_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">TaxonomyCode</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[a-zA-Z0-9_]{2,10}</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h712147427_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h577349652" class="name">id_ref</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:IDREF</span> < <strong>id_ref</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>id_ref</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>, Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h-802965662">SequenceRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>, Complex Type <b>
+ <a href="#h192331856">CladeRelation</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: IDREF</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h577349652_diagram_button" class="control"
+ onclick="switchState('h577349652_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h577349652_diagram" class="contents">
+ <img usemap="#h813803539" src="schemaDiagrams/h813803539.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h813803539.map--><map name="h813803539">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h577349652_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h577349652_scbox_button" class="control"
+ onclick="switchState('h577349652_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h577349652_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">id_ref</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:IDREF</span>
+ </span>"/></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h577349652_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-1482113798" class="name">id_source</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:ID</span> < <strong>id_source</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>id_source</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h-1124608460">Clade</a>
+ </b>, Complex Type <b>
+ <a href="#h888650454">Taxonomy</a>
+ </b>, Complex Type <b>
+ <a href="#h-1794244794">Sequence</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: ID</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-1482113798_diagram_button" class="control"
+ onclick="switchState('h-1482113798_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-1482113798_diagram" class="contents">
+ <img usemap="#h123518701" src="schemaDiagrams/h123518701.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h123518701.map--><map name="h123518701">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1482113798_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-1482113798_scbox_button" class="control"
+ onclick="switchState('h-1482113798_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-1482113798_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">id_source</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:ID</span>
+ </span>"/></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-1482113798_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <h3>Simple Type: <a name="h-675984882" class="name">ref</a>
+ </h3>
+ <table class="hierarchy">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span> < <strong>ref</strong> (by restriction)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>None</td>
+ </tr>
+ </table>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>ref</td>
+ </tr>
+ <tr>
+ <th>Used by (from the same schema document)</th>
+ <td>Complex Type <b>
+ <a href="#h917087604">Annotation</a>
+ </b>, Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>, Complex Type <b>
+ <a href="#h158033242">Property</a>
+ </b>
+ </td>
+ </tr>
+ <tr>
+ <th>Content</th>
+ <td>
+ <ul>
+ <li>Base XSD Type: token</li>
+ </ul>
+ <ul>
+ <li>
+ <em>pattern</em> = [a-zA-Z0-9_]+:[a-zA-Z0-9_\.\-\s]+</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="sample box">
+ <div>
+ <input type="button" id="h-675984882_diagram_button" class="control"
+ onclick="switchState('h-675984882_diagram'); return false;"
+ style="display: none"/>
+ <span class="caption">Diagram</span>
+ </div>
+ <div id="h-675984882_diagram" class="contents">
+ <img usemap="#h-1056119207" src="schemaDiagrams/h-1056119207.png"/>
+ <!--
+ Map ref: file:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester-atv/resources/phyloxml_schema/1.10//schemaDiagrams/h-1056119207.map--><map name="h-1056119207">
+</map>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-675984882_diagram', true);
+// -->
+</script>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <input type="button" id="h-675984882_scbox_button" class="control"
+ onclick="switchState('h-675984882_scbox'); return false;"
+ style="display: none"/>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div id="h-675984882_scbox" class="contents">
+ <div style="margin-left: 0em"><<span class="scTag">xs:simpleType</span>
+ <span class="scTag">name</span>="<span class="scContent">ref</span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">
+ <a href="#ns_xs" title="Find out namespace of 'xs' prefix">xs</a>:token</span>
+ </span>"><div style="margin-left: 1.5em"><<span class="scTag">xs:pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[a-zA-Z0-9_]+:[a-zA-Z0-9_\.\-\s]+</span>"/></div></<span class="scTag">xs:restriction</span>></div></<span class="scTag">xs:simpleType</span>></div>
+ </div>
+ <script type="text/javascript">
+<!--
+ setState('h-675984882_scbox', false);
+// -->
+</script>
+ </div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ <div id="legend">
+ <h2>
+ <a name="Legend">Legend</a>
+ </h2>
+ <div style="float: left; width: 15em;">
+ <h3 style="margin-bottom: 0px;">Complex Type:</h3>
+ <div class="hint" style="margin-left: 0em;">Schema Component Type</div>
+ </div>
+ <div style="float: left; width: 15em;">
+ <h3 style="margin-bottom: 0px;">
+ <span class="name">AusAddress</span>
+ </h3>
+ <div class="hint" style="margin-left: 0em;">Schema Component Name</div>
+ </div>
+ <table class="hierarchy" style="clear : both">
+ <tr>
+ <th>Super-types:</th>
+ <td>
+ <span class="type" style="color: #0000FF; text-decoration:underline;">Address</span> < <span class="current">AusAddress</span> (by extension)</td>
+ </tr>
+ <tr>
+ <th>Sub-types:</th>
+ <td>
+ <ul>
+ <li>
+ <span class="type" style="color: #0000FF; text-decoration:underline;">QLDAddress</span> (by restriction)</li>
+ </ul>
+ </td>
+ </tr>
+ </table>
+ <div class="hint">If this schema component is a type definition, its type hierarchy is shown in a gray-bordered box.</div>
+ <table class="properties">
+ <tr>
+ <th>Name</th>
+ <td>AusAddress</td>
+ </tr>
+ <tr>
+ <th>
+ <a title="Look up 'Abstract' in glossary" href="phyloxml.xsd.html#term_Abstract">Abstract</a>
+ </th>
+ <td>no</td>
+ </tr>
+ </table>
+ <div class="hint">The table above displays the properties of this schema component.</div>
+ <div class="sample box">
+ <div>
+ <span class="caption">XML Instance Representation</span>
+ </div>
+ <div class="contents">
+ <span style="margin-left: 0em"><...</span>
+ <span class="newFields">
+ <span> country="<span class="fixed">Australia</span>"</span>
+ </span>> <br/>
+ <span style="margin-left: 1.5em" class="inherited"><unitNo> <span class="type">string</span> </unitNo> <span class="occurs">[0..1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em" class="inherited"><houseNo> <span class="type">string</span> </houseNo> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em" class="inherited"><street> <span class="type">string</span> </street> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span class="group" style="margin-left: 1.5em">Start <a title="Look up 'Choice' in glossary" href="#term_Choice">Choice</a>
+ <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 3em" class="inherited"><city> <span class="type">string</span> </city> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 3em" class="inherited"><town> <span class="type">string</span> </town> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span class="group" style="margin-left: 1.5em">End Choice</span>
+ <br/>
+ <span class="newFields">
+ <span style="margin-left: 1.5em"><state> <span class="type" style="text-decoration:underline;">AusStates</span> </state> <span class="occurs">[1]</span>
+ </span>
+ <br/>
+ <span style="margin-left: 1.5em"><postcode> <span class="constraint">string <<<em>pattern</em> = [1-9][0-9]{3}>></span> </postcode> <span class="occurs">[1]</span>
+ <a href="javascript:void(0)" title="View Documentation" class="documentation"
+ onclick="docArray = new Array('Post code must be a four-digit number.'); viewDocumentation('Element', 'postcode', docArray);">?</a>
+ </span>
+ <br/>
+ </span>
+ <span style="margin-left: 0em"></...></span>
+ <br/>
+ </div>
+ </div>
+ <div class="hint">
+ <p>The XML Instance Representation table above shows the schema component's content as an XML instance.</p>
+ <ul>
+ <li>The minimum and maximum occurrence of elements and attributes are provided in square brackets, e.g. [0..1].</li>
+ <li>Model group information are shown in gray, e.g. Start Choice ... End Choice.</li>
+ <li>For type derivations, the elements and attributes that have been added to or changed from the base type's content are shown in <span style="font-weight: bold">bold</span>.</li>
+ <li>If an element/attribute has a fixed value, the fixed value is shown in green, e.g. country="Australia".</li>
+ <li>Otherwise, the type of the element/attribute is displayed.
+ <ul>
+ <li>If the element/attribute's type is in the schema, a link is provided to it.</li>
+ <li>For local simple type definitions, the constraints are displayed in angle brackets, e.g. <<<em>pattern</em> = [1-9][0-9]{3}>>.</li>
+ </ul>
+ </li>
+ <li>If a local element/attribute has documentation, it will be displayed in a window that pops up when the question mark inside the attribute or next to the element is clicked, e.g. <postcode>.</li>
+ </ul>
+ </div>
+ <div class="schemaComponent box">
+ <div>
+ <span class="caption">Schema Component Representation</span>
+ </div>
+ <div class="contents">
+ <span style="margin-left: 0em"><<span class="scTag">complexType</span>
+ <span class="scTag">name</span>="<span class="scContent">AusAddress</span>"></span>
+ <br/>
+ <span style="margin-left: 1.5em"><<span class="scTag">complexContent</span>></span>
+ <br/>
+ <span style="margin-left: 3em"><<span class="scTag">extension</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type" style="text-decoration:underline;">Address</span>
+ </span>"></span>
+ <br/>
+ <span style="margin-left: 4.5em"><<span class="scTag">sequence</span>></span>
+ <br/>
+ <span style="margin-left: 6em"><<span class="scTag">element</span>
+ <span class="scTag">name</span>="<span class="scContent">state</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type" style="text-decoration:underline;">AusStates</span>
+ </span>"/></span>
+ <br/>
+ <span style="margin-left: 6em"><<span class="scTag">element</span>
+ <span class="scTag">name</span>="<span class="scContent">postcode</span>"></span>
+ <br/>
+ <span style="margin-left: 7.5em"><<span class="scTag">simpleType</span>></span>
+ <br/>
+ <span style="margin-left: 9em"><<span class="scTag">restriction</span>
+ <span class="scTag">base</span>="<span class="scContent">
+ <span class="type">string</span>
+ </span>"></span>
+ <br/>
+ <span style="margin-left: 10.5em"><<span class="scTag">pattern</span>
+ <span class="scTag">value</span>="<span class="scContent">[1-9][0-9]{3}</span>"/></span>
+ <br/>
+ <span style="margin-left: 9em"></<span class="scTag">restriction</span>></span>
+ <br/>
+ <span style="margin-left: 7.5em"></<span class="scTag">simpleType</span>></span>
+ <br/>
+ <span style="margin-left: 6em"></<span class="scTag">element</span>></span>
+ <br/>
+ <span style="margin-left: 4.5em"></<span class="scTag">sequence</span>></span>
+ <br/>
+ <span style="margin-left: 4.5em"><<span class="scTag">attribute</span>
+ <span class="scTag">name</span>="<span class="scContent">country</span>" <span class="scTag">type</span>="<span class="scContent">
+ <span class="type">string</span>
+ </span>" <span class="scTag">fixed</span>="<span class="scContent">Australia</span>"/></span>
+ <br/>
+ <span style="margin-left: 3em"></<span class="scTag">extension</span>></span>
+ <br/>
+ <span style="margin-left: 1.5em"></<span class="scTag">complexContent</span>></span>
+ <br/>
+ <span style="margin-left: 0em"></<span class="scTag">complexType</span>></span>
+ <br/>
+ </div>
+ </div>
+ <div class="hint">The Schema Component Representation table above displays the underlying XML representation of the schema component. (Annotations are not shown.)</div>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ </div>
+ <div id="glossary">
+ <h2>
+ <a name="Glossary">Glossary</a>
+ </h2>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Abstract">Abstract</a>
+ </span>(Applies to complex type definitions and element declarations). An abstract element or complex type cannot used to validate an element instance. If there is a reference to an abstract element, only element declarations that can substitute the abstract element can be used to validate the instance. For references to abstract type definitions, only derived types can be used.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_All">All Model Group</a>
+ </span>Child elements can be provided <em>in any order</em> in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-all"
+ href="http://www.w3.org/TR/xmlschema-1/#element-all">http://www.w3.org/TR/xmlschema-1/#element-all</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Choice">Choice Model Group</a>
+ </span>
+ <em>Only one</em> from the list of child elements and model groups can be provided in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-choice"
+ href="http://www.w3.org/TR/xmlschema-1/#element-choice">http://www.w3.org/TR/xmlschema-1/#element-choice</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_CollapseWS">Collapse Whitespace Policy</a>
+ </span>Replace tab, line feed, and carriage return characters with space character (Unicode character 32). Then, collapse contiguous sequences of space characters into single space character, and remove leading and trailing space characters.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ElemBlock">Disallowed Substitutions</a>
+ </span>(Applies to element declarations). If <em>substitution</em> is specified, then <a title="Look up 'substitution group' in glossary"
+ href="phyloxml.xsd.html#term_SubGroup">substitution group</a> members cannot be used in place of the given element declaration to validate element instances. If <em>derivation methods</em>, e.g. extension, restriction, are specified, then the given element declaration will not validate element instances that have types derived from the element declaration's type using the specified derivation methods. Normally, element instances can override their declaration's type by specifying an <code>xsi:type</code> attribute.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Key">Key Constraint</a>
+ </span>Like <a title="Look up 'Uniqueness Constraint' in glossary"
+ href="phyloxml.xsd.html#term_Unique">Uniqueness Constraint</a>, but additionally requires that the specified value(s) must be provided. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_KeyRef">Key Reference Constraint</a>
+ </span>Ensures that the specified value(s) must match value(s) from a <a title="Look up 'Key Constraint' in glossary" href="phyloxml.xsd.html#term_Key">Key Constraint</a> or <a title="Look up 'Uniqueness Constraint' in glossary"
+ href="phyloxml.xsd.html#term_Unique">Uniqueness Constraint</a>. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ModelGroup">Model Group</a>
+ </span>Groups together element content, specifying the order in which the element content can occur and the number of times the group of element content may be repeated. See: <a title="http://www.w3.org/TR/xmlschema-1/#Model_Groups"
+ href="http://www.w3.org/TR/xmlschema-1/#Model_Groups">http://www.w3.org/TR/xmlschema-1/#Model_Groups</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Nillable">Nillable</a>
+ </span>(Applies to element declarations). If an element declaration is nillable, instances can use the <code>xsi:nil</code> attribute. The <code>xsi:nil</code> attribute is the boolean attribute, <em>nil</em>, from the <em>http://www.w3.org/2001/XMLSchema-instance</em> namespace. If an element instance has an <code>xsi:nil</code> attribute set to true, it can be left empty, even though its element declaration may have required content.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Notation">Notation</a>
+ </span>A notation is used to identify the format of a piece of data. Values of elements and attributes that are of type, NOTATION, must come from the names of declared notations. See: <a title="http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations"
+ href="http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations">http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_PreserveWS">Preserve Whitespace Policy</a>
+ </span>Preserve whitespaces exactly as they appear in instances.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TypeFinal">Prohibited Derivations</a>
+ </span>(Applies to type definitions). Derivation methods that cannot be used to create sub-types from a given type definition.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TypeBlock">Prohibited Substitutions</a>
+ </span>(Applies to complex type definitions). Prevents sub-types that have been derived using the specified derivation methods from validating element instances in place of the given type definition.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ReplaceWS">Replace Whitespace Policy</a>
+ </span>Replace tab, line feed, and carriage return characters with space character (Unicode character 32).</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Sequence">Sequence Model Group</a>
+ </span>Child elements and model groups must be provided <em>in the specified order</em> in instances. See: <a title="http://www.w3.org/TR/xmlschema-1/#element-sequence"
+ href="http://www.w3.org/TR/xmlschema-1/#element-sequence">http://www.w3.org/TR/xmlschema-1/#element-sequence</a>.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_SubGroup">Substitution Group</a>
+ </span>Elements that are <em>members</em> of a substitution group can be used wherever the <em>head</em> element of the substitution group is referenced.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_ElemFinal">Substitution Group Exclusions</a>
+ </span>(Applies to element declarations). Prohibits element declarations from nominating themselves as being able to substitute a given element declaration, if they have types that are derived from the original element's type using the specified derivation methods.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_TargetNS">Target Namespace</a>
+ </span>The target namespace identifies the namespace that components in this schema belongs to. If no target namespace is provided, then the schema components do not belong to any namespace.</p>
+ <p>
+ <span class="glossaryTerm">
+ <a name="term_Unique">Uniqueness Constraint</a>
+ </span>Ensures uniqueness of an element/attribute value, or a combination of values, within a specified scope. See: <a title="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions"
+ href="http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions">http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions</a>.</p>
+ <div style="text-align: right; clear: both;">
+ <a href="#top">top</a>
+ </div>
+ <hr/>
+ </div>
+ <p class="footer">Generated by <a href="http://www.oxygenxml.com"><oXygen/> XML Editor</a> using a modified version of <a href="http://titanium.dstc.edu.au/xml/xs3p">xs3p</a> that adds schema diagrams and chunking support. Last modified: <script type="text/javascript">
+<!--
+ document.write(document.lastModified);
+// -->
+</script>
+ </p>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-100858323'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1056119207'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1142642744'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1363552746'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1484760249'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1724830583'>
+ <area
+ shape='rect'
+ alt='h1358103055'
+ coords='208,0,292,40'
+ href='phyloxml.xsd.html#h1358103055'/>
+
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='208,200,334,240'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-1930055872'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-203375637'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-2043228153'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-265752642'>
+ <area
+ shape='rect'
+ alt='h-1112505301'
+ coords='250,50,341,90'
+ href='phyloxml.xsd.html#h-1112505301'/>
+
+ <area
+ shape='rect'
+ alt='h332351765'
+ coords='250,100,355,140'
+ href='phyloxml.xsd.html#h332351765'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-354757553'>
+ <area
+ shape='rect'
+ alt='h535307528'
+ coords='222,0,341,40'
+ href='phyloxml.xsd.html#h535307528'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-411495795'>
+ <area
+ shape='rect'
+ alt='h-675984882'
+ coords='136,0,231,26'
+ href='phyloxml.xsd.html#h-675984882'/>
+
+ <area
+ shape='rect'
+ alt='h-675984882'
+ coords='136,36,238,62'
+ href='phyloxml.xsd.html#h-675984882'/>
+
+ <area
+ shape='rect'
+ alt='h-54338178'
+ coords='136,72,266,98'
+ href='phyloxml.xsd.html#h-54338178'/>
+
+ <area
+ shape='rect'
+ alt='h-763252414'
+ coords='136,108,280,134'
+ href='phyloxml.xsd.html#h-763252414'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='136,144,252,170'
+ href='phyloxml.xsd.html#h577349652'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-465227925'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-553597019'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-624240407'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-81115689'>
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,0,376,40'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,50,362,90'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,100,383,140'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+ <area
+ shape='rect'
+ alt='h1535743041'
+ coords='278,150,376,190'
+ href='phyloxml.xsd.html#h1535743041'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h-93417557'>
+ <area
+ shape='rect'
+ alt='h-1389097534'
+ coords='292,0,390,40'
+ href='phyloxml.xsd.html#h-1389097534'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1156064289'>
+ <area
+ shape='rect'
+ alt='h935679102'
+ coords='222,0,320,40'
+ href='phyloxml.xsd.html#h935679102'/>
+
+ <area
+ shape='rect'
+ alt='h-788356801'
+ coords='222,50,341,90'
+ href='phyloxml.xsd.html#h-788356801'/>
+
+ <area
+ shape='rect'
+ alt='h-213750342'
+ coords='222,200,327,240'
+ href='phyloxml.xsd.html#h-213750342'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='222,250,299,290'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+ <area
+ shape='rect'
+ alt='h917087604'
+ coords='222,300,348,340'
+ href='phyloxml.xsd.html#h917087604'/>
+
+ <area
+ shape='rect'
+ alt='h259010940'
+ coords='222,350,411,390'
+ href='phyloxml.xsd.html#h259010940'/>
+
+ <area
+ shape='rect'
+ alt='h1408823200'
+ coords='136,451,238,477'
+ href='phyloxml.xsd.html#h1408823200'/>
+
+ <area
+ shape='rect'
+ alt='h-1482113798'
+ coords='136,487,273,513'
+ href='phyloxml.xsd.html#h-1482113798'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='136,523,252,549'
+ href='phyloxml.xsd.html#h577349652'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h123518701'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1501379365'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1603897912'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h169662420'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1727164161'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1900732667'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h1919634775'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='257,0,383,40'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='171,50,301,76'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='171,86,301,112'
+ href='phyloxml.xsd.html#h577349652'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h2137002076'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h230020485'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='278,0,404,40'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='192,50,322,76'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h577349652'
+ coords='192,86,322,112'
+ href='phyloxml.xsd.html#h577349652'/>
+
+ <area
+ shape='rect'
+ alt='h519911868'
+ coords='192,158,294,184'
+ href='phyloxml.xsd.html#h519911868'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h482833585'>
+ <area
+ shape='rect'
+ alt='h535307528'
+ coords='344,10,463,50'
+ href='phyloxml.xsd.html#h535307528'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h508496390'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h516473321'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h516707748'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h555770290'>
+ <area
+ shape='rect'
+ alt='h-1112505301'
+ coords='215,0,306,40'
+ href='phyloxml.xsd.html#h-1112505301'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h624412339'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='236,50,362,90'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h158033242'
+ coords='236,100,348,140'
+ href='phyloxml.xsd.html#h158033242'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='236,150,313,190'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+ <area
+ shape='rect'
+ alt='h-675984882'
+ coords='150,200,245,226'
+ href='phyloxml.xsd.html#h-675984882'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h731810719'>
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='229,50,305,90'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='229,200,355,240'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h-1124608460'
+ coords='229,250,320,290'
+ href='phyloxml.xsd.html#h-1124608460'/>
+
+ <area
+ shape='rect'
+ alt='h192331856'
+ coords='229,300,383,340'
+ href='phyloxml.xsd.html#h192331856'/>
+
+ <area
+ shape='rect'
+ alt='h-802965662'
+ coords='229,350,404,390'
+ href='phyloxml.xsd.html#h-802965662'/>
+
+ <area
+ shape='rect'
+ alt='h158033242'
+ coords='229,400,341,440'
+ href='phyloxml.xsd.html#h158033242'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h77064440'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h813803539'>
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h854822387'>
+ <area
+ shape='rect'
+ alt='h-993584945'
+ coords='201,100,327,140'
+ href='phyloxml.xsd.html#h-993584945'/>
+
+ <area
+ shape='rect'
+ alt='h-1691165380'
+ coords='201,200,292,240'
+ href='phyloxml.xsd.html#h-1691165380'/>
+
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='201,250,306,290'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h888650454'
+ coords='201,300,313,340'
+ href='phyloxml.xsd.html#h888650454'/>
+
+ <area
+ shape='rect'
+ alt='h-1794244794'
+ coords='201,350,313,390'
+ href='phyloxml.xsd.html#h-1794244794'/>
+
+ <area
+ shape='rect'
+ alt='h-436501026'
+ coords='201,400,299,440'
+ href='phyloxml.xsd.html#h-436501026'/>
+
+ <area
+ shape='rect'
+ alt='h-1514309680'
+ coords='201,450,376,490'
+ href='phyloxml.xsd.html#h-1514309680'/>
+
+ <area
+ shape='rect'
+ alt='h-979596407'
+ coords='201,500,341,540'
+ href='phyloxml.xsd.html#h-979596407'/>
+
+ <area
+ shape='rect'
+ alt='h517931443'
+ coords='201,550,285,590'
+ href='phyloxml.xsd.html#h517931443'/>
+
+ <area
+ shape='rect'
+ alt='h401516646'
+ coords='201,600,320,640'
+ href='phyloxml.xsd.html#h401516646'/>
+
+ <area
+ shape='rect'
+ alt='h158033242'
+ coords='201,650,313,690'
+ href='phyloxml.xsd.html#h158033242'/>
+
+ <area
+ shape='rect'
+ alt='h-1482113798'
+ coords='115,837,252,863'
+ href='phyloxml.xsd.html#h-1482113798'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<map xmlns='http://www.w3.org/1999/xhtml' name='h992625297'>
+ <area
+ shape='rect'
+ alt='h-853091232'
+ coords='222,0,298,40'
+ href='phyloxml.xsd.html#h-853091232'/>
+
+ <area
+ shape='rect'
+ alt='h712147427'
+ coords='222,50,306,90'
+ href='phyloxml.xsd.html#h712147427'/>
+
+ <area
+ shape='rect'
+ alt='h518348337'
+ coords='222,300,306,340'
+ href='phyloxml.xsd.html#h518348337'/>
+
+ <area
+ shape='rect'
+ alt='h-676012345'
+ coords='222,350,299,390'
+ href='phyloxml.xsd.html#h-676012345'/>
+
+ <area
+ shape='rect'
+ alt='h-1482113798'
+ coords='136,451,273,477'
+ href='phyloxml.xsd.html#h-1482113798'/>
+
+</map>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <meta>
+ <filters directoryPatterns="" filePatterns=""
+ positiveFilePatterns="" showHiddenFiles="false"/>
+ <options>
+ <serialized>
+ <map>
+ <entry>
+ <String xml:space="preserve">scenario.associations</String>
+ <scenarioAssociation-array>
+ <scenarioAssociation>
+ <field name="name">
+ <String xml:space="preserve">phyloxml_test_document_2</String>
+ </field>
+ <field name="type">
+ <String xml:space="preserve">XSL</String>
+ </field>
+ <field name="url">
+ <String xml:space="preserve">phyloxml_test_document_2.xml</String>
+ </field>
+ </scenarioAssociation>
+ </scenarioAssociation-array>
+ </entry>
+ <entry>
+ <String xml:space="preserve">scenarios</String>
+ <scenario-array>
+ <scenario>
+ <field name="name">
+ <String xml:space="preserve">Execute DDXQuery</String>
+ </field>
+ <field name="baseURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="footerURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="fOPMethod">
+ <null/>
+ </field>
+ <field name="fOProcessorName">
+ <null/>
+ </field>
+ <field name="headerURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="inputXSLURL">
+ <String xml:space="preserve">${currentFileURL}</String>
+ </field>
+ <field name="inputXMLURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="defaultScenario">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="isFOPPerforming">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="type">
+ <String xml:space="preserve">DD_XQUERY</String>
+ </field>
+ <field name="saveAs">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="openInBrowser">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="outputFile">
+ <null/>
+ </field>
+ <field name="openOtherLocationInBrowser">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="locationToOpenInBrowserURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="openInEditor">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInHTMLPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInXMLPane">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="showInSVGPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="useXSLTInput">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="xsltParams">
+ <list/>
+ </field>
+ <field name="cascadingStylesheets">
+ <String-array/>
+ </field>
+ <field name="xslTransformer">
+ <String xml:space="preserve">DataDirect</String>
+ </field>
+ <field name="extensionURLs">
+ <String-array/>
+ </field>
+ </scenario>
+ <scenario>
+ <field name="name">
+ <String xml:space="preserve">Execute SQL</String>
+ </field>
+ <field name="baseURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="footerURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="fOPMethod">
+ <null/>
+ </field>
+ <field name="fOProcessorName">
+ <null/>
+ </field>
+ <field name="headerURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="inputXSLURL">
+ <String xml:space="preserve">${currentFileURL}</String>
+ </field>
+ <field name="inputXMLURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="defaultScenario">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="isFOPPerforming">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="type">
+ <String xml:space="preserve">SQL</String>
+ </field>
+ <field name="saveAs">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="openInBrowser">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="outputFile">
+ <null/>
+ </field>
+ <field name="openOtherLocationInBrowser">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="locationToOpenInBrowserURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="openInEditor">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInHTMLPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInXMLPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInSVGPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="useXSLTInput">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="xsltParams">
+ <list/>
+ </field>
+ <field name="cascadingStylesheets">
+ <String-array/>
+ </field>
+ <field name="xslTransformer">
+ <String xml:space="preserve">JDBC</String>
+ </field>
+ <field name="extensionURLs">
+ <String-array/>
+ </field>
+ </scenario>
+ <scenario>
+ <field name="name">
+ <String xml:space="preserve">Execute XQuery</String>
+ </field>
+ <field name="baseURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="footerURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="fOPMethod">
+ <null/>
+ </field>
+ <field name="fOProcessorName">
+ <null/>
+ </field>
+ <field name="headerURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="inputXSLURL">
+ <String xml:space="preserve">${currentFileURL}</String>
+ </field>
+ <field name="inputXMLURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="defaultScenario">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="isFOPPerforming">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="type">
+ <String xml:space="preserve">XQUERY</String>
+ </field>
+ <field name="saveAs">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="openInBrowser">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="outputFile">
+ <null/>
+ </field>
+ <field name="openOtherLocationInBrowser">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="locationToOpenInBrowserURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="openInEditor">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInHTMLPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInXMLPane">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="showInSVGPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="useXSLTInput">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="xsltParams">
+ <list/>
+ </field>
+ <field name="cascadingStylesheets">
+ <String-array/>
+ </field>
+ <field name="xslTransformer">
+ <String xml:space="preserve">Saxon9B XQuery</String>
+ </field>
+ <field name="extensionURLs">
+ <String-array/>
+ </field>
+ </scenario>
+ <scenario>
+ <field name="name">
+ <String xml:space="preserve">phyloxml_test_document_2</String>
+ </field>
+ <field name="baseURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="footerURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="fOPMethod">
+ <String xml:space="preserve">pdf</String>
+ </field>
+ <field name="fOProcessorName">
+ <String xml:space="preserve">Built-in (Apache FOP)</String>
+ </field>
+ <field name="headerURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="inputXSLURL">
+ <null/>
+ </field>
+ <field name="inputXMLURL">
+ <String xml:space="preserve">${currentFileURL}</String>
+ </field>
+ <field name="defaultScenario">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="isFOPPerforming">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="type">
+ <String xml:space="preserve">XSL</String>
+ </field>
+ <field name="saveAs">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="openInBrowser">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="outputFile">
+ <null/>
+ </field>
+ <field name="openOtherLocationInBrowser">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="locationToOpenInBrowserURL">
+ <String xml:space="preserve"></String>
+ </field>
+ <field name="openInEditor">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInHTMLPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="showInXMLPane">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="showInSVGPane">
+ <Boolean xml:space="preserve">false</Boolean>
+ </field>
+ <field name="useXSLTInput">
+ <Boolean xml:space="preserve">true</Boolean>
+ </field>
+ <field name="xsltParams">
+ <list/>
+ </field>
+ <field name="cascadingStylesheets">
+ <String-array/>
+ </field>
+ <field name="xslTransformer">
+ <String xml:space="preserve">Saxon6.5.5</String>
+ </field>
+ <field name="extensionURLs">
+ <String-array/>
+ </field>
+ </scenario>
+ </scenario-array>
+ </entry>
+ <entry>
+ <String xml:space="preserve">scenarios.load.from.project</String>
+ <Boolean xml:space="preserve">true</Boolean>
+ </entry>
+ </map>
+ </serialized>
+ </options>
+ </meta>
+ <projectTree name="phyloxml_oxygen_project.xpr">
+ <file name="../../examples/apaf.xml"/>
+ <file name="../../examples/bcl_2.xml"/>
+ <file name="../../examples/branch_widths.xml"/>
+ <file name="../../examples/demo_colors_and_widths.xml"/>
+ <file name="../../test_data/gene_tree_1.xml"/>
+ <file name="../../test_data/gene_tree_2.xml"/>
+ <file name="../../resources/phyloxml_schema/1.10/phyloxml.xsd"/>
+ <file name="../../examples/phyloxml_examples.xml"/>
+ <file name="../../examples/phyloxml_examples_1.xml"/>
+ <file name="../../examples/phyloxml_seq_annotation.xml"/>
+ <file name="../../test_data/phyloxml_test_atv.xml"/>
+ <file name="../../test_data/phyloxml_test_t1.xml"/>
+ <file name="../../test_data/phyloxml_test_t2.xml"/>
+ <file name="../../test_data/phyloxml_test_t3.xml"/>
+ <file name="../../test_data/phyloxml_test_t4.xml"/>
+ <file name="phyloxml_to_html_xslt.xml"/>
+ <file name="../../examples/single_descendants.xml"/>
+ <file name="../../examples/singlet.xml"/>
+ <file name="../../test_data/special_characters.xml"/>
+ <file name="../../test_data/species_tree_1.xml"/>
+ <file name="../../test_data/species_tree_1_unresolved.xml"/>
+ </projectTree>
+</project>
--- /dev/null
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:phy="http://www.phyloxml.org">
+ <xsl:output method="html" version="4.01"/>
+ <xsl:output doctype-system="http://www.w3c.org/tr/html4/strict.dtd"/>
+ <xsl:output doctype-public="-//W3c//DTD HTML 4.01//EN"/>
+ <xsl:template match="phy:phylogeny">
+ <ul>
+ <xsl:apply-templates select="phy:clade"/>
+ </ul>
+ </xsl:template>
+ <xsl:template match="phy:clade">
+ <ul>
+ <xsl:for-each select="phy:name">
+ <li>
+ <xsl:value-of select="text()"/>
+ </li>
+ </xsl:for-each>
+ </ul>
+ <ul>
+ <xsl:apply-templates select="phy:clade"/>
+ </ul>
+ </xsl:template>
+</xsl:stylesheet>