source: trunk/grails-app/domain/dbnp/studycapturing/AssayType.groovy @ 186

Last change on this file since 186 was 186, checked in by keesvb, 13 years ago

added samples, assays and clinical data to bootstrap, modified clean data module linkage

  • Property svn:keywords set to
    Date
    Author
    Rev
File size: 459 bytes
Line 
1package dbnp.studycapturing
2
3/**
4 * Enum describing the different assay types (aka omics submodules).
5 */
6public enum AssayType {
7    TRANSCRIPTOMICS('Transcriptomics'),
8    METABOLOMICS('Metabolomics'),
9    CLINICAL_DATA('Clinical data')
10
11    String name
12
13    AssayType(String name) {
14     this.name = name
15    }
16
17    static list() {
18     [TRANSCRIPTOMICS, METABOLOMICS, CLINICAL_DATA]
19    }
20
21    /*def String toString() {
22        return this.name
23    }*/
24
25}
Note: See TracBrowser for help on using the repository browser.