The AbstractRootEdge complex type is a superclass for the edge that leads into a root, i.e. an edge with only a target attribute, but no source attribute. This type of edge is used for coalescent trees, where the initial lineage has a certain length before things start splitting up. |
| QName | Type | Fixed | Default | Use | Inheritable | Annotation | |
|---|---|---|---|---|---|---|---|
| about | URIorSafeCURIE | optional | |||||
| id | xs:ID | required | |||||
| label | xs:string | optional | |||||
| length | optional | ||||||
| target | xs:IDREF | required | |||||
| xml:base | xs:anyURI | optional |
|
||||
| Wildcard: ANY attribute from ANY namespace | |||||||
| Element | AbstractTree/rootedge |
| Complex Types | TreeFloatRootEdge, TreeIntRootEdge |
<xs:complexType name="AbstractRootEdge" abstract="true"> <xs:annotation> <xs:documentation>The AbstractRootEdge complex type is a superclass for the edge that leads into a root, i.e. an edge with only a target attribute, but no source attribute. This type of edge is used for coalescent trees, where the initial lineage has a certain length before things start splitting up.</xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="IDTagged"> <xs:attribute name="target" type="xs:IDREF" use="required"/> <xs:attribute name="length" type="xs:anySimpleType" use="optional"/> </xs:extension> </xs:complexContent> </xs:complexType> |