From 91ed9428d19d18bb79dbada2cce9a1c95bb691fe Mon Sep 17 00:00:00 2001
From: kohleman <kohleman>
Date: Thu, 26 Feb 2015 12:42:38 +0000
Subject: [PATCH] fixed bug, column "flowCell:Lane" shows correct naming

SVN: 33532
---
 .../source/Jython/create_QGF_Invoices_simplified.py             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deep_sequencing_unit/source/Jython/create_QGF_Invoices_simplified.py b/deep_sequencing_unit/source/Jython/create_QGF_Invoices_simplified.py
index 11f65e6712d..42b52d673ab 100644
--- a/deep_sequencing_unit/source/Jython/create_QGF_Invoices_simplified.py
+++ b/deep_sequencing_unit/source/Jython/create_QGF_Invoices_simplified.py
@@ -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))
-- 
GitLab