Changeset 2660


Ignore:
Timestamp:
02/25/10 18:29:03 (2 years ago)
Author:
rwagner
Message:
 
Location:
molgenis_projects/col7a1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • molgenis_projects/col7a1/molgenis_db.xml

    r2646 r2660  
    1616                <description>Part of a gene, that gets translated.</description> 
    1717                <field name="id" type="autoid" hidden="true" description="Primary key."/> 
    18                 <field name="number" type="number" description="Consecutive number of exon inside of the gene."/> 
     18                <field name="number_" type="number" description="Consecutive number of exon inside of the gene."/> 
    1919                <field name="name" description="Name of the exon."/> 
    2020                <field name="cdna_position" type="number" description="cDNA position of the exon within the gene."/> 
     
    2222                <field name="length" type="number" description="Length of the exon in bp."/> 
    2323                <field name="gene" type="xref" xref_field="Gene.id" xref_label="name"/> 
     24                <field name="proteinDomain" type="xref" xref_field="ProteinDomain.id" xref_label="name"/> 
     25        </entity> 
     26        <entity name="ProteinDomain"> 
     27                <description>A protein domain is a part of protein sequence and structure that can evolve, function, and exist independently of the rest of the protein chain.</description> 
     28                <field name="id" type="autoid" hidden="true" description="Primary key."/> 
     29                <field name="name" description="Name of the protein domain. E.g. NC1 domain."/> 
     30                <field name="superDomain" type="xref" xref_field="ProteinDomain.id" xref_label="name" nillable="true"/> 
    2431        </entity> 
    2532        <entity name="Publication"> 
     
    4956        <entity name="Patient"> 
    5057                <field name="id" type="autoid" hidden="true" description="Primary key."/> 
    51                 <field name="number" description="Number of patient."/> 
     58                <field name="number_" description="Number of patient."/> 
    5259                <field name="age" description="Age of patient in years."/> 
    5360                <field name="diagnosis" description="Diagnosis for the patient."/> 
     
    6067                <description>Immunofluorescence staining intensity of collagen type VII at the basement membrane zone in non-involved skin with different antibodies.</description> 
    6168                <field name="id" type="autoid" hidden="true" description="Primary key." /> 
    62                 <field name="number" description="Unique number used mainly for referencing." unique="true" readonly="true" default="automatic value"/> 
    63                 <field name="patient" type="xref" xref_field="Patient.id" xref_label="number" nillable="true" /> 
     69                <field name="number_" description="Unique number used mainly for referencing." unique="true"/> 
     70                <field name="patient" type="xref" xref_field="Patient.id" xref_label="number_" nillable="true" /> 
    6471                <field name="collagen_type_vii" nillable="true" /> 
    6572                <field name="description" type="text" /> 
     
    7380                <description>Value of an antibody used in an immunofluorescence.</description> 
    7481                <field name="id"  type="autoid" hidden="true"/> 
    75                 <field name="i_f" type="xref" xref_field="I_F.id" xref_label="number"/> 
     82                <field name="i_f" type="xref" xref_field="I_F.id" xref_label="number_"/> 
    7683                <field name="antibody" type="xref" xref_field="Antibody.id" xref_label="name"/> 
    77                 <field name="value" type="enum" enum_options="normal, reduced, strongly reduced, increased, strongly increased"/> 
     84                <field name="value" type="enum" enum_options="normal, slightly reduced, reduced, strongly reduced, slightly increased, increased, strongly increased"/> 
    7885        </entity> 
    7986        <entity name="E_M"> 
    8087                <field name="id" type="autoid" hidden="true"/> 
    81                 <field name="patient" type="xref" xref_field="Patient.id" xref_label="number" /> 
    82                 <field name="Anchoring_fibrils" nillable="true"/> 
     88                <field name="patient" type="xref" xref_field="Patient.id" xref_label="number_" /> 
     89                <field name="anchoring_fibrils" type="enum" enum_options="normal, slightly reduced, reduced, strongly reduced, slightly increased, increased, strongly increased"/> 
    8390                <field name="description" type="text" nillable="true"/> 
    8491        </entity> 
     
    8794                <field name="id" type="autoid" hidden="true" description="Primary key."/> 
    8895                <field name="position" type="number" description="Position in bp inside of the exon."/> 
    89                 <field name="length" type="number" description="Length of the mutation."/> 
     96                <field name="length_" type="number" description="Length of the mutation."/> 
    9097                <field name="type_" type="enum" enum_options="[ins,del]"/> 
    9198                <field name="codon_change" description="A description of the change of the codon."/> 
     
    98105                <field name="conservedAA" type="bool" description="Conserved amino acid.? Should be calculated automatically."/> 
    99106                <field name="effectOnSplicing" type="bool" description="Predicted effect on splicing? Should be calculated automatically."/> 
    100                 <field name="proteinDomain" description="Protein domain. Should be calculated automatically."/> 
    101107                <field name="founderMutation" type="bool" description="Founder mutation?"/> 
    102108                <field name="population" description="Population if founder mutation."/> 
  • molgenis_projects/col7a1/molgenis_ui.xml

    r2647 r2660  
    77        <plugin name="MolgenisHeader" type="plugins.header.MolgenisHeader"/> 
    88        <menu name="View"> 
     9                <plugin name="Search" type="plugin.ui.SearchPlugin"/> 
     10<!-- 
    911                <form name="Genes" entity="Gene" readonly="true"> 
    1012                        <menu name="ExonMenu"> 
     
    2224                        </menu> 
    2325                </form> 
    24                 <menu name="Edit"> 
     26--> 
     27                <menu name="Upload"> 
    2528                        <form name="Gene" entity="Gene"/> 
     29                        <form name="ProteinDomain" entity="ProteinDomain"/> 
    2630                        <form name="Exon" entity="Exon"/> 
    2731                        <form name="Mutation" entity="Mutation"/> 
     
    3438                        <form name="EM" entity="E_M"/> 
    3539                </menu> 
     40                <plugin name="Contact" type="plugin.ui.ContactPlugin"/> 
     41                <form name="References" entity="Publication" readonly="true"/> 
     42                <plugin name="Background" type="plugin.ui.BackgroundPlugin"/> 
     43                <plugin name="Help" type="plugin.ui.HelpPlugin"/> 
     44                <plugin name="Login" type="plugin.ui.LoginPlugin"/> 
    3645        </menu> 
    3746</molgenis> 
Note: See TracChangeset for help on using the changeset viewer.