Skip to content
Snippets Groups Projects
Commit 6e98b0c9 authored by kohleman's avatar kohleman
Browse files

use label of Flow cell property 'Run_mode' instead of CODE

SVN: 34344
parent 084633be
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,7 @@ def writeExcel(myoptions, configMap, service, piName, laneDict, sampleDict, piDi
'''
myRows = uniqueRow()
sequencerVocabulary = getVocabulary(service, "SEQUENCER")
runModeVocabulary = getVocabulary(service, "RUN_MODE_VOCABULARY")
setOfFlowcells = set ()
try:
# expecting the old running folder name
......@@ -234,6 +235,11 @@ def writeExcel(myoptions, configMap, service, piName, laneDict, sampleDict, piDi
val = sequencerVocabulary[flowCellProperties[property]]
else:
val = flowCellProperties[property]
if (property == "RUN_MODE"):
val = runModeVocabulary[flowCellProperties[property]]
else:
val = flowCellProperties[property]
createRow(property, val)
createRow()
......
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