Skip to content
Snippets Groups Projects
Commit a8b337d1 authored by buczekp's avatar buczekp
Browse files

[LMS-1979] fixed bugs in yeast_parents script and further cleanup in plasmid_parents

SVN: 20271
parent 28486e02
No related branches found
No related tags found
No related merge requests found
......@@ -104,8 +104,8 @@ def updateFromBatchInput(bindings):
def configureUI():
"""create table builder and add columns"""
tableBuilder = createTableBuilder()
tableBuilder.addHeader(CONNECTION_LABEL)
tableBuilder.addHeader(LINK_LABEL)
tableBuilder.addHeader(CONNECTION_LABEL)
tableBuilder.addHeader(CODE_LABEL)
tableBuilder.addHeader(RELATIONSHIP_LABEL)
tableBuilder.addHeader(ANNOTATION_LABEL)
......
......@@ -19,7 +19,6 @@ def _createSampleLink(code):
sampleLink.addAttribute(ATR_CODE, code)
return sampleLink
"""
Example input:
......@@ -29,8 +28,8 @@ def updateFromBatchInput(bindings):
input = bindings.get('')
samples = input.split(',')
elements = []
for p in samples:
sampleLink = createSampleLink(code)
for code in samples:
sampleLink = _createSampleLink(code.strip())
elements.append(sampleLink)
property.value = propertyConverter().convertToString(elements)
......
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