Skip to content
Snippets Groups Projects
Commit ebdb80b5 authored by juanf's avatar juanf
Browse files

SSDM-1564: PAPER - OPENBIS - Migration Support

SVN: 33534
parent 44f9ca3c
No related branches found
No related tags found
No related merge requests found
...@@ -196,7 +196,7 @@ def batchColumnNames(): ...@@ -196,7 +196,7 @@ def batchColumnNames():
return allTypes return allTypes
def updateFromBatchInput(bindings): def updateFromBatchInput(bindings):
#print "--------> UPDATE FROM BATCH INPUT: " print "--------> UPDATE FROM BATCH INPUT: "
elements = [] elements = []
#Links Configuration #Links Configuration
...@@ -206,10 +206,10 @@ def updateFromBatchInput(bindings): ...@@ -206,10 +206,10 @@ def updateFromBatchInput(bindings):
for annotableSampleType in getAllAnnotableSampleTypesForType(annotableType): for annotableSampleType in getAllAnnotableSampleTypesForType(annotableType):
annotatedSamples = bindings.get(annotableSampleType) annotatedSamples = bindings.get(annotableSampleType)
#print "-----> TYPE: " + str(annotableSampleType) + " BINDINGS: " + str(annotatedSamples) print "-----> TYPE: " + str(annotableSampleType) + " BINDINGS: " + str(annotatedSamples)
if (annotatedSamples != None and annotatedSamples != ""): if (annotatedSamples != None and annotatedSamples != ""):
#Annotations #Annotations
#print "-----> Annotations" print "-----> Annotations"
if annotableSampleType not in typesToCopyFrom: if annotableSampleType not in typesToCopyFrom:
for sampleLine in annotatedSamples.split("\\"): for sampleLine in annotatedSamples.split("\\"):
propertyTypes = getPropertyTypesForSampleTypeFromAnnotableType(annotableSampleType, annotableType) propertyTypes = getPropertyTypesForSampleTypeFromAnnotableType(annotableSampleType, annotableType)
...@@ -218,37 +218,39 @@ def updateFromBatchInput(bindings): ...@@ -218,37 +218,39 @@ def updateFromBatchInput(bindings):
sampleLink = None sampleLink = None
for sampleProperty in sampleLine.split(";"): for sampleProperty in sampleLine.split(";"):
propertyName = sampleProperty.split(":")[0] propertyName = sampleProperty.split(":")[0]
propertyValue = sampleProperty.split(":")[1]
if propertyName == "identifier": if propertyName == "identifier":
propertyValue = sampleProperty.split(":")[1]
identifier = propertyValue identifier = propertyValue
permId = entityInformationProvider().getSamplePermId(propertyValue) permId = entityInformationProvider().getSamplePermId(propertyValue)
sampleLink = elementFactory().createSampleLink(permId) sampleLink = elementFactory().createSampleLink(permId)
sampleLink.addAttribute(propertyName, propertyValue) sampleLink.addAttribute(propertyName, propertyValue)
sampleLink.addAttribute('sampleType', annotableSampleType)
elif propertyName in propertyTypes: elif propertyName in propertyTypes:
sampleLink.addAttribute(propertyName, propertyValue) sampleLink.addAttribute(propertyName, propertyValue)
else: else:
raise NameError('Found invalid property: ' + propertyName + " on type " + annotableSampleType) raise NameError('Found invalid property: ' + propertyName + " on type " + annotableSampleType)
if identifier is not None: if identifier is not None:
elements.append(sampleLink) elements.append(sampleLink)
#Links #Links
#print "-----> links" print "-----> links"
for typeToCopyFrom in typesToCopyFrom: for typeToCopyFrom in typesToCopyFrom:
typeToCopy = typesToCopyFrom[typeToCopyFrom] typeToCopy = typesToCopyFrom[typeToCopyFrom]
#print "-----> TYPE TO COPY FROM: " + str(typeToCopyFrom) print "-----> TYPE TO COPY FROM: " + str(typeToCopyFrom)
#print "-----> TYPE TO COPY: " + str(typeToCopy) print "-----> TYPE TO COPY: " + str(typeToCopy)
identifiersToCopyFrom = bindings.get(typeToCopyFrom) identifiersToCopyFrom = bindings.get(typeToCopyFrom)
if identifiersToCopyFrom is not None: if identifiersToCopyFrom is not None:
#print "-----> IDENTIFIERS TO COPY FROM: " + str(identifiersToCopyFrom) print "-----> IDENTIFIERS TO COPY FROM: " + str(identifiersToCopyFrom)
identifiersForCopy = identifiersToCopyFrom.split(',') identifiersForCopy = identifiersToCopyFrom.split(',')
for identifierToCopyFrom in identifiersForCopy: for identifierToCopyFrom in identifiersForCopy:
#print "-----> IDENTIFIER TO COPY FROM: " + str(identifierToCopyFrom) print "-----> IDENTIFIER TO COPY FROM: " + str(identifierToCopyFrom)
permIdFromIdentifier = entityInformationProvider().getSamplePermId(identifierToCopyFrom) permIdFromIdentifier = entityInformationProvider().getSamplePermId(identifierToCopyFrom)
#print "-----> PERMID TO COPY FROM: " + str(permIdFromIdentifier) #print "-----> PERMID TO COPY FROM: " + str(permIdFromIdentifier)
parentsToCopyFromPermId = entityInformationProvider().getSamplePropertyValue(permIdFromIdentifier, "ANNOTATIONS_STATE") parentsToCopyFromPermId = entityInformationProvider().getSamplePropertyValue(permIdFromIdentifier, "ANNOTATIONS_STATE")
#print "-----> ELEMENTS TO COPY: " + str(parentsToCopyFromPermId) print "-----> ELEMENTS TO COPY: " + str(parentsToCopyFromPermId)
parentElements = list(propertyConverter().convertStringToElements(parentsToCopyFromPermId)) parentElements = list(propertyConverter().convertStringToElements(parentsToCopyFromPermId))
for parentAnnotation in parentElements: for parentAnnotation in parentElements:
if parentAnnotation.getAttribute("sampleType") == typeToCopy: if parentAnnotation.getAttribute("sampleType") == typeToCopy:
parentAnnotation.addAttribute("CONTAINED", identifierToCopyFrom) parentAnnotation.addAttribute("CONTAINED", identifierToCopyFrom)
elements.append(parentAnnotation) print "-----> COPYING: " + str(parentAnnotation.getAttribute('identifier'))
elements.append(parentAnnotation)
property.value = propertyConverter().convertToString(elements) property.value = propertyConverter().convertToString(elements)
\ No newline at end of file
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