(self, infile, outfile)
| 171 | return os.popen(cmd, 'w') |
| 172 | |
| 173 | def copy(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) |
nothing calls this directly
no test coverage detected