<xs:complexType name="RNAState">
<xs:annotation>
<xs:documentation>This is a concrete implementation of the state element, which requires a symbol attribute, in this case restricted to RNAToken, i.e. a single IUPAC nucleotide symbol, and optional mapping elements to refer to other states.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:restriction base="AbstractState">
<xs:sequence minOccurs="1" maxOccurs="1"/>
<xs:attribute name="symbol" type="RNAToken" use="required"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType> |