Skip to content
Snippets Groups Projects
Commit 91ed9428 authored by kohleman's avatar kohleman
Browse files

fixed bug, column "flowCell:Lane" shows correct naming

SVN: 33532
parent ed6838bf
No related branches found
No related tags found
No related merge requests found
......@@ -206,7 +206,7 @@ def writeExcel(myoptions, configMap, service, piName, laneDict, sampleDict, piDi
continue
rowN = sheet.createRow(myRows.getNextRow())
rowN.createCell(singleSampleColumns.getNextColumn()).setCellValue(flowcellName + ":" + str(lane))
rowN.createCell(singleSampleColumns.getNextColumn()).setCellValue(str(lane))
rowN.getCell(singleSampleColumns.getCurrentColumn()).setCellStyle(setFont(wb, configMap, 10))
rowN.createCell(singleSampleColumns.getNextColumn()).setCellValue(configMap['sampleCodePrefix'] + sample)
rowN.getCell(singleSampleColumns.getCurrentColumn()).setCellStyle(setFont(wb, configMap, 10))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment