Esempio n. 1
0
    def __init__(self, **kwargs):
        ProtCTFMicrographs.__init__(self, **kwargs)

        # We need to trace the changes of 'inputType' to
        # dynamically modify the property of pointerClass
        # of the 'inputSets' parameter

        def onChangeInputType():
            pointerClass = 'SetOf' + self.getEnumText('inputType')
            self.inputSetsParam.setPointerClass(pointerClass)

        # Initial update
        onChangeInputType()
        # Now keep track of changes and update
        self.inputType.trace(onChangeInputType)
 def __init__(self, **args):
     ProtCTFMicrographs.__init__(self, **args)
     self._freqResol = {}
     self.stepsExecutionMode = params.STEPS_PARALLEL
Esempio n. 3
0
 def __init__(self, **args):
     ProtCTFMicrographs.__init__(self, **args)