Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
'''
Copyright 2012 ETH Zuerich, CISD
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@author Manuel Kohler
@description:
Creates Excel-based invoices for the Quantitative Genomics Facility, D-BSSE, ETH Zurich
@attention:
Runs under Jython
@note:
'''
import os
import re
import sys
import logging
from datetime import *
from ConfigParser import SafeConfigParser
from optparse import OptionParser
from java.io import FileOutputStream
from org.apache.poi.hssf.usermodel import HSSFWorkbook
from org.apache.poi.poifs.filesystem import POIFSFileSystem
from org.apache.poi.xssf.usermodel import XSSFWorkbook
from ch.systemsx.cisd.openbis.dss.client.api.v1 import OpenbisServiceFacadeFactory
from ch.systemsx.cisd.openbis.generic.shared.api.v1.dto import SearchCriteria
from ch.systemsx.cisd.openbis.generic.shared.api.v1.dto import SearchSubCriteria
from java.util import EnumSet
from java.util import TreeMap
from ch.systemsx.cisd.openbis.generic.shared.api.v1.dto import SampleFetchOption
excelFormats = {"xls": "HSSFWorkbook()" , "xlsx": "XSSFWorkbook()"}
columnHeadersMap = {"EXTERNAL_SAMPLE_NAME": "Sample Name",
"BARCODE": "Index",
"INDEX2": "Index2",
"PREPARED_BY" : "Prepared by",
"KIT" : "Kit",
"CONTACT_PERSON_NAME" : "Contact Person",
"NOTES" : "Notes",
"PRICE" : "Price"}
class uniqueRow():
'''
Little helper class which ensures the unique use of a row
'''
def __init__(self):
self.row = -1
def getNextRow (self):
self.row += 1
return self.row
def setRow(self, rowNumber):
self.row = rowNumber
return self.row
class uniqueColumn():
'''
Little helper class which ensures the unique use of a column
'''
def __init__(self):
self.column = -1
def getCurrentColumn(self):
return self.column
def getNextColumn (self):
self.column += 1
return self.column
def setColumn(self, columnNumber):
self.column = columnNumber
return self.column
def getDate():
d = datetime.now()
return d.strftime("%A, %d-%B-%Y")
def setFont(wb, configMap, fontSize=10):
font = wb.createFont()
font.setFontHeightInPoints(fontSize)
font.setFontName(configMap["defaultFonts"])
font.setItalic(False)
font.setStrikeout(False)
# Fonts are set into a style so create a new one to use.
style = wb.createCellStyle()
style.setFont(font)
return style
def getVocabulary(service, vocabularyCode):
''' Returns the vocabulary term and vocabulary label of a vocabulary specified by the parameter
vocabularyCode in a map'''
vocabularies = service.listVocabularies()
vocabularyMap = {}
for vocabulary in vocabularies:
if (vocabulary.getCode() == vocabularyCode):
terms = vocabulary.getTerms()
for term in terms:
vocabularyMap[term.getCode()] = term.getLabel()
return vocabularyMap
def writeExcel(myoptions, configMap, service, piName, laneDict, sampleDict, piDict,
flowCellProperties, flowcellName, format="xls"):
'''
Writes out all data to an Excel file
'''
myRows = uniqueRow()
sequencerVocabulary = getVocabulary(service, "SEQUENCER")
setOfFlowcells = set ()
runDate, seqId, runningNumber, flowcell = flowcellName.split("_")
flowcell = flowcell[1:]
def writeHeader():
# Write header
row = sheet.createRow(myRows.getNextRow())
row.createCell(0).setCellValue(configMap["facilityName"] + ", " + configMap["facilityInstitution"])
row.getCell(0).setCellStyle(setFont(wb, configMap, 14))
row1 = sheet.createRow(myRows.getNextRow())
row1.createCell(0).setCellValue(getDate())
row1.getCell(0).setCellStyle(setFont(wb, configMap, 10))
def createRow(key="", value="", rowNumber=0, fontSize=10):
'''
'''
if rowNumber == 0:
row = sheet.createRow(myRows.getNextRow())
else:
row = rowNumber
row.createCell(0).setCellValue(key)
row.createCell(1).setCellValue(value)
row.getCell(0).setCellStyle(setFont(wb, configMap, fontSize))
row.getCell(1).setCellStyle(setFont(wb, configMap, fontSize))
return row
def writeFooter(service, sheet):
footer = sheet.getFooter()
footer.setRight("generated on " + datetime.now().strftime("%H:%M - %d.%m.%Y"))
wb = (eval(excelFormats[format]))
createHelper = wb.getCreationHelper()
sheet = wb.createSheet(configMap["facilityNameShort"])
# 3/2 = 150 percent magnification when opening the workbook
sheet.setZoom(3, 2)
writeHeader()
createRow("Principal Investigator", piName)
createRow("Run Folder Name", flowcellName)
createRow()
myColumns = uniqueColumn()
sampleHeader = sheet.createRow(myRows.getNextRow())
sampleHeader.createCell(myColumns.getNextColumn()).setCellValue("Flow Cell:Lane")
sampleHeader.getCell(myColumns.getCurrentColumn()).setCellStyle(setFont(wb, configMap, 10))
sampleHeader.createCell(myColumns.getNextColumn()).setCellValue("Sample Code")
sampleHeader.getCell(myColumns.getCurrentColumn()).setCellStyle(setFont(wb, configMap, 10))
for c in columnHeadersMap:
sampleHeader.createCell(myColumns.getNextColumn()).setCellValue(columnHeadersMap[c])
sampleHeader.getCell(myColumns.getCurrentColumn()).setCellStyle(setFont(wb, configMap, 10))
listofLanes = piDict[piName]
for lane in listofLanes:
singleSampleColumns = uniqueColumn()
for sample in sampleDict[lane].keys():
rowN = sheet.createRow(myRows.getNextRow())
rowN.createCell(singleSampleColumns.getNextColumn()).setCellValue(flowcellName + ":" + str(lane))
rowN.getCell(singleSampleColumns.getCurrentColumn()).setCellStyle(setFont(wb, configMap, 10))
rowN.createCell(singleSampleColumns.getNextColumn()).setCellValue(sample)
rowN.getCell(singleSampleColumns.getCurrentColumn()).setCellStyle(setFont(wb, configMap, 10))
sampleValues = sampleDict[lane][sample]
for column in columnHeadersMap.keys():
rowN.createCell(singleSampleColumns.getNextColumn()).setCellValue(sampleValues[column])
rowN.getCell(singleSampleColumns.getCurrentColumn()).setCellStyle(setFont(wb, configMap, 10))
singleSampleColumns = uniqueColumn()
createRow()
createRow("Flow Cell Details", "", 0, 14)
createRow("Flow Cell", flowcell)
for property in flowCellProperties:
if (property == "SEQUENCER"):
val = sequencerVocabulary[flowCellProperties[property]]
else:
val = flowCellProperties[property]
createRow(property, val)
createRow()
# adjust width
for i in range(0, 20):
sheet.autoSizeColumn(i)
# set layout to landscape
sheet.getPrintSetup().setLandscape(True)
writeFooter(service, sheet)
# Write the output to a file
fileName = myoptions.outdir + configMap["facilityNameShort"] + "_" + flowcell + "_" + \
sanitizeString(piName) + datetime.now().strftime("_%d_%m_%Y.") + format
fileOut = FileOutputStream(fileName)
print fileName
wb.write(fileOut);
fileOut.close();
def sanitizeString(myString):
return re.sub('[^A-Za-z0-9]+', '_', myString)
def setUpLogger(logPath, logLevel=logging.INFO):
logFileName = 'createInvoices'
d = datetime.now()
logFileName = logFileName + '_' + d.strftime('%Y-%m-%d_%H_%M_%S') + '.log'
logging.basicConfig(filename=logPath + logFileName,
format='%(asctime)s [%(levelname)s] %(message)s', level=logLevel)
logger = logging.getLogger(logFileName)
return logger
def parseConfigurationFile(propertyFile='etc/service.properties'):
'''
Parses the given config files and returns the values
'''
config = SafeConfigParser()
config.read(propertyFile)
config.sections()
return config
def readConfig(logger):
GENERAL = 'GENERAL'
OPENBIS = 'OPENBIS'
EXCEL = 'EXCEL'
logger.info('Reading config file')
configMap = {}
configParameters = parseConfigurationFile()
configMap['facilityName'] = configParameters.get(GENERAL, 'facilityName')
configMap['facilityNameShort'] = configParameters.get(GENERAL, 'facilityNameShort')
configMap['facilityInstitution'] = configParameters.get(GENERAL, 'facilityInstitution')
configMap['mailList'] = configParameters.get(GENERAL, 'mailList')
configMap['mailFrom'] = configParameters.get(GENERAL, 'mailFrom')
configMap['smptHost'] = configParameters.get(GENERAL, 'smptHost')
configMap['separator'] = configParameters.get(GENERAL, 'separator')
configMap['indexSeparator'] = configParameters.get(GENERAL, 'indexSeparator')
configMap['openbisUserName'] = configParameters.get(OPENBIS, 'openbisUserName')
configMap['openbisPassword'] = configParameters.get(OPENBIS, 'openbisPassword', raw=True)
configMap['openbisServer'] = configParameters.get(OPENBIS, 'openbisServer')
configMap['connectionTimeout'] = configParameters.getint(OPENBIS, 'connectionTimeout')
configMap['pIPropertyName'] = configParameters.get(OPENBIS, 'pIPropertyName')
configMap['defaultFonts'] = configParameters.get(EXCEL, 'defaultFonts')
return configMap
def login(logger, configMap):
logger.info('Logging into ' + configMap['openbisServer'])
service = OpenbisServiceFacadeFactory.tryCreate(configMap['openbisUserName'],
configMap['openbisPassword'],
configMap['openbisServer'],
configMap['connectionTimeout'])
return service
def parseOptions(logger):
logger.info('Parsing command line parameters')
parser = OptionParser(version='%prog 1.0')
parser.add_option('-f', '--flowcell',
dest='flowcell',
help='The flowcell which is used to create the SampleSheet.csv',
metavar='<flowcell>')
parser.add_option('-o', '--outdir',
dest='outdir',
default='./',
help='Specify the ouput directory. Default: ./' ,
metavar='<outdir>')
parser.add_option('-d', '--debug',
dest='debug',
default=False,
action='store_true',
help='Verbose debug logging. Default: False')
(options, args) = parser.parse_args()
if options.outdir[-1] <> '/':
options.outdir = options.outdir + '/'
if options.flowcell is None:
parser.print_help()
exit(-1)
return options
def getFLowcellData(service, configMap, flowcell, logger):
fetchOptions = EnumSet.of(SampleFetchOption.ANCESTORS, SampleFetchOption.PROPERTIES)
laneFetchOptions = EnumSet.of(SampleFetchOption.ANCESTORS, SampleFetchOption.PROPERTIES)
sc = SearchCriteria();
sc.addMatchClause(SearchCriteria.MatchClause.createAttributeMatch(SearchCriteria.MatchClauseAttribute.CODE, flowcell));
fcList = service.searchForSamples(sc, fetchOptions)
for p in fcList:
flowCellProperties = p.getProperties()
numberOfLanes = int(flowCellProperties['LANECOUNT'])
laneDict = {}
sampleDict = {}
piDict = {}
for lane in range(1, numberOfLanes + 1):
myLane = flowcell + ":" + str(lane)
laneSc = SearchCriteria();
laneSc.addMatchClause(SearchCriteria.MatchClause.createAttributeMatch(SearchCriteria.MatchClauseAttribute.CODE, myLane));
laneList = service.searchForSamples(laneSc, fetchOptions)
for l in laneList:
laneProperties = l.getProperties()
laneDict[lane] = laneProperties
laneParents = l.getParents()
s = {}
for samples in laneParents:
sampleCode = samples.getCode()
sampleProperties = samples.getProperties()
s[sampleCode] = sampleProperties
sampleDict[lane] = s
pi = sampleProperties[configMap["pIPropertyName"]]
if piDict.has_key(pi):
piDict[pi].append(lane)
else:
piDict[pi] = [lane]
logger.info("Found the following PIs on the lanes: ")
logger.info(piDict)
# simply sort the hashmap
treeMap = TreeMap (flowCellProperties)
return laneDict, sampleDict, piDict, treeMap
'''
Main script
'''
def main():
# for now setting the format by hand
format = "xlsx"
logger = setUpLogger('log/')
logger.info('Started Creation Invoices...')
myoptions = parseOptions(logger)
configMap = readConfig(logger)
service = login(logger, configMap)
flowcellName = myoptions.flowcell
laneDict, sampleDict, piDict, flowCellProperties = getFLowcellData(service, configMap, flowcellName, logger)
for piName in piDict:
# create an Excel file for each PI
writeExcel(myoptions, configMap, service, piName, laneDict, sampleDict, piDict,
flowCellProperties, flowcellName, format)
service.logout()
if __name__ == "__main__":
main()