Changeset 2642


Ignore:
Timestamp:
02/16/10 09:50:52 (2 years ago)
Author:
rwagner
Message:
 
Location:
molgenis_projects/col7a1
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • molgenis_projects/col7a1/molgenis.properties

    r2478 r2642  
    2424 db_password = molgenis 
    2525 db_uri= jdbc:mysql://localhost/col7a1db 
     26  
     27 example_data_dir = example_data 
    2628 
    2729# PostgreSQL: experimental! 
  • molgenis_projects/col7a1/molgenis_db.xml

    r2623 r2642  
    1818                <field name="number" type="number" description="Consecutive number of exon inside of the gene."/> 
    1919                <field name="name" description="Name of the exon."/> 
    20                 <field name="position" type="number" description="Position of the exon within the gene"/> 
     20                <field name="cdna_position" type="number" description="cDNA position of the exon within the gene."/> 
     21                <field name="gdna_position" type="number" description="gDNA position of the exon within the gene."/> 
    2122                <field name="length" type="number" description="Length of the exon in bp."/> 
    2223                <field name="gene" type="xref" xref_field="Gene.id" xref_label="name"/> 
     
    5657                <field name="publication" type="xref" xref_field="Publication.id" xref_label="title"/> 
    5758        </entity> 
    58         <entity name="I_F"> 
     59        <entity name="IF"> 
    5960                <description>Immunofluorescence staining intensity of type VII 
    6061                        collagen at the basement membrane zone in non-involved skin with 
     
    7172                <field name="description" type="text" /> 
    7273        </entity> 
    73         <entity name="E_M"> 
     74        <entity name="EM"> 
    7475                        <field name="id" type="autoid" hidden="true"/> 
    7576                        <field name="patient" type="xref" xref_field="Patient.id" xref_label="number" /> 
    76                         <field name="value"/> 
    77                         <field name="Anchoring_fibers" nillable="true"/> 
    78                         <field name="Hemi_desmosomes" nillable="true"/> 
    79                         <field name="description" type="text"/> 
     77                        <field name="Anchoring_fibrils" nillable="true"/> 
     78                        <field name="description" type="text" nillable="true"/> 
    8079                </entity> 
    8180        <entity name="Mutation"> 
    8281                <description>Part of an exon that has its codon changed.</description> 
    8382                <field name="id" type="autoid" hidden="true" description="Primary key."/> 
    84                 <field name="name" description="Name. For example c.14C>G."/> 
    8583                <field name="position" type="number" description="Position in bp inside of the exon."/> 
    8684                <field name="length" type="number" description="Length of the mutation."/> 
    8785                <field name="type" type="enum" enum_options="[ins,del]"/> 
    8886                <field name="codon_change" description="A description of the change of the codon."/> 
    89                 <field name="cdna_notation" description="cDNA notation of the mutation. Should be calculated automatically."/> 
     87                <field name="cdna_notation" description="cDNA notation of the mutation. For example c.14C>G."/> 
    9088                <field name="gdna_notation" description="gDNA notation of the mutation. Should be calculated automatically."/> 
    91                 <field name="rna_notation" description="RNA notation of the mutation. Should be calculated automatically."/> 
    9289                <field name="aa_notation" description="Amino acid notation of the mutation. Should be calculated automatically."/> 
    9390                <field name="exon" type="xref" xref_field="Exon.id" xref_label="name" description="Exon. Should be calculated automatically."/> 
  • molgenis_projects/col7a1/molgenis_ui.xml

    r2623 r2642  
    55        --> 
    66<molgenis name="col7a1"> 
    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"/> 
     7        <plugin name="MolgenisHeader" type="plugins.header.MolgenisHeader"/> 
     8        <menu name="View"> 
     9                <form name="Genes" entity="Gene" readonly="true"> 
     10                        <menu name="ExonMenu"> 
     11                                <form name="Exons" entity="Exon" readonly="true"/> 
     12                                <form name="Mutations" entity="Mutation" readonly="true"> 
     13                                        <form name="Phenotypes" entity="Phenotype" readonly="true"/> 
    1614                                </form> 
    17                         </form> 
     15                                <form name="Patients" entity="Patient" readonly="true"> 
     16                                        <form name="Publications" entity="Publication" readonly="true"/> 
     17                                        <form name="I_Fs" entity="I_F" readonly="true"/> 
     18                                        <form name="E_Ms" entity="E_M" readonly="true"/> 
     19                                </form> 
     20                        </menu> 
    1821                </form> 
    1922                <menu name="Edit"> 
Note: See TracChangeset for help on using the changeset viewer.