Changeset 2158 for trunk/grails-app/services/dbnp/studycapturing
- Timestamp:
- Jan 30, 2012, 4:58:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/dbnp/studycapturing/AssayService.groovy
r2156 r2158 193 193 194 194 try { 195 moduleMeasurementData 195 moduleMeasurementData = requestModuleMeasurements(assay, measurementTokens, samples, remoteUser) 196 196 } catch (e) { 197 197 moduleMeasurementData = ['error' : [ … … 412 412 413 413 /** 414 * Injects meta-data(s) into rowData before creating a CSV or tab 414 * Modules can provide meta-data about the measurements. If so they can be added to the export. 415 * This method extends the data with the meta-data. 416 * 417 * @return data + meta-data 415 418 */ 416 419 def mergeModuleDataWithMetadata(data, metadata = null){ … … 424 427 return data 425 428 } 426 429 427 430 //find out where the measurements start in the data 428 431 def addLabelsAtColumnPosition = null … … 462 465 def tempData = [] 463 466 data.eachWithIndex { row, iRow -> 464 467 465 468 //this is an existing row (not meta-data), so we add a null under the feature label column 466 469 def tempR = []
Note: See TracChangeset
for help on using the changeset viewer.