Ignore:
Timestamp:
Jan 30, 2012, 4:58:25 PM (12 years ago)
Author:
m.s.vanvliet@…
Message:

Added some remarks to the merge data with meta-data method

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/services/dbnp/studycapturing/AssayService.groovy

    r2156 r2158  
    193193
    194194                        try {
    195                                 moduleMeasurementData           = requestModuleMeasurements(assay, measurementTokens, samples, remoteUser)
     195                                moduleMeasurementData = requestModuleMeasurements(assay, measurementTokens, samples, remoteUser)
    196196                        } catch (e) {
    197197                                moduleMeasurementData = ['error' : [
     
    412412
    413413        /**
    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
    415418         */
    416419        def mergeModuleDataWithMetadata(data, metadata = null){
     
    424427                        return data
    425428                }
    426                
     429
    427430                //find out where the measurements start in the data
    428431                def addLabelsAtColumnPosition = null
     
    462465                        def tempData = []
    463466                        data.eachWithIndex { row, iRow ->
    464                                
     467
    465468                                //this is an existing row (not meta-data), so we add a null under the feature label column
    466469                                def tempR = []
Note: See TracChangeset for help on using the changeset viewer.