예제 #1
0
    def _teardown(self, config, temp):
        temp_filename = reroot_path(temp, self._input_file)
        os.remove(temp_filename)
        os.remove(temp_filename + ".bai")

        move_file(reroot_path(temp, self._output_file), self._output_file)
        Node._teardown(self, config, temp)
예제 #2
0
 def _teardown(self, _config, temp):
     move_file(reroot_path(temp, self.dest), self.dest)
     Node._teardown(self, _config, temp)
예제 #3
0
    def _teardown(self, _config, temp):
        for dest in self.outputnames:
            move_file(reroot_path(temp, dest), dest)

        Node._teardown(self, _config, temp)