Changeset 2623


Ignore:
Timestamp:
02/05/10 10:18:22 (2 years ago)
Author:
rwagner
Message:

minor modifications in db and ui model.

Location:
molgenis_projects/col7a1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • molgenis_projects/col7a1/molgenis_db.xml

    r2493 r2623  
    2020                <field name="position" type="number" description="Position of the exon within the gene"/> 
    2121                <field name="length" type="number" description="Length of the exon in bp."/> 
    22                 <field name="gene" type="xref" xref_field="Gene.id"/> 
     22                <field name="gene" type="xref" xref_field="Gene.id" xref_label="name"/> 
    2323        </entity> 
    2424        <entity name="Publication"> 
     
    5252                <field name="diagnosis" description="Diagnosis for the patient."/> 
    5353                <field name="alive" type="bool" default="true" /> 
    54                 <field name="id_mutation1" type="xref" xref_field="Mutation.id" xref_label="cdna_notation" nillable="true"/> 
    55                 <field name="id_mutation2" type="xref" xref_field="Mutation.id" xref_label="cdna_notation" nillable="true"/> 
    56                 <field name="publication" type="xref" xref_field="Publication.id"/> 
     54                <field name="mutation1" type="xref" xref_field="Mutation.id" xref_label="cdna_notation" nillable="true"/> 
     55                <field name="mutation2" type="xref" xref_field="Mutation.id" xref_label="cdna_notation" nillable="true"/> 
     56                <field name="publication" type="xref" xref_field="Publication.id" xref_label="title"/> 
    5757        </entity> 
    5858        <entity name="I_F"> 
     
    6262                        antibody 2Q633 against NC2 domain.</description> 
    6363                <field name="id" type="autoid" hidden="true" description="Primary key." /> 
    64                 <field name="patient" type="xref" xref_field="Patient.id" 
    65                         xref_label="number" nillable="true" /> 
     64                <field name="patient" type="xref" xref_field="Patient.id" xref_label="number" nillable="true" /> 
    6665                <field name="test_LH72" nillable="true" description="Staining intensity for LH72." /> 
    67                 <field name="test_2Q633" nillable="true" 
    68                         description="Staining intensity for 2Q633." /> 
     66                <field name="test_2Q633" nillable="true" description="Staining intensity for 2Q633." /> 
    6967                <field name="keratine_14" nillable="true" /> 
    7068                <field name="BP180_1D1" nillable="true" /> 
     
    9391                <field name="rna_notation" description="RNA notation of the mutation. Should be calculated automatically."/> 
    9492                <field name="aa_notation" description="Amino acid notation of the mutation. Should be calculated automatically."/> 
    95                 <field name="exon" description="Should be calculated automatically."/> 
    96                 <field name="consequence" type="enum" enum_options="[PTC,No initiation,Altered splicing,Missense]. Should be calculated automatically. Should be calculated automatically."/> 
     93                <field name="exon" type="xref" xref_field="Exon.id" xref_label="name" description="Exon. Should be calculated automatically."/> 
     94                <field name="consequence" type="enum" enum_options="[PTC,No initiation,Altered splicing,Missense]"/> 
    9795                <field name="reportedSNP" type="bool" description="Reported as SNP? Should be calculated automatically."/> 
    9896                <field name="conservedAA" type="bool" description="Conserved amino acid.? Should be calculated automatically."/> 
     
    10199                <field name="founderMutation" type="bool" description="Founder mutation?"/> 
    102100                <field name="population" description="Population if founder mutation."/> 
    103                 <field name="gene" type="xref" xref_field="Gene.id"/> 
    104                 <field name="phenotype" type="xref" xref_field="Phenotype.id"/> 
     101                <field name="gene" type="xref" xref_field="Gene.id" xref_label="name"/> 
     102                <field name="phenotype" type="xref" xref_field="Phenotype.id" xref_label="name"/> 
    105103                <unique fields="gene,cdna_notation"></unique> 
    106104        </entity> 
  • molgenis_projects/col7a1/molgenis_ui.xml

    r2493 r2623  
    55        --> 
    66<molgenis name="col7a1"> 
    7         <menu name="topmenu" position="top_left"> 
    8                 <form name="Gene" entity="Gene"/> 
    9                 <form name="Exon" entity="Exon"/> 
    10                 <form name="Mutation" entity="Mutation"/> 
    11                 <form name="Patient" entity="Patient"/> 
    12                 <form name="Phenotype" entity="Phenotype"/> 
    13                 <form name="Publication" entity="Publication"/> 
    14                 <form name="I_F" entity="I_F"/> 
    15                 <form name="E_M" entity="E_M"/> 
     7        <menu name="Display"> 
     8                <form name="GeneView" entity="Gene" readonly="true"> 
     9                        <form name="ExonView" entity="Exon" readonly="true"/> 
     10                        <form name="MutationView" entity="Mutation" readonly="true"> 
     11                                <form name="PhenotypeView" entity="Phenotype" readonly="true"/> 
     12                                <form name="PatientView" entity="Patient" readonly="true"> 
     13                                        <form name="PublicationView" entity="Publication" readonly="true"/> 
     14                                        <form name="IFView" entity="I_F" readonly="true"/> 
     15                                        <form name="EMView" entity="E_M" readonly="true"/> 
     16                                </form> 
     17                        </form> 
     18                </form> 
     19                <menu name="Edit"> 
     20                        <form name="Gene" entity="Gene"/> 
     21                        <form name="Exon" entity="Exon"/> 
     22                        <form name="Mutation" entity="Mutation"/> 
     23                        <form name="Patient" entity="Patient"/> 
     24                        <form name="Phenotype" entity="Phenotype"/> 
     25                        <form name="Publication" entity="Publication"/> 
     26                        <form name="I_F" entity="I_F"/> 
     27                        <form name="E_M" entity="E_M"/> 
     28                </menu> 
    1629        </menu> 
    17         <!-- 
    18         <form name="Genes" entity="Gene" view="list"> 
    19                 <form name="Exons" entity="Exon" view="list"> 
    20                 </form> 
    21         </form> 
    22         --> 
    2330</molgenis> 
Note: See TracChangeset for help on using the changeset viewer.