Example #1
0
 def __init__(self, **kwargs):
     EMProtocol.__init__(self, **kwargs)
     # We need to trace the changes of 'inputType' to 
     # dynamically modify the property of pointerClass
     # of the 'inputSets' parameter
     def onChangeInputType():
         inputText = self.getEnumText('inputType')
         pointerClass = 'SetOf' + inputText
         self.getParam('inputSet').setPointerClass(pointerClass)
     
     self.inputType.trace(onChangeInputType)    
Example #2
0
 def __init__(self, **kwargs):
     EMProtocol.__init__(self, **kwargs)
     # We need to trace the changes of 'inputType' to 
     # dynamically modify the property of pointerClass
     # of the 'inputSets' parameter
     def onChangeInputType():
         inputText = self.getEnumText('inputType')
         pointerClass = 'SetOf' + inputText
         self.getParam('inputSet').setPointerClass(pointerClass)
     
     self.inputType.trace(onChangeInputType)    
Example #3
0
 def __init__(self, **args):
     EMProtocol.__init__(self, **args)
 def __init__(self, **kwargs):
     EMProtocol.__init__(self, **kwargs)
     self.workflowDicts = []
     self.entryAuthorStr = ""
     self.workflowPath = String()
     self.depositionJsonPath = String()
Example #5
0
 def __init__(self, **kwargs):
     EMProtocol.__init__(self, **kwargs)
     self.stepsExecutionMode = STEPS_PARALLEL
     self.isFirstTime = Boolean(False)
Example #6
0
 def __init__(self, **args):
     EMProtocol.__init__(self, **args)
     self.stepsExecutionMode = em.STEPS_PARALLEL
 def __init__(self, **args):        
     EMProtocol.__init__(self, **args)
Example #8
0
 def __init__(self, **kwargs):
     EMProtocol.__init__(self, **kwargs)
     self.allowMpi = False
     self.allowThreads = False
     self._params = {}
     self.stepsExecutionMode = STEPS_PARALLEL
 def __init__(self, **args):
     EMProtocol.__init__(self, **args)
     self.stepsExecutionMode = STEPS_PARALLEL
     self.isFirstTime = Boolean(False)
Example #10
0
 def __init__(self, **kwargs):
     EMProtocol.__init__(self, **kwargs)
     self.allowMpi = False
     self.allowThreads = False
     self._params = {}
     self.stepsExecutionMode = STEPS_PARALLEL