Changeset 64 for trunk/grails-app/domain


Ignore:
Timestamp:
Dec 15, 2009, 4:37:11 PM (14 years ago)
Author:
ademcan
Message:

Loading new magetab data in the database from IDF file.

Location:
trunk/grails-app/domain/magetab
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/magetab/idf/InvestigationDesign.groovy

    r59 r64  
    55    String title
    66    String experimentDescription
    7     Date dateOfExperiment
    8     Date publicReleaseDate
     7    String dateOfExperiment
     8    String publicReleaseDate
    99
    1010    static hasMany = [
     
    2323
    2424    static constraints = {
     25        title(nullable:true,blank:true)
     26        experimentDescription(nullable:true,blank:true)
     27        dateOfExperiment(nullable:true,blank:true)
     28        publicReleaseDate(nullable:true,blank:true)
    2529    }
    2630}
  • trunk/grails-app/domain/magetab/idf/OntologyTerm.groovy

    r59 r64  
    1111    static constraints = {
    1212//        termSource(nullable: true)
     13        text(nullable:true,blank:true)
     14        category(nullable:true,blank:true)
     15        accessionNumber(nullable:true,blank:true)
    1316    }
    1417}
  • trunk/grails-app/domain/magetab/idf/Protocol.groovy

    r63 r64  
    1010    String parameters
    1111    String contact
     12    String term_source_ref
    1213
    1314    static hasMany = [
     
    2324        parameters(nullable:true,blank:true)
    2425        contact(nullable:true,blank:true)
     26        term_source_ref(nullable:true,blank:true)
    2527    }
    2628}
  • trunk/grails-app/domain/magetab/idf/Publication.groovy

    r63 r64  
    77    String DOI
    88    OntologyTerm status
     9    String status_term_source_ref
     10    String authors_list
    911
    1012    static hasMany = [
     
    1719        pubMedID(nullable:true,blank:true)
    1820        DOI(nullable:true,blank:true)
     21        authors_list(nullable:true,blank:true)
    1922    }
    2023}
  • trunk/grails-app/domain/magetab/sdrf/Normalization.groovy

    r58 r64  
    33class Normalization {
    44
     5    String type;
     6    String term_source_ref;
     7
    58    static constraints = {
     9        type(nullable:true,blank:true)
     10        term_source_ref(nullable:true,blank:true)
    611    }
    712}
Note: See TracChangeset for help on using the changeset viewer.