Exemple #1
0
    def _run(self, _config, temp):
        table = {}
        for filename in self.input_files:
            coverage.read_table(table, filename)

        coverage.write_table(table, reroot_path(temp, self._output_file))
        move_file(reroot_path(temp, self._output_file), self._output_file)
Exemple #2
0
    def _run(self, _config, temp):
        table = {}
        for filename in self.input_files:
            coverage.read_table(table, filename)

        coverage.write_table(table, reroot_path(temp, self._output_file))
        move_file(reroot_path(temp, self._output_file), self._output_file)
Exemple #3
0
def print_table(args, handle, counts):
    table = build_table(args, handle, counts)
    write_table(table, args.outfile)
Exemple #4
0
def print_table(args, handle, counts):
    table = build_table(args, handle, counts)
    write_table(table, args.outfile)