def createOutputStep(self):
     inputMovies = self.inputMovies.get()
     micSet = self._createSetOfMicrographs()
     micSet.copyInfo(inputMovies)
     for movie in self.inputMovies.get():
         mic = Micrograph()
         # All micrograph are copied to the 'extra' folder after each step
         mic.setFileName(self._getMicName(movie.getFileName()))
         micSet.append(mic)
     self._defineOutputs(outputMicrographs=micSet)
示例#2
0
 def createOutputStep(self):
     inputMovies = self.inputMovies.get()
     micSet = self._createSetOfMicrographs()
     micSet.copyInfo(inputMovies)
     for movie in self.inputMovies.get():
         mic = Micrograph()
         # All micrograph are copied to the 'extra' folder after each step
         mic.setFileName(self._getExtraPath(self._getNameExt(movie.getFileName(), "", "mrc")))
         micSet.append(mic)
     self._defineOutputs(outputMicrographs=micSet)
示例#3
0
    def createOutputStep(self):
        inputMovies = self.inputMovies.get()
        micSet = self._createSetOfMicrographs()
        micSet.copyInfo(inputMovies)

        for movie in inputMovies:
            mic = Micrograph()
            # All micrograph are copied to the 'extra' folder after each step
            mic.setFileName(self._getMicName(movie.getFileName()))
            micSet.append(mic)

        self._defineOutputs(outputMicrographs=micSet)
        self._defineSourceRelation(self.inputMovies, micSet)