1 | package nl.tno.metagenomics |
---|
2 | |
---|
3 | import org.springframework.web.context.request.RequestContextHolder; |
---|
4 | |
---|
5 | class SampleExcelService { |
---|
6 | def excelService |
---|
7 | def fuzzySearchService |
---|
8 | def gscfService |
---|
9 | |
---|
10 | static transactional = true |
---|
11 | |
---|
12 | // Fields to be edited using excel file and manually |
---|
13 | def sampleNameName = "Sample name" |
---|
14 | def runName = "Run" |
---|
15 | def tagNameName = "Tag name" |
---|
16 | def tagSequenceName = "Tag sequence" |
---|
17 | def oligoNumberName = "Oligo number" |
---|
18 | def possibleFields = [sampleNameName, runName, tagNameName, tagSequenceName, oligoNumberName] |
---|
19 | |
---|
20 | /** |
---|
21 | * Download a sample excel file with information about the metagenomics data of the assaySamples (i.e. all assaySample properties) |
---|
22 | * @param assaySamples AssaySamples for which the information should be exported |
---|
23 | * @param includeRun Whether to include a column with run name or not |
---|
24 | * @return |
---|
25 | */ |
---|
26 | def downloadSampleExcel( def assaySamples, boolean includeRun = true ) { |
---|
27 | def sheetIndex = 0; |
---|
28 | |
---|
29 | if( assaySamples == null ) |
---|
30 | assaySamples = [] |
---|
31 | |
---|
32 | def sortedSamples = assaySamples.toList().sort { it.sample.name } |
---|
33 | |
---|
34 | // Create an excel sheet |
---|
35 | def wb = excelService.create(); |
---|
36 | |
---|
37 | def fields = possibleFields |
---|
38 | if( !includeRun ) |
---|
39 | fields = fields - runName |
---|
40 | |
---|
41 | // Put the headers on the first row |
---|
42 | excelService.writeHeader( wb, fields, sheetIndex ); |
---|
43 | |
---|
44 | // Adding the next lines |
---|
45 | ArrayList data = []; |
---|
46 | sortedSamples.each { assaySample -> |
---|
47 | def rowData = [assaySample.sample?.name]; |
---|
48 | if( includeRun ) |
---|
49 | rowData << assaySample.run?.name |
---|
50 | |
---|
51 | rowData << assaySample.tagName |
---|
52 | rowData << assaySample.tagSequence |
---|
53 | rowData << assaySample.oligoNumber |
---|
54 | data << rowData; |
---|
55 | } |
---|
56 | excelService.writeData( wb, data, sheetIndex, 1 ); |
---|
57 | |
---|
58 | // Auto resize columns |
---|
59 | excelService.autoSizeColumns( wb, sheetIndex, 0..2) |
---|
60 | |
---|
61 | return wb; |
---|
62 | } |
---|
63 | |
---|
64 | /** |
---|
65 | * Parses a given excel file and tries to match the column names with assaySample properties |
---|
66 | * @param file |
---|
67 | * @return |
---|
68 | */ |
---|
69 | def parseTagsExcel( File file, boolean includeRun = true ) { |
---|
70 | def sheetIndex = 0 |
---|
71 | def headerRow = 0 |
---|
72 | def dataStartsAtRow = 1 |
---|
73 | def numExampleRows = 5 |
---|
74 | |
---|
75 | // Create an excel workbook instance of the file |
---|
76 | def workbook = excelService.open( file ); |
---|
77 | |
---|
78 | // Read headers from the first row and 5 of the first lines as example data |
---|
79 | def headers = excelService.readRow( workbook, sheetIndex, headerRow ); |
---|
80 | def exampleData = excelService.readData( workbook, sheetIndex, dataStartsAtRow, -1, numExampleRows ); // -1 means: determine number of rows yourself |
---|
81 | |
---|
82 | // Try to guess best matches between the excel file and the column names |
---|
83 | def bestMatches = [:] |
---|
84 | def fields = possibleFields |
---|
85 | if( !includeRun ) |
---|
86 | fields = fields - runName |
---|
87 | |
---|
88 | headers.eachWithIndex { header, idx -> |
---|
89 | // Do matching using fuzzy search. The 0.8 treshold makes sure that no match if chosen if |
---|
90 | // there is actually no match at all. |
---|
91 | if( !header || header.toString().trim() == "" ) |
---|
92 | bestMatches[idx] = null |
---|
93 | else |
---|
94 | bestMatches[idx] = fuzzySearchService.mostSimilar( header, possibleFields, 0.8 ); |
---|
95 | } |
---|
96 | |
---|
97 | return [headers: headers, exampleData: exampleData, bestMatches: bestMatches, possibleFields: fields] |
---|
98 | } |
---|
99 | |
---|
100 | /** |
---|
101 | * Updates given assay samples with data from the excel file |
---|
102 | * @param matchColumns Indicated which columns from the excel file should go into which field of the assaySample |
---|
103 | * @param possibleFields List with possible fields to enter |
---|
104 | * @param file Excel file with the data |
---|
105 | * @param assaySamples Assay Samples to be updated |
---|
106 | * @return |
---|
107 | */ |
---|
108 | def updateTagsByExcel( def matchColumns, def possibleFields, File file, def assaySamples ) { |
---|
109 | def sheetIndex = 0 |
---|
110 | def headerRow = 0 |
---|
111 | def dataStartsAtRow = 1 |
---|
112 | |
---|
113 | if( !matchColumns ) { |
---|
114 | // Now delete the file, since we don't need it anymore |
---|
115 | file?.delete() |
---|
116 | |
---|
117 | return [ success: false, message: "No column matches found for excel file. Please try again." ] |
---|
118 | } |
---|
119 | |
---|
120 | // Determine column numbers |
---|
121 | def columns = [:] |
---|
122 | def dataMatches = false; |
---|
123 | possibleFields.each { columnName -> |
---|
124 | def foundColumn = matchColumns.find { it.value == columnName }; |
---|
125 | |
---|
126 | columns[ columnName ] = ( foundColumn && foundColumn.key.toString().isInteger() ) ? Integer.valueOf( foundColumn.key.toString() ) : -1; |
---|
127 | |
---|
128 | if( columnName != sampleNameName && columns[ columnName ] != -1 ) |
---|
129 | dataMatches = true |
---|
130 | } |
---|
131 | |
---|
132 | println columns |
---|
133 | |
---|
134 | // A column to match the sample name must be present |
---|
135 | if( columns[ sampleNameName ] == -1 ) { |
---|
136 | return [ success: false, message: "There must be a column present in the excel file that matches the sample name. Please try again." ] |
---|
137 | } |
---|
138 | |
---|
139 | // A column with data should also be present |
---|
140 | if( !dataMatches ) { |
---|
141 | return [ success: false, message: "There are no data columns present in the excel file. No samples are updated." ] |
---|
142 | } |
---|
143 | |
---|
144 | // Now loop through the excel sheet and update all samples with the specified data |
---|
145 | if( !file.exists() || !file.canRead() ) { |
---|
146 | return [ success: false, message: "Excel file has been removed since previous step. Please try again." ] |
---|
147 | } |
---|
148 | |
---|
149 | def workbook = excelService.open( file ) |
---|
150 | ArrayList data = excelService.readData( workbook, sheetIndex, dataStartsAtRow ) |
---|
151 | |
---|
152 | // Check whether the excel file contains any data |
---|
153 | if( data.size() == 0 ) { |
---|
154 | // Now delete the file, since we don't need it anymore |
---|
155 | file.delete() |
---|
156 | |
---|
157 | return [ success: false, message: "The excel sheet contains no data to import. Please upload another excel file." ] |
---|
158 | } |
---|
159 | |
---|
160 | def numSuccesful = 0 |
---|
161 | def failedRows = [] |
---|
162 | |
---|
163 | // walk through all rows and fill the table with records |
---|
164 | for( def i = 0; i < data.size(); i++ ) { |
---|
165 | def rowData = data[ i ]; |
---|
166 | |
---|
167 | String sampleName = rowData[ columns[ sampleNameName ] ] as String |
---|
168 | |
---|
169 | // If no sample name is found, the row is either empty or contains no sample name |
---|
170 | if( !sampleName ) { |
---|
171 | failedRows << [ row: rowData, sampleName: "" ]; |
---|
172 | continue; |
---|
173 | } |
---|
174 | |
---|
175 | // Find assay by sample name. Since sample names are unique within an assay (enforced by GSCF), |
---|
176 | // this will always work when only using one assay. When multiple assays are used, this might pose |
---|
177 | // a problem |
---|
178 | // TODO: Fix problem with multiple assays |
---|
179 | AssaySample assaySample = assaySamples.find { it.sample.id == Sample.findByName( sampleName )?.id }; |
---|
180 | println "Row: " + i + " - Sample name: " + sampleName + " - " + assaySample |
---|
181 | |
---|
182 | // If no assaysample is found, add this row to the failed-row list |
---|
183 | if( !assaySample ) { |
---|
184 | failedRows << [ row: rowData, sampleName: sampleName ]; |
---|
185 | continue; |
---|
186 | } |
---|
187 | |
---|
188 | columns.each { |
---|
189 | if( it.value > -1 ) { |
---|
190 | switch( it.key ) { |
---|
191 | case tagNameName: assaySample.tagName = rowData[ it.value ]; break |
---|
192 | case tagSequenceName: assaySample.tagSequence = rowData[ it.value ]; break |
---|
193 | case oligoNumberName: assaySample.oligoNumber = rowData[ it.value ]; break |
---|
194 | case runName: assaySample.run = Run.findByName( rowData[ it.value ] ); break |
---|
195 | } |
---|
196 | } |
---|
197 | } |
---|
198 | |
---|
199 | assaySample.save() |
---|
200 | |
---|
201 | numSuccesful++; |
---|
202 | } |
---|
203 | |
---|
204 | // Now delete the file, since we don't need it anymore |
---|
205 | file.delete() |
---|
206 | |
---|
207 | // Return a message to the user |
---|
208 | if( numSuccesful == 0 ) { |
---|
209 | return [success: false, message: "None of the " + failedRows.size() + " row(s) could be imported, because none of the sample names matched. Have you provided the right excel file?" ] |
---|
210 | } else { |
---|
211 | def message = numSuccesful + " samples have been updated. " |
---|
212 | |
---|
213 | if( failedRows.size() > 0 ) |
---|
214 | message += failedRows.size() + " row(s) could not be imported, because the sample names could not be found in the database." |
---|
215 | |
---|
216 | return [success: true, message: message, numSuccesful: numSuccesful, failedRows: failedRows ] |
---|
217 | |
---|
218 | } |
---|
219 | } |
---|
220 | |
---|
221 | /** |
---|
222 | * Exports all known data about the samples to an excel file |
---|
223 | * @param assaySamples Assaysamples to export information about |
---|
224 | * @param tags Tags associated with the assay samples |
---|
225 | * @param stream Outputstream to write the data to |
---|
226 | * @return |
---|
227 | */ |
---|
228 | def exportExcelSampleData( List<AssaySample> assaySamples, def tags, OutputStream stream ) { |
---|
229 | if( assaySamples == null ) |
---|
230 | assaySamples = [] |
---|
231 | |
---|
232 | // Gather data from GSCF. |
---|
233 | def sampleTokens = assaySamples*.sample.unique()*.sampleToken; |
---|
234 | def sessionToken = RequestContextHolder.currentRequestAttributes().getSession().sessionToken |
---|
235 | def gscfData |
---|
236 | try { |
---|
237 | gscfData = gscfService.getSamples( sessionToken, sampleTokens ); |
---|
238 | } catch( Exception e ) { |
---|
239 | log.error "Exception occurred while fetching sample data from gscf: " + e.getMessage(); |
---|
240 | return; |
---|
241 | } |
---|
242 | |
---|
243 | // Determine which fields to show from the GSCF data |
---|
244 | def gscfFields = [] |
---|
245 | def subjectFields = [] |
---|
246 | def eventFields = [] |
---|
247 | def moduleFields = [ "Sample name", "Assay name", "Study name", "Run name", "# sequences", "Artificial tag sequence", "Original tag sequence", "Tag name", "Oligo number" ] |
---|
248 | gscfData.each { sample -> |
---|
249 | sample.each { key, value -> |
---|
250 | if( key == "subjectObject" ) { |
---|
251 | value.each { subjectKey, subjectValue -> |
---|
252 | if( subjectValue && !value.isNull( subjectKey ) && !subjectFields.contains( subjectKey ) ) |
---|
253 | subjectFields << subjectKey |
---|
254 | } |
---|
255 | } else if( key == "eventObject" ) { |
---|
256 | value.each { eventKey, eventValue -> |
---|
257 | if( eventValue && !value.isNull( eventKey ) && !eventFields.contains( eventKey ) ) |
---|
258 | eventFields << eventKey |
---|
259 | } |
---|
260 | } else if( value && !sample.isNull( key ) && !gscfFields.contains( key ) ) { |
---|
261 | gscfFields << key |
---|
262 | } |
---|
263 | } |
---|
264 | } |
---|
265 | |
---|
266 | // Handle specific fields and names in GSCF |
---|
267 | def fields = handleSpecificFields( [ "module": moduleFields, "gscf": gscfFields, "subject": subjectFields, "event": eventFields ] ); |
---|
268 | |
---|
269 | // Put the module data in the right format (and sorting the samples by name) |
---|
270 | def data = [] |
---|
271 | assaySamples.toList().sort { it.sample.name }.each { assaySample -> |
---|
272 | // Lookup the tag for this assaySample |
---|
273 | def currentTag = tags.find { it.assaySampleId == assaySample.id }; |
---|
274 | |
---|
275 | // First add the module data |
---|
276 | def row = [ |
---|
277 | assaySample.sample.name, |
---|
278 | assaySample.assay.name, |
---|
279 | assaySample.assay.study.name, |
---|
280 | assaySample.run?.name, |
---|
281 | assaySample.numSequences(), |
---|
282 | currentTag?.tag, |
---|
283 | assaySample.tagName, |
---|
284 | assaySample.tagSequence, |
---|
285 | assaySample.oligoNumber |
---|
286 | ] |
---|
287 | |
---|
288 | // Afterwards add the gscfData including subject and event data |
---|
289 | def gscfRow = gscfData.find { it.sampleToken == assaySample.sample.sampleToken }; |
---|
290 | if( gscfRow ) { |
---|
291 | fields[ "names" ][ "gscf" ].each { field -> |
---|
292 | row << prepare( gscfRow, field ); |
---|
293 | } |
---|
294 | fields[ "names" ][ "subject" ].each { field -> |
---|
295 | row << prepare( gscfRow.optJSONObject( "subjectObject" ), field ); |
---|
296 | } |
---|
297 | fields[ "names" ][ "event" ].each { field -> |
---|
298 | row << prepare( gscfRow.optJSONObject( "eventObject" ), field ); |
---|
299 | } |
---|
300 | } |
---|
301 | |
---|
302 | data << row; |
---|
303 | |
---|
304 | } |
---|
305 | |
---|
306 | // Transpose data and create new headers |
---|
307 | data = data.transpose(); |
---|
308 | |
---|
309 | // Add field names in front of the data |
---|
310 | for( int i = 0; i < data.size(); i++ ) { |
---|
311 | data[ i ] = [] + fields[ "descriptions" ][ "all" ][ i ] + data[ i ] |
---|
312 | } |
---|
313 | |
---|
314 | // Create excel file |
---|
315 | def sheetIndex = 0; |
---|
316 | |
---|
317 | // Create an excel sheet |
---|
318 | def wb = excelService.create(); |
---|
319 | |
---|
320 | // Put the headers on the first row |
---|
321 | //excelService.writeHeader( wb, data[ 0 ], sheetIndex ); |
---|
322 | excelService.writeData( wb, data, sheetIndex, 0 ); |
---|
323 | |
---|
324 | // Auto resize columns |
---|
325 | excelService.autoSizeColumns( wb, sheetIndex, 0..fields[ "names" ][ "all" ].size()-1) |
---|
326 | |
---|
327 | // Write the data to the output stream |
---|
328 | wb.write( stream ); |
---|
329 | } |
---|
330 | |
---|
331 | protected String prepare( def object, def fieldName ) { |
---|
332 | if( object.isNull( fieldName ) ) |
---|
333 | return ""; |
---|
334 | |
---|
335 | // If the field is a object, return the 'name' property |
---|
336 | def obj = object.optJSONObject( fieldName ) |
---|
337 | if( obj ) |
---|
338 | return obj.optString( "name" ) |
---|
339 | else |
---|
340 | return object.optString( fieldName ); |
---|
341 | } |
---|
342 | |
---|
343 | protected handleSpecificFields( def inputFields ) { |
---|
344 | def fields = [ |
---|
345 | "names": [ |
---|
346 | "all": [] |
---|
347 | ], |
---|
348 | "descriptions": [ |
---|
349 | "all": [] |
---|
350 | ] |
---|
351 | ] |
---|
352 | |
---|
353 | inputFields.each { key, value -> |
---|
354 | def names = []; |
---|
355 | def descriptions = [] |
---|
356 | switch( key ) { |
---|
357 | case "gscf": |
---|
358 | value.each { |
---|
359 | if( it != "sampleToken" && it != "name" ) { |
---|
360 | names << it; |
---|
361 | if( it == "startTime" ) |
---|
362 | descriptions << "Event start time"; |
---|
363 | else |
---|
364 | descriptions << it |
---|
365 | } |
---|
366 | } |
---|
367 | break; |
---|
368 | case "subject": |
---|
369 | value.each { |
---|
370 | if( it != "name" ) { |
---|
371 | names << it; |
---|
372 | descriptions << it |
---|
373 | } |
---|
374 | } |
---|
375 | break; |
---|
376 | case "event": |
---|
377 | value.each { |
---|
378 | if( it != "startTime" ) { |
---|
379 | names << it; |
---|
380 | descriptions << it |
---|
381 | } |
---|
382 | } |
---|
383 | break; |
---|
384 | default: |
---|
385 | names = value; descriptions = value; |
---|
386 | break; |
---|
387 | } |
---|
388 | |
---|
389 | fields[ "names" ][ key ] = names; |
---|
390 | fields[ "names" ][ "all" ] += names; |
---|
391 | fields[ "descriptions" ][ key ] = descriptions; |
---|
392 | fields[ "descriptions" ][ "all" ] += descriptions; |
---|
393 | } |
---|
394 | |
---|
395 | return fields; |
---|
396 | |
---|
397 | } |
---|
398 | |
---|
399 | } |
---|