(self, infile, outfile)
| 174 | return os.system(self.makepipeline(infile, outfile)) |
| 175 | |
| 176 | def makepipeline(self, infile, outfile): |
| 177 | cmd = makepipeline(infile, self.steps, outfile) |
| 178 | if self.debugging: |
| 179 | print(cmd) |
| 180 | cmd = 'set -x; ' + cmd |
| 181 | return cmd |
| 182 | |
| 183 | |
| 184 | def makepipeline(infile, steps, outfile): |
no test coverage detected