Last change
on this file since 162 was
162,
checked in by duh, 11 years ago
|
|
-
Property svn:keywords set to
Date Author Rev
|
File size:
453 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | /** |
---|
4 | * This class describes an Assay, which describes the application of a certain (omics) measurement to multiple samples. |
---|
5 | * The actual data of these measurements are described in submodules of dbNP. The type property describes in which module |
---|
6 | * this data can be found. |
---|
7 | */ |
---|
8 | class Assay { |
---|
9 | |
---|
10 | String name |
---|
11 | AssayType type |
---|
12 | String platform |
---|
13 | |
---|
14 | static hasMany = [samples : Sample] |
---|
15 | |
---|
16 | static constraints = { |
---|
17 | } |
---|
18 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.