Last change
on this file since 496 was
496,
checked in by duh, 11 years ago
|
- set svn keyword expansion
|
-
Property svn:keywords set to
Date Rev Author
|
File size:
515 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 | AssayModule module |
---|
12 | long externalAssayId // the assay ID the assay has in the external module |
---|
13 | |
---|
14 | static hasMany = [samples : Sample] |
---|
15 | |
---|
16 | static constraints = { |
---|
17 | } |
---|
18 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.