

















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An example of using dtd and xml schema to represent protein data. It includes an explanation of protein structures, protein databases, and the use of dtd and xml schema for protein representation. The document also includes a critical evaluation of dtd and xml schema for protein data representation.
Typology: Slides
1 / 25
This page cannot be seen from the preview
Don't miss anything!


















PROTEIN
EXAMPLE OF DTD
(^) ANY:EMPTY:#PCDATA: the element can contain any text or any child element(s).the element cannot contain any text or anythe element can contain regular text. child elements. Child Elements: the element can contain a specific set of child elements.MIXED: the element can contain text data interspersed with child element
Critical Evaluation of the DTDXML SCHEMA
<xs:complexType> <xs:complexContent> <xs:restriction base="xs:anyType"> <xs:sequence> <xs:element name="accession" type="xs:string"/> <xs:element name="entry-name" type="xs:string"/> <xs:element name="protein-name" type="xs:string"/> <xs:element name="gene-name" type="xs:string" maxOccurs="unbounded"/> <xs:element ref="organism"/> <xs:element ref="cross-reference" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="comment" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="keyword" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> </xs:restriction> </xs:complexContent>
<gene-name>CSF2RB2</gene-name> <gene-name>AI2CA</gene-name> <gene-name>IL3RB2</gene-name> <gene-name>IL3R</gene-name>