Last change
on this file since 106 was
106,
checked in by keesvb, 12 years ago
|
added first version of clean data layer specification and clinical data module
|
File size:
439 bytes
|
Rev | Line | |
---|
[106] | 1 | package dbnp.clinicaldata |
---|
| 2 | |
---|
| 3 | class ClinicalDataLayerService implements dbnp.data.CleanDataLayer { |
---|
| 4 | |
---|
| 5 | boolean transactional = false |
---|
| 6 | |
---|
| 7 | String getAssayDescription(long assayID) { |
---|
| 8 | return ""; |
---|
| 9 | } |
---|
| 10 | |
---|
| 11 | String[] getFeatureNames(long assayID) { |
---|
| 12 | return new String[0]; |
---|
| 13 | } |
---|
| 14 | |
---|
| 15 | Map getFeatureData(long assayID, long[] sampleIDs) { |
---|
| 16 | return null; |
---|
| 17 | } |
---|
| 18 | |
---|
| 19 | Map getFeatureDataDifferential(long assayID, long[] sampleIDs1, long[] sampleIDs2) { |
---|
| 20 | return null; |
---|
| 21 | } |
---|
| 22 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.