Changeset 2646


Ignore:
Timestamp:
02/18/10 09:35:08 (2 years ago)
Author:
rwagner
Message:
 
Location:
molgenis_projects/col7a1
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • molgenis_projects/col7a1/WebContent/WEB-INF/web.xml

    r2478 r2646  
    5555                <url-pattern>/download/*</url-pattern> 
    5656        </servlet-mapping>       
     57         
     58        <security-constraint> 
     59            <web-resource-collection> 
     60                        <web-resource-name>Whole app</web-resource-name> 
     61                        <url-pattern>*.do</url-pattern> 
     62            </web-resource-collection> 
     63                <auth-constraint> 
     64                        <role-name>molgenis4eb</role-name> 
     65            </auth-constraint> 
     66        </security-constraint> 
     67         
     68        <login-config> 
     69                <auth-method>BASIC</auth-method> 
     70                <realm-name>Col7a1 database</realm-name> 
     71        </login-config> 
     72                 
     73        <security-role> 
     74                <description> 
     75                The role that is required to log in to the application 
     76                </description> 
     77                <role-name>molgenis4eb</role-name> 
     78        </security-role> 
     79         
    5780</web-app> 
  • molgenis_projects/col7a1/molgenis_db.xml

    r2642 r2646  
    5252                <field name="age" description="Age of patient in years."/> 
    5353                <field name="diagnosis" description="Diagnosis for the patient."/> 
    54                 <field name="alive" type="bool" default="true" /> 
     54                <field name="alive" type="bool" default="true" description="Is patient still alive?"/> 
    5555                <field name="mutation1" type="xref" xref_field="Mutation.id" xref_label="cdna_notation" nillable="true"/> 
    5656                <field name="mutation2" type="xref" xref_field="Mutation.id" xref_label="cdna_notation" nillable="true"/> 
    5757                <field name="publication" type="xref" xref_field="Publication.id" xref_label="title"/> 
    5858        </entity> 
    59         <entity name="IF"> 
    60                 <description>Immunofluorescence staining intensity of type VII 
    61                         collagen at the basement membrane zone in non-involved skin with 
    62                         monoclonal antibody LH7:2 against the NC1 domain and monoclonal 
    63                         antibody 2Q633 against NC2 domain.</description> 
     59        <entity name="I_F"> 
     60                <description>Immunofluorescence staining intensity of collagen type VII at the basement membrane zone in non-involved skin with different antibodies.</description> 
    6461                <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"/> 
    6563                <field name="patient" type="xref" xref_field="Patient.id" xref_label="number" nillable="true" /> 
    66                 <field name="test_LH72" nillable="true" description="Staining intensity for LH72." /> 
    67                 <field name="test_2Q633" nillable="true" description="Staining intensity for 2Q633." /> 
    68                 <field name="keratine_14" nillable="true" /> 
    69                 <field name="BP180_1D1" nillable="true" /> 
    70                 <field name="Niceine_GB3" nillable="true" /> 
    71                 <field name="Collagen" nillable="true" /> 
     64                <field name="collagen_type_vii" nillable="true" /> 
    7265                <field name="description" type="text" /> 
    7366        </entity> 
    74         <entity name="EM"> 
    75                         <field name="id" type="autoid" hidden="true"/> 
    76                         <field name="patient" type="xref" xref_field="Patient.id" xref_label="number" /> 
    77                         <field name="Anchoring_fibrils" nillable="true"/> 
    78                         <field name="description" type="text" nillable="true"/> 
    79                 </entity> 
     67        <entity name="Antibody"> 
     68                <description>Antibody used for immunofluorescence.</description> 
     69                <field name="id" type="autoid" hidden="true" description="Primary key."/> 
     70                <field name="name" description="Name of the antibody."/> 
     71        </entity> 
     72        <entity name="I_F_Antibody"> 
     73                <description>Value of an antibody used in an immunofluorescence.</description> 
     74                <field name="id"  type="autoid" hidden="true"/> 
     75                <field name="i_f" type="xref" xref_field="I_F.id" xref_label="number"/> 
     76                <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"/> 
     78        </entity> 
     79        <entity name="E_M"> 
     80                <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"/> 
     83                <field name="description" type="text" nillable="true"/> 
     84        </entity> 
    8085        <entity name="Mutation"> 
    8186                <description>Part of an exon that has its codon changed.</description> 
     
    8388                <field name="position" type="number" description="Position in bp inside of the exon."/> 
    8489                <field name="length" type="number" description="Length of the mutation."/> 
    85                 <field name="type" type="enum" enum_options="[ins,del]"/> 
     90                <field name="type_" type="enum" enum_options="[ins,del]"/> 
    8691                <field name="codon_change" description="A description of the change of the codon."/> 
    8792                <field name="cdna_notation" description="cDNA notation of the mutation. For example c.14C>G."/> 
  • molgenis_projects/col7a1/molgenis_ui.xml

    r2642 r2646  
    1515                                <form name="Patients" entity="Patient" readonly="true"> 
    1616                                        <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"/> 
     17                                        <form name="IFs" entity="I_F" readonly="true"/> 
     18                                        <form name="Antibodies" entity="I_F_Antibody" readonly="true"/> 
     19                                        <form name="EMs" entity="E_M" readonly="true"/> 
    1920                                </form> 
    2021                        </menu> 
     
    2728                        <form name="Phenotype" entity="Phenotype"/> 
    2829                        <form name="Publication" entity="Publication"/> 
    29                         <form name="I_F" entity="I_F"/> 
    30                         <form name="E_M" entity="E_M"/> 
     30                        <form name="Antibody" entity="Antibody"> 
     31                                <form name="AntibodyValue" entity="I_F_Antibody"/> 
     32                        </form> 
     33                        <form name="IF" entity="I_F"/> 
     34                        <form name="EM" entity="E_M"/> 
    3135                </menu> 
    3236        </menu> 
Note: See TracChangeset for help on using the changeset viewer.