Changeset 2050
- Timestamp:
- Oct 6, 2011, 2:05:50 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/studycapturing/AssayController.groovy
r2049 r2050 309 309 response.setContentType("application/octet-stream") 310 310 try { 311 assayService.exportRowWiseDataToCSVFile(rowData, response.outputStream, outputDelimiter, java.util.Locale.US) 311 // Skip first row for now to support the current PLS tool in Galaxy, will change in the future 312 assayService.exportRowWiseDataToCSVFile(rowData[1:-1], response.outputStream, outputDelimiter, java.util.Locale.US) 312 313 } catch (Exception e) { 313 314 flash.errorMessage = e.message
Note: See TracChangeset
for help on using the changeset viewer.